1
mirror of https://github.com/mpv-player/mpv synced 2024-10-02 16:25:33 +02:00

Remove unused parameter for mp_msg

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23458 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
zuxy 2007-06-03 08:48:44 +00:00
parent 2770891a38
commit d36bb9b201

View File

@ -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);