From 7151411b9cf74ce43ab56f0ff8577b8031b997d9 Mon Sep 17 00:00:00 2001 From: Lukasz Marek Date: Sun, 19 Jan 2014 16:11:09 +0100 Subject: lavd: add avdevice_app_to_dev_control_message API New API allows to send messages from application to devices. Signed-off-by: Lukasz Marek --- libavdevice/avdevice.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'libavdevice/avdevice.c') diff --git a/libavdevice/avdevice.c b/libavdevice/avdevice.c index b9b18f2576..c232bbdc8f 100644 --- a/libavdevice/avdevice.c +++ b/libavdevice/avdevice.c @@ -36,3 +36,11 @@ const char * avdevice_license(void) #define LICENSE_PREFIX "libavdevice license: " return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; } + +int avdevice_app_to_dev_control_message(struct AVFormatContext *s, enum AVAppToDevMessageType type, + void *data, size_t data_size) +{ + if (!s->oformat || !s->oformat->control_message) + return AVERROR(ENOSYS); + return s->oformat->control_message(s, type, data, data_size); +} -- cgit v1.2.3