comparison adxenc.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 7955db355703
children 7dd2a45249a9
comparison
equal deleted inserted replaced
11559:444f4b594fdb 11560:8a4984c5cacc
183 return dst-frame; 183 return dst-frame;
184 } 184 }
185 185
186 AVCodec adpcm_adx_encoder = { 186 AVCodec adpcm_adx_encoder = {
187 "adpcm_adx", 187 "adpcm_adx",
188 CODEC_TYPE_AUDIO, 188 AVMEDIA_TYPE_AUDIO,
189 CODEC_ID_ADPCM_ADX, 189 CODEC_ID_ADPCM_ADX,
190 sizeof(ADXContext), 190 sizeof(ADXContext),
191 adx_encode_init, 191 adx_encode_init,
192 adx_encode_frame, 192 adx_encode_frame,
193 adx_encode_close, 193 adx_encode_close,