comparison avcodec.h @ 2585:1ef8fab234c8 libavcodec

Westwood SND1 decoder, courtesy of Kostya
author melanson
date Mon, 28 Mar 2005 18:05:25 +0000
parents c07be5590462
children b6b618986f80
comparison
equal deleted inserted replaced
2584:c07be5590462 2585:1ef8fab234c8
15 #include "rational.h" 15 #include "rational.h"
16 #include <sys/types.h> /* size_t */ 16 #include <sys/types.h> /* size_t */
17 17
18 #define FFMPEG_VERSION_INT 0x000409 18 #define FFMPEG_VERSION_INT 0x000409
19 #define FFMPEG_VERSION "0.4.9-pre1" 19 #define FFMPEG_VERSION "0.4.9-pre1"
20 #define LIBAVCODEC_BUILD 4750 20 #define LIBAVCODEC_BUILD 4751
21 21
22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT 22 #define LIBAVCODEC_VERSION_INT FFMPEG_VERSION_INT
23 #define LIBAVCODEC_VERSION FFMPEG_VERSION 23 #define LIBAVCODEC_VERSION FFMPEG_VERSION
24 24
25 #define AV_STRINGIFY(s) AV_TOSTRING(s) 25 #define AV_STRINGIFY(s) AV_TOSTRING(s)
165 CODEC_ID_FLAC, 165 CODEC_ID_FLAC,
166 CODEC_ID_MP3ADU, 166 CODEC_ID_MP3ADU,
167 CODEC_ID_MP3ON4, 167 CODEC_ID_MP3ON4,
168 CODEC_ID_SHORTEN, 168 CODEC_ID_SHORTEN,
169 CODEC_ID_ALAC, 169 CODEC_ID_ALAC,
170 CODEC_ID_WESTWOOD_SND1,
170 171
171 CODEC_ID_OGGTHEORA= 0x16000, 172 CODEC_ID_OGGTHEORA= 0x16000,
172 173
173 CODEC_ID_MPEG2TS= 0x20000, /* _FAKE_ codec to indicate a raw MPEG2 transport 174 CODEC_ID_MPEG2TS= 0x20000, /* _FAKE_ codec to indicate a raw MPEG2 transport
174 stream (only used by libavformat) */ 175 stream (only used by libavformat) */
2013 extern AVCodec qpeg_decoder; 2014 extern AVCodec qpeg_decoder;
2014 extern AVCodec shorten_decoder; 2015 extern AVCodec shorten_decoder;
2015 extern AVCodec loco_decoder; 2016 extern AVCodec loco_decoder;
2016 extern AVCodec wnv1_decoder; 2017 extern AVCodec wnv1_decoder;
2017 extern AVCodec alac_decoder; 2018 extern AVCodec alac_decoder;
2019 extern AVCodec ws_snd1_decoder;
2018 2020
2019 /* pcm codecs */ 2021 /* pcm codecs */
2020 #define PCM_CODEC(id, name) \ 2022 #define PCM_CODEC(id, name) \
2021 extern AVCodec name ## _decoder; \ 2023 extern AVCodec name ## _decoder; \
2022 extern AVCodec name ## _encoder 2024 extern AVCodec name ## _encoder