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

« back to all changes in this revision

Viewing changes to libavcodec/libxavs.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:
138
138
    switch (pic_out.i_type) {
139
139
    case XAVS_TYPE_IDR:
140
140
    case XAVS_TYPE_I:
141
 
        x4->out_pic.pict_type = FF_I_TYPE;
 
141
        x4->out_pic.pict_type = AV_PICTURE_TYPE_I;
142
142
        break;
143
143
    case XAVS_TYPE_P:
144
 
        x4->out_pic.pict_type = FF_P_TYPE;
 
144
        x4->out_pic.pict_type = AV_PICTURE_TYPE_P;
145
145
        break;
146
146
    case XAVS_TYPE_B:
147
147
    case XAVS_TYPE_BREF:
148
 
        x4->out_pic.pict_type = FF_B_TYPE;
 
148
        x4->out_pic.pict_type = AV_PICTURE_TYPE_B;
149
149
        break;
150
150
    }
151
151