[FFmpeg-devel] [PATCH] Fix implicit cast warning in libavformat/rtpdec_asf.c

Eli Friedman eli.friedman
Sun Jun 27 02:59:44 CEST 2010


Patch attached; the warning fixed is from line 207, in the call to
url_close_dyn_buf.

-Eli
-------------- next part --------------
Index: libavformat/rtpdec_asf.c
===================================================================
--- libavformat/rtpdec_asf.c	(revision 23802)
+++ libavformat/rtpdec_asf.c	(working copy)
@@ -143,7 +143,7 @@
 
 struct PayloadContext {
     ByteIOContext *pktbuf, pb;
-    char *buf;
+    uint8_t *buf;
 };
 
 /**



More information about the ffmpeg-devel mailing list