~ubuntu-branches/ubuntu/raring/libav/raring-security

« back to all changes in this revision

Viewing changes to libavcodec/cljr.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2011-09-28 09:18:34 UTC
  • mfrom: (1.3.7 sid)
  • Revision ID: package-import@ubuntu.com-20110928091834-w415mnuh06h4zpvc
Tags: 4:0.7.1-7ubuntu2
Revert "Convert package to include multiarch support."

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
    p->pict_type= AV_PICTURE_TYPE_I;
68
68
    p->key_frame= 1;
69
69
 
70
 
    init_get_bits(&a->gb, buf, buf_size);
 
70
    init_get_bits(&a->gb, buf, buf_size * 8);
71
71
 
72
72
    for(y=0; y<avctx->height; y++){
73
73
        uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];