From 4afbfd2c68c463b4243da012e959e36d8cd55736 Mon Sep 17 00:00:00 2001 From: MrDave Date: Tue, 11 Oct 2016 07:32:50 -0600 Subject: [PATCH] typo fix --- ffmpeg.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 02f56f5a..de551b3d 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -384,7 +384,6 @@ struct ffmpeg *ffmpeg_open(const char *ffmpeg_video_codec, char *filename, av_dict_set(&opts, "tune", "zerolatency", 0); } else { /* The selection of 8000 in the else is a subjective number based upon viewing output files */ - /* Default to 75% */ if (vbr > 0){ ffmpeg->vbr =(int)(((100-vbr)*(100-vbr)*(100-vbr) * 8000) / 1000000) + 1; c->flags |= CODEC_FLAG_QSCALE;