diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2013-04-29 20:45:22 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2013-05-04 14:12:57 +0200 |
commit | fa245e432bdc3b28081d8fcaa90dced6c6fbf566 (patch) | |
tree | f02513bcde38f33c2206436bb2859a0cb9baa661 | |
parent | d608a27d9e28d24ab56acc4ea6bfb13b2802035c (diff) | |
download | ffmpeg-fa245e432bdc3b28081d8fcaa90dced6c6fbf566.tar.gz |
lavf/matroskaenc: return an error for unsupported types.
-rw-r--r-- | libavformat/matroskaenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index da34ea7677..371b9d0bf2 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -705,7 +705,7 @@ static int mkv_write_tracks(AVFormatContext *s) break; default: av_log(s, AV_LOG_ERROR, "Only audio, video, and subtitles are supported for Matroska.\n"); - break; + return AVERROR(EINVAL); } ret = mkv_write_codecprivate(s, pb, codec, native_id, qt_id); if (ret < 0) return ret; |