summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2008-10-18 21:43:21 +0000
committerjbrjake <[email protected]>2008-10-18 21:43:21 +0000
commit152ec1f0a7350d70e87a0a265f806b5400ce4ae0 (patch)
tree219c71e1875781cbd1ddd6215d83488e83426b78 /libhb
parent48ff1d760119f65bc3e5bb415afd44cfc4dba5cd (diff)
Adds a logging message to let the user know when a title is being ignored due to having no audio, since it seems to mystify some people.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1845 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r--libhb/scan.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/scan.c b/libhb/scan.c
index 36a90cd4d..1877803a1 100644
--- a/libhb/scan.c
+++ b/libhb/scan.c
@@ -162,6 +162,7 @@ static void ScanFunc( void * _data )
/* If we don't have any audio streams left, remove the title */
if( !hb_list_count( title->list_audio ) )
{
+ hb_log("scan: ignoring title %i, no audio tracks found", title->index );
hb_list_rem( data->list_title, title );
free( title );
continue;