~ubuntu-branches/ubuntu/precise/libav/precise-updates

« back to all changes in this revision

Viewing changes to libavcodec/rl2.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:
20
20
 */
21
21
 
22
22
/**
23
 
 * RL2 Video Decoder
24
23
 * @file
 
24
 * RL2 Video Decoder
25
25
 * @author Sascha Sommer (saschasommer@freenet.de)
26
 
 * For more information about the RL2 format, visit:
27
 
 *   http://wiki.multimedia.cx/index.php?title=RL2
 
26
 * @see http://wiki.multimedia.cx/index.php?title=RL2
28
27
 */
29
28
 
30
29
#include <stdio.h>
220
219
 
221
220
 
222
221
AVCodec ff_rl2_decoder = {
223
 
    "rl2",
224
 
    AVMEDIA_TYPE_VIDEO,
225
 
    CODEC_ID_RL2,
226
 
    sizeof(Rl2Context),
227
 
    rl2_decode_init,
228
 
    NULL,
229
 
    rl2_decode_end,
230
 
    rl2_decode_frame,
231
 
    CODEC_CAP_DR1,
 
222
    .name           = "rl2",
 
223
    .type           = AVMEDIA_TYPE_VIDEO,
 
224
    .id             = CODEC_ID_RL2,
 
225
    .priv_data_size = sizeof(Rl2Context),
 
226
    .init           = rl2_decode_init,
 
227
    .close          = rl2_decode_end,
 
228
    .decode         = rl2_decode_frame,
 
229
    .capabilities   = CODEC_CAP_DR1,
232
230
    .long_name = NULL_IF_CONFIG_SMALL("RL2 video"),
233
231
};
234
232