From bd22891d633e16d7aedddadd2e4dd716f615d847 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Fri, 10 Mar 2017 12:56:55 -0700 Subject: 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 --- test/test.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'test') 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) -- cgit v1.2.3