diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-30 23:31:16 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-30 23:31:16 +0000 |
commit | 11491503c492f3a3ce190e2ee8cec660d3b91e1d (patch) | |
tree | f75269f2137ba6be9de4bad888ab24811b640c9a /libavcodec/avcodec.h | |
parent | 72415b2adb2c25f95ceede49001bb97ed9247dbb (diff) | |
download | ffmpeg-11491503c492f3a3ce190e2ee8cec660d3b91e1d.tar.gz |
Move AVMediaType from libavcodec to libavutil.
This allows applications/libraries which require that symbol
(e.g. libavfilter) to be compiled without to depend on the presence of
libavcodec/avcodec.h, which may not be installed.
Originally committed as revision 22736 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 2fb4fd49df..183d8e63ad 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -355,16 +355,6 @@ enum CodecID { * stream (only used by libavformat) */ }; -enum AVMediaType { - AVMEDIA_TYPE_UNKNOWN = -1, - AVMEDIA_TYPE_VIDEO, - AVMEDIA_TYPE_AUDIO, - AVMEDIA_TYPE_DATA, - AVMEDIA_TYPE_SUBTITLE, - AVMEDIA_TYPE_ATTACHMENT, - AVMEDIA_TYPE_NB -}; - #if LIBAVCODEC_VERSION_MAJOR < 53 #define CodecType AVMediaType |