diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-03 13:34:00 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-03 13:37:09 +0000 |
commit | b2ed95ec48aceb21a9bb47af85d259ee52b8b7ea (patch) | |
tree | 7ade83a79c7c9c7fc5d71b2b6f72f8b0ef86b2e0 /libavcodec/amrwbdec.c | |
parent | 1f56f5ed6d68f6492e213944e145e04e4d4dca13 (diff) | |
download | ffmpeg-b2ed95ec48aceb21a9bb47af85d259ee52b8b7ea.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>
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, |