diff options
author | Tim Walker <[email protected]> | 2016-03-29 23:22:26 +0200 |
---|---|---|
committer | Tim Walker <[email protected]> | 2016-03-31 01:05:16 +0200 |
commit | f62eab7af77982d8a161d2714d237f3b7bda3cf8 (patch) | |
tree | 1388fe4e13257e8b503260b4f9e29b9205c7dd13 /libhb/muxcommon.c | |
parent | 0de684adbc17b445f93ed8e6f52951b44dc12063 (diff) |
libhb: fix incorrect assumption that video quality is always positive.
Diffstat (limited to 'libhb/muxcommon.c')
-rw-r--r-- | libhb/muxcommon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c index 13d771289..0a846def1 100644 --- a/libhb/muxcommon.c +++ b/libhb/muxcommon.c @@ -536,7 +536,7 @@ static void muxClose( hb_work_object_t * muxer ) i, track->frames, track->bytes, 90000.0 * track->bytes / mux->pts / 125, track->mf.flen ); - if( !i && job->vquality < 0 ) + if (!i && job->vquality <= HB_INVALID_VIDEO_QUALITY) { /* Video */ hb_deep_log( 2, "mux: video bitrate error, %+"PRId64" bytes", |