diff options
author | John Stebbins <[email protected]> | 2017-03-10 12:56:55 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2017-03-10 12:56:55 -0700 |
commit | bd22891d633e16d7aedddadd2e4dd716f615d847 (patch) | |
tree | 4194d0fd483759f8e8f5226ac479e5ad193a9ef9 /test | |
parent | 1f6c91c00be0f8f47de1d5c77b945ad6ecd50ec5 (diff) |
subtitles: simplify and shorten subtitle descriptions (#591)
* subtitles: simplify and shorten subtitle descriptions
Generally, it eliminates parens to make things more readable.
I.e. it turns this:
English (Closed Caption)(Wide Screen)(Bitmap)(VOBSUB)
Into this:
English, Closed Caption [Wide Screen, VOBSUB]
* Revise punctuation per BradleyS request
* fix subtitle description formatting
* incorporate suggestions from PR
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/test.c b/test/test.c index 7e40641c1..79995cbfe 100644 --- a/test/test.c +++ b/test/test.c @@ -655,11 +655,7 @@ static void PrintTitleInfo( hb_title_t * title, int feature ) { hb_subtitle_t *subtitle; subtitle = hb_list_item( title->list_subtitle, i ); - fprintf( stderr, " + %d, %s (iso639-2: %s) (%s)(%s)\n", - i + 1, subtitle->lang, - subtitle->iso639_2, - (subtitle->format == TEXTSUB) ? "Text" : "Bitmap", - hb_subsource_name(subtitle->source)); + fprintf(stderr, " + %d, %s\n", i + 1, subtitle->lang); } if(title->detected_interlacing) |