diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-07-17 00:28:12 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-07-17 00:28:12 +0000 |
commit | c6ec28b18cd1eb7d39e6163137367f2d1c62aa7c (patch) | |
tree | a0055aeb706ad0230cf7bc7cc8b48d582057f9d8 /libavformat/utils.c | |
parent | 6e5c1877b2a93dd63610a1504e95bddc891424f3 (diff) | |
download | ffmpeg-c6ec28b18cd1eb7d39e6163137367f2d1c62aa7c.tar.gz |
DVB subtitle decoder by (Ian Caulfield: imc25, cam ac uk)
Originally committed as revision 4448 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 6e7cd3e58c..37392445ee 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2508,6 +2508,9 @@ void dump_format(AVFormatContext *ic, if (flags & AVFMT_SHOW_IDS) { av_log(NULL, AV_LOG_INFO, "[0x%x]", st->id); } + if (strlen(st->language) > 0) { + av_log(NULL, AV_LOG_INFO, "(%s)", st->language); + } av_log(NULL, AV_LOG_INFO, ": %s\n", buf); } } |