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

« back to all changes in this revision

Viewing changes to libavcodec/cljr.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:
64
64
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
65
65
        return -1;
66
66
    }
67
 
    p->pict_type= FF_I_TYPE;
 
67
    p->pict_type= AV_PICTURE_TYPE_I;
68
68
    p->key_frame= 1;
69
69
 
70
70
    init_get_bits(&a->gb, buf, buf_size);
100
100
    int size;
101
101
 
102
102
    *p = *pict;
103
 
    p->pict_type= FF_I_TYPE;
 
103
    p->pict_type= AV_PICTURE_TYPE_I;
104
104
    p->key_frame= 1;
105
105
 
106
106
    emms_c();