diff options
author | James Almer <jamrial@gmail.com> | 2024-06-21 14:08:47 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-06-21 14:09:25 -0300 |
commit | 127545350fcc57781ba66bf7698904f4a0d2387c (patch) | |
tree | 43168268626074b6420c211fee5e559a3ebe95f4 | |
parent | d45e20c37b1144d9c4ff08732a94fee0786dc0b5 (diff) | |
download | ffmpeg-127545350fcc57781ba66bf7698904f4a0d2387c.tar.gz |
avformat/mov: use the updated default value for horizontal_disparity_adjustment in the eyes box
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |