diff options
author | Lukasz Marek <lukasz.m.luki@gmail.com> | 2014-01-19 16:11:09 +0100 |
---|---|---|
committer | Lukasz Marek <lukasz.m.luki@gmail.com> | 2014-01-27 15:18:17 +0100 |
commit | 7151411b9cf74ce43ab56f0ff8577b8031b997d9 (patch) | |
tree | be9ee49037847eb427cc8d36d78c96b1bcdc3548 /libavformat | |
parent | bceeccc648baf94a02b7b2c53e44bf77a47773ef (diff) | |
download | ffmpeg-7151411b9cf74ce43ab56f0ff8577b8031b997d9.tar.gz |
lavd: add avdevice_app_to_dev_control_message API
New API allows to send messages from application to devices.
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avformat.h | 5 | ||||
-rw-r--r-- | libavformat/version.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index a495ee0b79..09eea74ad9 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -453,6 +453,11 @@ typedef struct AVOutputFormat { void (*get_output_timestamp)(struct AVFormatContext *s, int stream, int64_t *dts, int64_t *wall); + /** + * Allows sending messages from application to device. + */ + int (*control_message)(struct AVFormatContext *s, int type, + void *data, size_t data_size); } AVOutputFormat; /** * @} diff --git a/libavformat/version.h b/libavformat/version.h index a0e5a7cee9..51f6d598d9 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -30,7 +30,7 @@ #include "libavutil/version.h" #define LIBAVFORMAT_VERSION_MAJOR 55 -#define LIBAVFORMAT_VERSION_MINOR 26 +#define LIBAVFORMAT_VERSION_MINOR 27 #define LIBAVFORMAT_VERSION_MICRO 100 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ |