matroskaenc: don't warn about unknown spherical metadata when there isn't any

The same warning is issued when actual unknown spherical metadata is
found further down in the function.

Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
James Almer 2017-04-14 13:06:35 -03:00 committed by Anton Khirnov
parent 04b0f0e371
commit bee89ed3ec

View File

@ -662,10 +662,8 @@ static int mkv_write_video_projection(AVFormatContext *s, AVIOContext *pb,
(const AVSphericalMapping *)av_stream_get_side_data(st, AV_PKT_DATA_SPHERICAL,
&side_data_size);
if (!side_data_size) {
av_log(NULL, AV_LOG_WARNING, "Unknown spherical metadata\n");
if (!side_data_size)
return 0;
}
ret = avio_open_dyn_buf(&dyn_cp);
if (ret < 0)