~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavcodec/aura.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:
123
123
}
124
124
 
125
125
AVCodec ff_aura2_decoder = {
126
 
    "aura2",
127
 
    AVMEDIA_TYPE_VIDEO,
128
 
    CODEC_ID_AURA2,
129
 
    sizeof(AuraDecodeContext),
130
 
    aura_decode_init,
131
 
    NULL,
132
 
    aura_decode_end,
133
 
    aura_decode_frame,
134
 
    CODEC_CAP_DR1,
135
 
    NULL,
 
126
    .name           = "aura2",
 
127
    .type           = AVMEDIA_TYPE_VIDEO,
 
128
    .id             = CODEC_ID_AURA2,
 
129
    .priv_data_size = sizeof(AuraDecodeContext),
 
130
    .init           = aura_decode_init,
 
131
    .close          = aura_decode_end,
 
132
    .decode         = aura_decode_frame,
 
133
    .capabilities   = CODEC_CAP_DR1,
136
134
    .long_name = NULL_IF_CONFIG_SMALL("Auravision Aura 2"),
137
135
};
138
136