mirror of
https://github.com/mpv-player/mpv
synced 2025-04-01 23:00:41 +00:00
demux_mkv: corrected direction of ProjectionPoseRoll rotation
See: ietf-wg-cellar/matroska-specification#822 Fixes: #13830
This commit is contained in:
parent
6a8b130c6f
commit
f729bd9e05
@ -1576,7 +1576,7 @@ static int demux_mkv_open_video(demuxer_t *demuxer, mkv_track_t *track)
|
||||
sh_v->color = track->color;
|
||||
|
||||
if (track->v_projection_pose_roll_set) {
|
||||
int rotate = lrintf(fmodf(fmodf(track->v_projection_pose_roll, 360) + 360, 360));
|
||||
int rotate = lrintf(fmodf(fmodf(-1 * track->v_projection_pose_roll, 360) + 360, 360));
|
||||
sh_v->rotate = rotate;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user