comparison avcodec.h @ 2577:7d9997a69158 libavcodec

Winnov WNV1 video decoder, courtesy of Konstantin Shishkov
author melanson
date Sat, 26 Mar 2005 20:32:55 +0000
parents c22ad129a91b
children c07be5590462
comparison
equal deleted inserted replaced
2576:e237d9bd0f8c 2577:7d9997a69158
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 4748 20 #define LIBAVCODEC_BUILD 4749
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)
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 CODEC_ID_LOCO, 107 CODEC_ID_LOCO,
108 CODEC_ID_WNV1,
108 109
109 /* various pcm "codecs" */ 110 /* various pcm "codecs" */
110 CODEC_ID_PCM_S16LE= 0x10000, 111 CODEC_ID_PCM_S16LE= 0x10000,
111 CODEC_ID_PCM_S16BE, 112 CODEC_ID_PCM_S16BE,
112 CODEC_ID_PCM_U16LE, 113 CODEC_ID_PCM_U16LE,
2003 extern AVCodec qdraw_decoder; 2004 extern AVCodec qdraw_decoder;
2004 extern AVCodec xl_decoder; 2005 extern AVCodec xl_decoder;
2005 extern AVCodec qpeg_decoder; 2006 extern AVCodec qpeg_decoder;
2006 extern AVCodec shorten_decoder; 2007 extern AVCodec shorten_decoder;
2007 extern AVCodec loco_decoder; 2008 extern AVCodec loco_decoder;
2009 extern AVCodec wnv1_decoder;
2008 extern AVCodec alac_decoder; 2010 extern AVCodec alac_decoder;
2009 2011
2010 /* pcm codecs */ 2012 /* pcm codecs */
2011 #define PCM_CODEC(id, name) \ 2013 #define PCM_CODEC(id, name) \
2012 extern AVCodec name ## _decoder; \ 2014 extern AVCodec name ## _decoder; \