diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-03 13:34:00 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-04 03:10:12 +0100 |
commit | 4d9c044d47f8961852ae5735e5843a3b8a79a3b1 (patch) | |
tree | aeae329c0ac3cec51480e0a1e29475d0338d957c /libavcodec/amrwbdec.c | |
parent | a991b8dec654ad09a35494e0cabbbc157bb04dab (diff) | |
download | ffmpeg-4d9c044d47f8961852ae5735e5843a3b8a79a3b1.tar.gz |
Replace remaining occurrences of CODEC_TYPE_* with AVMEDIA_TYPE*
Tested to compile with lavc major bump.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit b2ed95ec48aceb21a9bb47af85d259ee52b8b7ea)
Diffstat (limited to 'libavcodec/amrwbdec.c')
-rw-r--r-- | libavcodec/amrwbdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/amrwbdec.c b/libavcodec/amrwbdec.c index 8bf02a2b10..1735c29ccc 100644 --- a/libavcodec/amrwbdec.c +++ b/libavcodec/amrwbdec.c @@ -1227,7 +1227,7 @@ static int amrwb_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVCodec ff_amrwb_decoder = { .name = "amrwb", - .type = CODEC_TYPE_AUDIO, + .type = AVMEDIA_TYPE_AUDIO, .id = CODEC_ID_AMR_WB, .priv_data_size = sizeof(AMRWBContext), .init = amrwb_decode_init, |