summaryrefslogtreecommitdiffstats
path: root/libhb/batch.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/batch.c')
-rw-r--r--libhb/batch.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/libhb/batch.c b/libhb/batch.c
index 9af32393a..02c79893a 100644
--- a/libhb/batch.c
+++ b/libhb/batch.c
@@ -120,7 +120,7 @@ int hb_batch_title_count( hb_batch_t * d )
/***********************************************************************
* hb_batch_title_scan
**********************************************************************/
-hb_title_t * hb_batch_title_scan( hb_batch_t * d, int t, uint64_t min_duration )
+hb_title_t * hb_batch_title_scan( hb_batch_t * d, int t )
{
hb_title_t * title;
@@ -145,11 +145,6 @@ hb_title_t * hb_batch_title_scan( hb_batch_t * d, int t, uint64_t min_duration )
title = hb_stream_title_scan( stream, title );
hb_stream_close( &stream );
- if( title != NULL && title->duration < min_duration )
- {
- hb_log( "batch: ignoring title (too short)" );
- hb_title_close(&title);
- }
return title;
}