]> granicus.if.org Git - handbrake/commitdiff
Add path to log when decoding previews in batch scan
authorjstebbins <jstebbins.hb@gmail.com>
Thu, 29 Dec 2011 23:18:23 +0000 (23:18 +0000)
committerjstebbins <jstebbins.hb@gmail.com>
Thu, 29 Dec 2011 23:18:23 +0000 (23:18 +0000)
The title number isn't very helpful in batch scan mode.

git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4391 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/scan.c

index ce7752326f59c44ce9425f1caf2443bcc4c8c15d..ead4f2511434f7cf16aaf905e4d64067f14d5092 100644 (file)
@@ -512,7 +512,14 @@ static int DecodePreviews( hb_scan_t * data, hb_title_t * title )
 
     list_es  = hb_list_init();
 
-    hb_log( "scan: decoding previews for title %d", title->index );
+    if( data->batch )
+    {
+        hb_log( "scan: decoding previews for title %d (%s)", title->index, title->path );
+    }
+    else
+    {
+        hb_log( "scan: decoding previews for title %d", title->index );
+    }
 
     if (data->bd)
     {