Commit 572f992e authored by Michael Niedermayer's avatar Michael Niedermayer

libavformat/avio.h compilation problem in VisualC++ by (lethean at realtime dot ssu dot ac dot kr)

Originally committed as revision 2182 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e8d83e1c
...@@ -109,7 +109,11 @@ int url_feof(ByteIOContext *s); ...@@ -109,7 +109,11 @@ int url_feof(ByteIOContext *s);
#define URL_EOF (-1) #define URL_EOF (-1)
int url_fgetc(ByteIOContext *s); int url_fgetc(ByteIOContext *s);
#ifdef __GNUC__
int url_fprintf(ByteIOContext *s, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); int url_fprintf(ByteIOContext *s, const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
#else
int url_fprintf(ByteIOContext *s, const char *fmt, ...);
#endif
char *url_fgets(ByteIOContext *s, char *buf, int buf_size); char *url_fgets(ByteIOContext *s, char *buf, int buf_size);
void put_flush_packet(ByteIOContext *s); void put_flush_packet(ByteIOContext *s);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment