diff options
author | Lukasz Marek <lukasz.m.luki@gmail.com> | 2014-01-19 16:12:07 +0100 |
---|---|---|
committer | Lukasz Marek <lukasz.m.luki@gmail.com> | 2014-01-27 15:18:17 +0100 |
commit | 102bd641687a6ec4704ce2b3f259e895b68d8e4b (patch) | |
tree | d6ba6f1c686036af9c9077543624b5adebd72a18 /libavformat/utils.c | |
parent | 7151411b9cf74ce43ab56f0ff8577b8031b997d9 (diff) | |
download | ffmpeg-102bd641687a6ec4704ce2b3f259e895b68d8e4b.tar.gz |
lavd: add avdevice_dev_to_app_control_message API
New API allows to send messages from devices to application.
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index d425b5bc61..ac9236b18f 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -107,6 +107,8 @@ MAKE_ACCESSORS(AVFormatContext, format, AVCodec *, video_codec) MAKE_ACCESSORS(AVFormatContext, format, AVCodec *, audio_codec) MAKE_ACCESSORS(AVFormatContext, format, AVCodec *, subtitle_codec) MAKE_ACCESSORS(AVFormatContext, format, int, metadata_header_padding) +MAKE_ACCESSORS(AVFormatContext, format, void *, opaque) +MAKE_ACCESSORS(AVFormatContext, format, av_format_control_message, control_message_cb) static AVCodec *find_decoder(AVFormatContext *s, AVStream *st, enum AVCodecID codec_id) { |