Commit 7a252c9b authored by stefano's avatar stefano

Implement avdevice_version().


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14668 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8cd9be11
...@@ -20,6 +20,12 @@ ...@@ -20,6 +20,12 @@
#include "config.h" #include "config.h"
#include "libavformat/avformat.h" #include "libavformat/avformat.h"
#include "avdevice.h"
unsigned avdevice_version(void)
{
return LIBAVDEVICE_VERSION_INT;
}
#define REGISTER_MUXER(X,x) { \ #define REGISTER_MUXER(X,x) { \
extern AVOutputFormat x##_muxer; \ extern AVOutputFormat x##_muxer; \
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#define FFMPEG_AVDEVICE_H #define FFMPEG_AVDEVICE_H
#define LIBAVDEVICE_VERSION_MAJOR 52 #define LIBAVDEVICE_VERSION_MAJOR 52
#define LIBAVDEVICE_VERSION_MINOR 0 #define LIBAVDEVICE_VERSION_MINOR 1
#define LIBAVDEVICE_VERSION_MICRO 0 #define LIBAVDEVICE_VERSION_MICRO 0
#define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \ #define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \
...@@ -31,6 +31,11 @@ ...@@ -31,6 +31,11 @@
LIBAVDEVICE_VERSION_MICRO) LIBAVDEVICE_VERSION_MICRO)
#define LIBAVDEVICE_BUILD LIBAVDEVICE_VERSION_INT #define LIBAVDEVICE_BUILD LIBAVDEVICE_VERSION_INT
/**
* Returns the LIBAVDEVICE_VERSION_INT constant.
*/
unsigned avdevice_version(void);
/** /**
* Initialize libavdevice and register all the input and output devices. * Initialize libavdevice and register all the input and output devices.
* @warning This function is not thread safe. * @warning This function is not thread safe.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment