diff options
author | James Almer <jamrial@gmail.com> | 2015-09-07 16:04:23 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-09-07 16:06:25 -0300 |
commit | f9fd879877344aae99a599783e2bc3618e85314b (patch) | |
tree | 435d8dad74fd0870284bbf1d4a75aa9cfae54a94 /libavcodec/vima.c | |
parent | bdbab4a351591304be07586fe55b8b9f01be28e3 (diff) | |
download | ffmpeg-f9fd879877344aae99a599783e2bc3618e85314b.tar.gz |
avcodec: remove missing bits from deprecated VIMA decoder
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/vima.c')
-rw-r--r-- | libavcodec/vima.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libavcodec/vima.c b/libavcodec/vima.c index 7800c6651b..b4620acf6b 100644 --- a/libavcodec/vima.c +++ b/libavcodec/vima.c @@ -216,15 +216,3 @@ AVCodec ff_adpcm_vima_decoder = { .decode = decode_frame, .capabilities = AV_CODEC_CAP_DR1, }; - -#if FF_API_VIMA_DECODER -AVCodec ff_vima_decoder = { - .name = "vima", - .long_name = NULL_IF_CONFIG_SMALL("LucasArts VIMA audio"), - .type = AVMEDIA_TYPE_AUDIO, - .id = AV_CODEC_ID_ADPCM_VIMA, - .init = decode_init, - .decode = decode_frame, - .capabilities = AV_CODEC_CAP_DR1, -}; -#endif |