diff options
author | eddyg <[email protected]> | 2008-10-10 04:43:13 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2008-10-10 04:43:13 +0000 |
commit | f1a5850f3f0aff7d0cbe10801ee650f78232fca9 (patch) | |
tree | cdd4669f62eb9c6ff4ea173f6f04012c0ac8312f /libhb/work.c | |
parent | 2a42c28786f15f007db8e03fc79ec8577a446faa (diff) |
CLI: Add support for naming audio tracks to the HandBrakeCLI, thanks to LePetomane for the patch.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1825 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/work.c b/libhb/work.c index 64b061718..91da97aea 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -285,7 +285,8 @@ hb_display_job_info( hb_job_t * job ) { audio = hb_list_item( title->list_audio, i ); - hb_log( " * audio track %d", audio->config.out.track ); + hb_log( " * audio track %d (%s)", audio->config.out.track, + audio->config.out.name ? audio->config.out.name : "no-name" ); hb_log( " + decoder: %s (track %d, id %x)", audio->config.lang.description, audio->config.in.track, audio->id ); |