comparison avcodec.h @ 2530:eace30b70601 libavcodec

go LOCO, courtesy of Kostya Shishkov
author melanson
date Tue, 01 Mar 2005 02:24:58 +0000
parents b47af698085e
children a27a580f292e
comparison
equal deleted inserted replaced
2529:f6a13db551aa 2530:eace30b70601
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 4743 20 #define LIBAVCODEC_BUILD 4744
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)
102 CODEC_ID_FFVHUFF, 102 CODEC_ID_FFVHUFF,
103 CODEC_ID_RV30, 103 CODEC_ID_RV30,
104 CODEC_ID_RV40, 104 CODEC_ID_RV40,
105 CODEC_ID_VC9, 105 CODEC_ID_VC9,
106 CODEC_ID_WMV3, 106 CODEC_ID_WMV3,
107 107 CODEC_ID_LOCO,
108 108
109 /* various pcm "codecs" */ 109 /* various pcm "codecs" */
110 CODEC_ID_PCM_S16LE= 0x10000, 110 CODEC_ID_PCM_S16LE= 0x10000,
111 CODEC_ID_PCM_S16BE, 111 CODEC_ID_PCM_S16BE,
112 CODEC_ID_PCM_U16LE, 112 CODEC_ID_PCM_U16LE,
2008 extern AVCodec ulti_decoder; 2008 extern AVCodec ulti_decoder;
2009 extern AVCodec qdraw_decoder; 2009 extern AVCodec qdraw_decoder;
2010 extern AVCodec xl_decoder; 2010 extern AVCodec xl_decoder;
2011 extern AVCodec qpeg_decoder; 2011 extern AVCodec qpeg_decoder;
2012 extern AVCodec shorten_decoder; 2012 extern AVCodec shorten_decoder;
2013 extern AVCodec loco_decoder;
2013 2014
2014 /* pcm codecs */ 2015 /* pcm codecs */
2015 #define PCM_CODEC(id, name) \ 2016 #define PCM_CODEC(id, name) \
2016 extern AVCodec name ## _decoder; \ 2017 extern AVCodec name ## _decoder; \
2017 extern AVCodec name ## _encoder 2018 extern AVCodec name ## _encoder