Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-02-03 16:34:00 +0300
committerMichael Niedermayer <michaelni@gmx.at>2011-02-04 05:10:12 +0300
commit4d9c044d47f8961852ae5735e5843a3b8a79a3b1 (patch)
treeaeae329c0ac3cec51480e0a1e29475d0338d957c /libavcodec/aacdec.c
parenta991b8dec654ad09a35494e0cabbbc157bb04dab (diff)
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/aacdec.c')
-rw-r--r--libavcodec/aacdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c
index 411c1dfc1b..bc92f5662f 100644
--- a/libavcodec/aacdec.c
+++ b/libavcodec/aacdec.c
@@ -2363,7 +2363,7 @@ AVCodec ff_aac_decoder = {
*/
AVCodec ff_aac_latm_decoder = {
.name = "aac_latm",
- .type = CODEC_TYPE_AUDIO,
+ .type = AVMEDIA_TYPE_AUDIO,
.id = CODEC_ID_AAC_LATM,
.priv_data_size = sizeof(struct LATMContext),
.init = latm_decode_init,