~ubuntu-branches/ubuntu/trusty/libav/trusty

« back to all changes in this revision

Viewing changes to libavcodec/v210x.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler, Jonathan Nieder, Reinhard Tartler
  • Date: 2011-05-13 12:31:33 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (1.3.4 sid)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20110513123133-zqcsj91sf5489y4s
Tags: 4:0.7~beta2-1
[ Jonathan Nieder ]
* only install doc/APIChanges in *-dev and libav-doc packages
* move note on source package lineage to README.Debian
* install NEWS.Debian in libavcodec-dev
* use dpkg source format 3.0 (quilt)
* allow "debian/rules clean" as unprivileged user

[ Reinhard Tartler ]
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
    }
53
53
 
54
54
    if(avpkt->size > avctx->width * avctx->height * 8 / 3){
55
 
        av_log(avctx, AV_LOG_ERROR, "Probably padded data, need sample!\n");
 
55
        av_log_ask_for_sample(avctx, "Probably padded data\n");
56
56
    }
57
57
 
58
58
    pic->reference= 0;
63
63
    udst= (uint16_t *)pic->data[1];
64
64
    vdst= (uint16_t *)pic->data[2];
65
65
    yend= ydst + width;
66
 
    pic->pict_type= FF_I_TYPE;
 
66
    pic->pict_type= AV_PICTURE_TYPE_I;
67
67
    pic->key_frame= 1;
68
68
 
69
69
    for(;;){