diff options
author | jstebbins <[email protected]> | 2014-11-17 18:40:56 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-11-17 18:40:56 +0000 |
commit | 98dea488d6ae9baf7ebb811efc489a84c4e91126 (patch) | |
tree | adb36c7025ff703c0812ae3f1e99e21a4f0bde87 | |
parent | ac543aedfe1218d0349b7aad9cc3575d4d05553e (diff) |
scan: eliminate duplicate activity log stream info
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6525 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/scan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/scan.c b/libhb/scan.c index f952706f9..7ab7e17c7 100644 --- a/libhb/scan.c +++ b/libhb/scan.c @@ -523,11 +523,11 @@ static int DecodePreviews( hb_scan_t * data, hb_title_t * title, int flush ) } else if (data->batch) { - stream = hb_stream_open( title->path, title, 1 ); + stream = hb_stream_open( title->path, title, 0 ); } else if (data->stream) { - stream = hb_stream_open( data->path, title, 1 ); + stream = hb_stream_open( data->path, title, 0 ); } if (title->video_codec == WORK_NONE) |