diff options
author | Rodeo <[email protected]> | 2011-08-16 15:45:41 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2011-08-16 15:45:41 +0000 |
commit | 1bd57899117e7b796d95cade71520dc87984a197 (patch) | |
tree | e07b7b5983af101897c3f1d5f18e727bd573ca76 /test | |
parent | 356f4d167d59fb486541c280867f1b27a7d05690 (diff) |
Blu-ray: display playlist number in log, CLI scan output, and title drop-down.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4182 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c index 55144dd3a..9f11ef7ae 100644 --- a/test/test.c +++ b/test/test.c @@ -398,6 +398,10 @@ static void PrintTitleInfo( hb_title_t * title ) title->vts, title->ttn, title->cell_start, title->cell_end, title->block_count ); } + else if( title->type == HB_BD_TYPE ) + { + fprintf( stderr, " + playlist: %05d.MPLS\n", title->playlist ); + } if (title->angle_count > 1) fprintf( stderr, " + angle(s) %d\n", title->angle_count ); fprintf( stderr, " + duration: %02d:%02d:%02d\n", |