[MPlayer-cvslog] CVS: main/libmpdemux asf_streaming.c,1.50,1.51
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Tue Dec 28 12:16:26 CET 2004
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv21768
Modified Files:
asf_streaming.c
Log Message:
10l, variable declarations must be before mp_msg.
Index: asf_streaming.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/asf_streaming.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- asf_streaming.c 25 Dec 2004 11:31:31 -0000 1.50
+++ asf_streaming.c 28 Dec 2004 11:16:23 -0000 1.51
@@ -299,10 +299,10 @@
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;
More information about the MPlayer-cvslog
mailing list