mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '55fe72a841ba306370e68e86c88f34b4456aa4dd'
* commit '55fe72a841ba306370e68e86c88f34b4456aa4dd': matroskadec: don't warn about unknown spherical medata when none is present Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
commit
f5c67c431e
|
@ -1989,7 +1989,13 @@ static int mkv_parse_video_projection(AVStream *st, const MatroskaTrack *track)
|
|||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
break;
|
||||
case MATROSKA_VIDEO_PROJECTION_TYPE_RECTANGULAR:
|
||||
/* No Spherical metadata */
|
||||
return 0;
|
||||
default:
|
||||
av_log(NULL, AV_LOG_WARNING,
|
||||
"Unknown spherical metadata type %"PRIu64"\n",
|
||||
track->video.projection.type);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue