1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-04 21:27:58 +00:00

10l, variable declarations must be before mp_msg.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14263 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2004-12-28 11:16:23 +00:00
parent c3d77725cc
commit eb7911b7ad

View File

@ -299,10 +299,10 @@ asf_streaming_parse_header(int fd, streaming_ctrl_t* streaming_ctrl) {
pos = find_asf_guid(buffer, asf_stream_group_guid, start, size);
if (pos >= 0) {
// stream bitrate properties object
mp_msg(MSGT_NETWORK, MSGL_V, "Stream bitrate properties object\n");
int stream_count;
char *ptr = &buffer[pos];
mp_msg(MSGT_NETWORK, MSGL_V, "Stream bitrate properties object\n");
stream_count = le2me_16(*(uint16_t*)ptr);
ptr += sizeof(uint16_t);
if (ptr > &buffer[size]) goto len_err_out;