~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavcodec/yop.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * @file
 
1
/*
3
2
 * Psygnosis YOP decoder
4
3
 *
5
4
 * Copyright (C) 2010 Mohamed Naufal Basheer <naufal11@gmail.com>
249
248
}
250
249
 
251
250
AVCodec ff_yop_decoder = {
252
 
    "yop",
253
 
    AVMEDIA_TYPE_VIDEO,
254
 
    CODEC_ID_YOP,
255
 
    sizeof(YopDecContext),
256
 
    yop_decode_init,
257
 
    NULL,
258
 
    yop_decode_close,
259
 
    yop_decode_frame,
 
251
    .name           = "yop",
 
252
    .type           = AVMEDIA_TYPE_VIDEO,
 
253
    .id             = CODEC_ID_YOP,
 
254
    .priv_data_size = sizeof(YopDecContext),
 
255
    .init           = yop_decode_init,
 
256
    .close          = yop_decode_close,
 
257
    .decode         = yop_decode_frame,
260
258
    .long_name = NULL_IF_CONFIG_SMALL("Psygnosis YOP Video"),
261
259
};