Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Gladstone <philipjsg@users.sourceforge.net>2002-05-09 05:16:45 +0400
committerPhilip Gladstone <philipjsg@users.sourceforge.net>2002-05-09 05:16:45 +0400
commit7ac13f0c7ebe66dd11db8d67b9a38881fb86d112 (patch)
treea1c9c7628bec86b67532c28eada55d2804d8140a
parent53cafac09ca6af7a915c6507ccd410d3655e59fe (diff)
* Change extern inline to static inline. This improves compiling without optimization.
Originally committed as revision 461 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libav/avio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libav/avio.h b/libav/avio.h
index cfe9ee340a..03b12afd61 100644
--- a/libav/avio.h
+++ b/libav/avio.h
@@ -112,13 +112,13 @@ unsigned int get_be16(ByteIOContext *s);
unsigned int get_be32(ByteIOContext *s);
UINT64 get_be64(ByteIOContext *s);
-extern inline int url_is_streamed(ByteIOContext *s)
+static inline int url_is_streamed(ByteIOContext *s)
{
return s->is_streamed;
}
/* get the prefered packet size of the device. All I/Os should be done
by multiple of this size */
-extern inline int url_get_packet_size(ByteIOContext *s)
+static inline int url_get_packet_size(ByteIOContext *s)
{
return s->packet_size;
}