comparison avcodec.h @ 4106:21aa7e801c7b libavcodec

IMC decoder
author kostya
date Mon, 30 Oct 2006 13:48:48 +0000
parents f426c81afc9e
children f6f67a8bdd09
comparison
equal deleted inserted replaced
4105:225d287b337f 4106:21aa7e801c7b
35 #include <sys/types.h> /* size_t */ 35 #include <sys/types.h> /* size_t */
36 36
37 #define AV_STRINGIFY(s) AV_TOSTRING(s) 37 #define AV_STRINGIFY(s) AV_TOSTRING(s)
38 #define AV_TOSTRING(s) #s 38 #define AV_TOSTRING(s) #s
39 39
40 #define LIBAVCODEC_VERSION_INT ((51<<16)+(22<<8)+0) 40 #define LIBAVCODEC_VERSION_INT ((51<<16)+(23<<8)+0)
41 #define LIBAVCODEC_VERSION 51.22.0 41 #define LIBAVCODEC_VERSION 51.23.0
42 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT 42 #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
43 43
44 #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) 44 #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
45 45
46 #define AV_NOPTS_VALUE int64_t_C(0x8000000000000000) 46 #define AV_NOPTS_VALUE int64_t_C(0x8000000000000000)
231 CODEC_ID_TTA, 231 CODEC_ID_TTA,
232 CODEC_ID_SMACKAUDIO, 232 CODEC_ID_SMACKAUDIO,
233 CODEC_ID_QCELP, 233 CODEC_ID_QCELP,
234 CODEC_ID_WAVPACK, 234 CODEC_ID_WAVPACK,
235 CODEC_ID_DSICINAUDIO, 235 CODEC_ID_DSICINAUDIO,
236 CODEC_ID_IMC,
236 237
237 /* subtitle codecs */ 238 /* subtitle codecs */
238 CODEC_ID_DVD_SUBTITLE= 0x17000, 239 CODEC_ID_DVD_SUBTITLE= 0x17000,
239 CODEC_ID_DVB_SUBTITLE, 240 CODEC_ID_DVB_SUBTITLE,
240 241
2302 extern AVCodec targa_decoder; 2303 extern AVCodec targa_decoder;
2303 extern AVCodec dsicinvideo_decoder; 2304 extern AVCodec dsicinvideo_decoder;
2304 extern AVCodec dsicinaudio_decoder; 2305 extern AVCodec dsicinaudio_decoder;
2305 extern AVCodec tiertexseqvideo_decoder; 2306 extern AVCodec tiertexseqvideo_decoder;
2306 extern AVCodec tiff_decoder; 2307 extern AVCodec tiff_decoder;
2308 extern AVCodec imc_decoder;
2307 2309
2308 /* pcm codecs */ 2310 /* pcm codecs */
2309 #define PCM_CODEC(id, name) \ 2311 #define PCM_CODEC(id, name) \
2310 extern AVCodec name ## _decoder; \ 2312 extern AVCodec name ## _decoder; \
2311 extern AVCodec name ## _encoder 2313 extern AVCodec name ## _encoder