diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-07-12 18:42:00 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-07-12 18:42:00 +0000 |
commit | 0bef08e5169fb3bd45346ff1b3328ce6df5262ab (patch) | |
tree | 8a5b3527c3651598ccaa6ec76e282320f68e8c55 /libavcodec/avcodec.h | |
parent | 3e86dba24b61527ecbd1780f3f7d3bd159c203d9 (diff) | |
download | ffmpeg-0bef08e5169fb3bd45346ff1b3328ce6df5262ab.tar.gz |
New codec probing system try #1.
Originally committed as revision 14184 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f7532f74bf..d286361066 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -313,6 +313,8 @@ enum CodecID { /* other specific kind of codecs (generally used for attachments) */ CODEC_ID_TTF= 0x18000, + CODEC_ID_PROBE= 0x19000, ///< codec_id is not known (like CODEC_ID_NONE) but lavf should attempt to identify it + CODEC_ID_MPEG2TS= 0x20000, /**< _FAKE_ codec to indicate a raw MPEG-2 TS * stream (only used by libavformat) */ }; |