summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2010-07-19 19:27:50 +0100
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2010-07-19 19:27:50 +0100
commit3ed086bfd3deca46445b918806f2e0129bb35ab0 (patch)
tree3f4fbad2afe5978659088b7078d7bd14d4ecdd0c
parentf5c747a4d6c1d01a5c15c5b5837a19ca0b4c8f1c (diff)
downloadxine-lib-3ed086bfd3deca46445b918806f2e0129bb35ab0.tar.gz
xine-lib-3ed086bfd3deca46445b918806f2e0129bb35ab0.tar.bz2
Explicitly report unhandled codecs (in Matroska).
-rw-r--r--src/demuxers/demux_matroska.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demuxers/demux_matroska.c b/src/demuxers/demux_matroska.c
index edce2039d..0f83c73f8 100644
--- a/src/demuxers/demux_matroska.c
+++ b/src/demuxers/demux_matroska.c
@@ -1445,7 +1445,7 @@ static int parse_track_entry(demux_matroska_t *this, matroska_track_t *track) {
track->buf_type = BUF_SPU_HDMV;
init_codec = init_codec_spu;
} else {
- lprintf("unknown codec\n");
+ xprintf(this->stream->xine, XINE_VERBOSITY_DEBUG, "unknown codec %s\n", track->codec_id);
}
if (track->buf_type) {