From 127545350fcc57781ba66bf7698904f4a0d2387c Mon Sep 17 00:00:00 2001 From: James Almer Date: Fri, 21 Jun 2024 14:08:47 -0300 Subject: [PATCH] avformat/mov: use the updated default value for horizontal_disparity_adjustment in the eyes box Signed-off-by: James Almer --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index 2d5b24b9a9..f08fec3fb6 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -6548,7 +6548,7 @@ static int mov_read_eyes(MOVContext *c, AVIOContext *pb, MOVAtom atom) uint32_t tag, baseline = 0; enum AVStereo3DView view = AV_STEREO3D_VIEW_PACKED; enum AVStereo3DPrimaryEye primary_eye = AV_PRIMARY_EYE_NONE; - AVRational horizontal_disparity_adjustment = { 0, 0 }; + AVRational horizontal_disparity_adjustment = { 0, 1 }; if (c->fc->nb_streams < 1) return 0;