You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
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
This commit is contained in:
@@ -355,16 +355,6 @@ enum CodecID {
|
|||||||
* stream (only used by libavformat) */
|
* 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
|
#if LIBAVCODEC_VERSION_MAJOR < 53
|
||||||
#define CodecType AVMediaType
|
#define CodecType AVMediaType
|
||||||
|
|
||||||
|
@@ -40,7 +40,7 @@
|
|||||||
#define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
|
#define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
|
||||||
|
|
||||||
#define LIBAVUTIL_VERSION_MAJOR 50
|
#define LIBAVUTIL_VERSION_MAJOR 50
|
||||||
#define LIBAVUTIL_VERSION_MINOR 13
|
#define LIBAVUTIL_VERSION_MINOR 14
|
||||||
#define LIBAVUTIL_VERSION_MICRO 0
|
#define LIBAVUTIL_VERSION_MICRO 0
|
||||||
|
|
||||||
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
||||||
@@ -68,6 +68,16 @@ const char *avutil_configuration(void);
|
|||||||
*/
|
*/
|
||||||
const char *avutil_license(void);
|
const char *avutil_license(void);
|
||||||
|
|
||||||
|
enum AVMediaType {
|
||||||
|
AVMEDIA_TYPE_UNKNOWN = -1,
|
||||||
|
AVMEDIA_TYPE_VIDEO,
|
||||||
|
AVMEDIA_TYPE_AUDIO,
|
||||||
|
AVMEDIA_TYPE_DATA,
|
||||||
|
AVMEDIA_TYPE_SUBTITLE,
|
||||||
|
AVMEDIA_TYPE_ATTACHMENT,
|
||||||
|
AVMEDIA_TYPE_NB
|
||||||
|
};
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "error.h"
|
#include "error.h"
|
||||||
#include "mathematics.h"
|
#include "mathematics.h"
|
||||||
|
Reference in New Issue
Block a user