From bb0344dc5582829253cc300a94fab29fb1f63f40 Mon Sep 17 00:00:00 2001 From: Anshul Maheshwari Date: Fri, 16 Jan 2015 02:19:01 +0100 Subject: ffmpeg: improve data stream support This adds data codec/stream handling where previously there was only audio/video/subtitles Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index c283c96cfb..2a9fe43bb7 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2911,6 +2911,8 @@ static int transcode_init(void) enc_ctx->height = input_streams[ost->source_index]->st->codec->height; } break; + case AVMEDIA_TYPE_DATA: + break; default: abort(); break; -- cgit v1.2.3