summaryrefslogtreecommitdiffstats
path: root/libhb/vfr.c
diff options
context:
space:
mode:
authorRodeo <[email protected]>2012-03-31 15:22:00 +0000
committerRodeo <[email protected]>2012-03-31 15:22:00 +0000
commita1ea19d988a461fc449d3bcc8c224ccdb4e3ff16 (patch)
tree457f64b102c7b2a5ed43bcae3d1c9ff7ef044ced /libhb/vfr.c
parent636f331abc04645580697d90e0ed7eed49ea264b (diff)
Activity Log: fix some typos and make indentation a bit more consistent.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4565 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/vfr.c')
-rw-r--r--libhb/vfr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/vfr.c b/libhb/vfr.c
index 7ea308124..06b8f73ec 100644
--- a/libhb/vfr.c
+++ b/libhb/vfr.c
@@ -384,7 +384,7 @@ static int hb_vfr_info( hb_filter_object_t * filter,
double source_fps = (double)pv->input_vrate / pv->input_vrate_base;
double peak_fps = (double)pv->vrate / pv->vrate_base;
sprintf( info->human_readable_desc,
- "frame rate: %.3f fps -> peak rate limited to %.3f fps)",
+ "frame rate: %.3f fps -> peak rate limited to %.3f fps",
source_fps , peak_fps );
}
else
@@ -393,7 +393,7 @@ static int hb_vfr_info( hb_filter_object_t * filter,
double source_fps = (double)pv->input_vrate / pv->input_vrate_base;
double constant_fps = (double)pv->vrate / pv->vrate_base;
sprintf( info->human_readable_desc,
- "frame rate: %.3f fps -> constant rate limited to %.3f fps)",
+ "frame rate: %.3f fps -> constant %.3f fps",
source_fps , constant_fps );
}