summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authorzuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-03 08:48:44 +0000
committerzuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-03 08:48:44 +0000
commitd36bb9b2016367a7861c1b6b2d4235e74c6a76ea (patch)
treef7e79177e9695dc78df915381f334208e6de616d /libmpdemux
parent2770891a38a8c26090f427c2932d9076fad29621 (diff)
downloadmpv-d36bb9b2016367a7861c1b6b2d4235e74c6a76ea.tar.bz2
mpv-d36bb9b2016367a7861c1b6b2d4235e74c6a76ea.tar.xz
Remove unused parameter for mp_msg
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23458 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/parse_es.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/parse_es.c b/libmpdemux/parse_es.c
index 3f09329b7d..d907d28422 100644
--- a/libmpdemux/parse_es.c
+++ b/libmpdemux/parse_es.c
@@ -26,7 +26,7 @@ int sync_video_packet(demux_stream_t *ds){
int skipped=0;
if (!demux_pattern_3(ds, NULL, MAX_SYNCLEN, &skipped, 0x100)) {
if (skipped == MAX_SYNCLEN)
- mp_msg(MSGT_DEMUXER, MSGL_ERR, "parse_es: could not sync video stream!\n", skipped);
+ mp_msg(MSGT_DEMUXER, MSGL_ERR, "parse_es: could not sync video stream!\n");
goto eof_out;
}
next_nal = demux_getc(ds);