1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-20 06:46:55 +00:00

some debugging code

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15629 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2005-06-03 15:59:24 +00:00
parent dc66a03e44
commit 2b62fcddeb

View File

@ -343,7 +343,20 @@ static int interp_header (uint8_t *header, int header_len)
}
} else {
#if 0
int b = i;
printf ("unknown object (guid: %016llx, %016llx, len: %lld)\n", guid_1, guid_2, length);
for (; b < length; b++)
{
if (isascii(header[b]) || isalpha(header[b]))
printf("%c ", header[b]);
else
printf("%x ", header[b]);
}
printf("\n");
#else
mp_msg(MSGT_NETWORK,MSGL_WARN,"unknown object\n");
#endif
}
// mp_msg(MSGT_NETWORK,MSGL_INFO,"length : %lld\n", length);