diff options
author | jstebbins <[email protected]> | 2015-05-24 16:46:00 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-05-24 16:46:00 +0000 |
commit | 9abe991b41bbc9c03d2e1846c28cf90ec909d57b (patch) | |
tree | 0cf7a871471ed20b9464c353285fb4146d54b18a /test | |
parent | e915f4813e214718881b88759c8380d7755c14a9 (diff) |
cli: fix display of fps in title summary
Fixes https://forum.handbrake.fr/viewtopic.php?f=12&t=32507
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7220 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c index 81fcba610..22816c73c 100644 --- a/test/test.c +++ b/test/test.c @@ -533,7 +533,7 @@ static void PrintTitleInfo( hb_title_t * title, int feature ) title->geometry.width, title->geometry.height, title->geometry.par.num, title->geometry.par.den, (float)title->dar.num / title->dar.den, - (float)title->vrate.num / title->vrate.num ); + (float)title->vrate.num / title->vrate.den ); fprintf( stderr, " + autocrop: %d/%d/%d/%d\n", title->crop[0], title->crop[1], title->crop[2], title->crop[3] ); |