summaryrefslogtreecommitdiffstats
path: root/libhb/common.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2020-03-31 13:51:55 -0600
committerJohn Stebbins <[email protected]>2020-03-31 13:54:17 -0600
commitd72cdd2b73984762bf39b302e6e7270533c093a6 (patch)
tree4d807f7727c240eb9238279465d288ea042e63c6 /libhb/common.c
parent83dde24b82284b287dc784582ebce06e4dcbfd74 (diff)
scan: Fix aspect ratio warning for DVD and BD
DVD and BD do not have PAR specified at container level. Since the title is initialized with PAR 1:1, the warning was triggered.
Diffstat (limited to 'libhb/common.c')
-rw-r--r--libhb/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/common.c b/libhb/common.c
index fde9c9a55..ef067f545 100644
--- a/libhb/common.c
+++ b/libhb/common.c
@@ -3690,7 +3690,7 @@ hb_title_t * hb_title_init( char * path, int index )
t->video_timebase.num = 1;
t->video_timebase.den = 90000;
t->angle_count = 1;
- t->geometry.par.num = 1;
+ t->geometry.par.num = 0;
t->geometry.par.den = 1;
return t;