~noskcaj/ubuntu/saucy/libav/merge0.8.7-1

« back to all changes in this revision

Viewing changes to libavcodec/intelh263dec.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:30:00 UTC
  • mfrom: (1.2.8) (1.1.13 experimental)
  • Revision ID: package-import@ubuntu.com-20120112223000-cmfo7w78q13i2fd9
Tags: 4:0.8~beta2-1ubuntu1
* Merge from debian, remaining changes:
  - don't build against libdirac, lame, libopenjpeg, librtmp, 
    x264, and xvid  (all in universe)

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
}
126
126
 
127
127
AVCodec ff_h263i_decoder = {
128
 
    "h263i",
129
 
    AVMEDIA_TYPE_VIDEO,
130
 
    CODEC_ID_H263I,
131
 
    sizeof(MpegEncContext),
132
 
    ff_h263_decode_init,
133
 
    NULL,
134
 
    ff_h263_decode_end,
135
 
    ff_h263_decode_frame,
136
 
    CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
 
128
    .name           = "h263i",
 
129
    .type           = AVMEDIA_TYPE_VIDEO,
 
130
    .id             = CODEC_ID_H263I,
 
131
    .priv_data_size = sizeof(MpegEncContext),
 
132
    .init           = ff_h263_decode_init,
 
133
    .close          = ff_h263_decode_end,
 
134
    .decode         = ff_h263_decode_frame,
 
135
    .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1,
137
136
    .long_name = NULL_IF_CONFIG_SMALL("Intel H.263"),
138
137
    .pix_fmts= ff_pixfmt_list_420,
139
138
};