comparison aac.c @ 11560:8a4984c5cacc libavcodec

Define AVMediaType enum, and use it instead of enum CodecType, which is deprecated and will be dropped at the next major bump.
author stefano
date Tue, 30 Mar 2010 23:30:55 +0000
parents 1aba21918874
children 7dd2a45249a9
comparison
equal deleted inserted replaced
11559:444f4b594fdb 11560:8a4984c5cacc
2089 return 0; 2089 return 0;
2090 } 2090 }
2091 2091
2092 AVCodec aac_decoder = { 2092 AVCodec aac_decoder = {
2093 "aac", 2093 "aac",
2094 CODEC_TYPE_AUDIO, 2094 AVMEDIA_TYPE_AUDIO,
2095 CODEC_ID_AAC, 2095 CODEC_ID_AAC,
2096 sizeof(AACContext), 2096 sizeof(AACContext),
2097 aac_decode_init, 2097 aac_decode_init,
2098 NULL, 2098 NULL,
2099 aac_decode_close, 2099 aac_decode_close,