diff options
author | Benoit Fouet <benoit.fouet@purplelabs.com> | 2007-02-23 15:19:29 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2007-02-23 15:19:29 +0000 |
commit | 9ff77d1797453c5ef0dafb0f3ba1b81862693dea (patch) | |
tree | f967ca42b74efdffa5ae5003956fc35e420cbb36 /libavcodec | |
parent | 0c67082e02f8a7c1a76c9a7bf958751c01ca25eb (diff) | |
download | ffmpeg-9ff77d1797453c5ef0dafb0f3ba1b81862693dea.tar.gz |
add CODEC_TYPE_NB to enum CodecType, will be used to declare option arrays in ffmpeg.c
Patch by Benoit Fouet % benoit P fouet A purplelabs P com %
Originally committed as revision 8096 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f7b6e074b2..3fdb9dacc7 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -258,6 +258,7 @@ enum CodecType { CODEC_TYPE_AUDIO, CODEC_TYPE_DATA, CODEC_TYPE_SUBTITLE, + CODEC_TYPE_NB }; /* currently unused, may be used if 24/32 bits samples ever supported */ |