diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-11-10 11:46:59 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-11-10 11:46:59 +0000 |
commit | b8a78f419dd67cebc70f78e3d183c7eb4ed10c0e (patch) | |
tree | f502064c04d45369a01aa2722ac173b80301b8d3 /libav | |
parent | f11d3f23105f8c7e195990ab2c1728d3dd2f206f (diff) | |
download | ffmpeg-b8a78f419dd67cebc70f78e3d183c7eb4ed10c0e.tar.gz |
reversing header game
MIN/MAX -> FFMIN/FFMAX
Originally committed as revision 1184 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav')
-rw-r--r-- | libav/http.c | 2 | ||||
-rw-r--r-- | libav/rtp.c | 2 | ||||
-rw-r--r-- | libav/rtpproto.c | 2 | ||||
-rw-r--r-- | libav/rtsp.c | 2 | ||||
-rw-r--r-- | libav/tcp.c | 2 | ||||
-rw-r--r-- | libav/udp.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/libav/http.c b/libav/http.c index 64025f2258..7271a6da81 100644 --- a/libav/http.c +++ b/libav/http.c @@ -16,11 +16,11 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <ctype.h> #include <sys/types.h> +#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> diff --git a/libav/rtp.c b/libav/rtp.c index b42065fbea..714787c88b 100644 --- a/libav/rtp.c +++ b/libav/rtp.c @@ -16,11 +16,11 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <sys/types.h> +#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> diff --git a/libav/rtpproto.c b/libav/rtpproto.c index 25b10b8bf2..41823fc829 100644 --- a/libav/rtpproto.c +++ b/libav/rtpproto.c @@ -16,12 +16,12 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <stdarg.h> #include <sys/types.h> +#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> diff --git a/libav/rtsp.c b/libav/rtsp.c index 667a3c095a..81b59f8916 100644 --- a/libav/rtsp.c +++ b/libav/rtsp.c @@ -16,10 +16,10 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include <netinet/in.h> #include "avformat.h" #include <sys/time.h> +#include <netinet/in.h> #include <sys/socket.h> #ifndef __BEOS__ # include <arpa/inet.h> diff --git a/libav/tcp.c b/libav/tcp.c index 6f4c037dcb..61d8665525 100644 --- a/libav/tcp.c +++ b/libav/tcp.c @@ -16,11 +16,11 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <ctype.h> #include <sys/types.h> +#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> diff --git a/libav/udp.c b/libav/udp.c index 6e91a22350..8df93a8a8a 100644 --- a/libav/udp.c +++ b/libav/udp.c @@ -16,10 +16,10 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <sys/types.h> +#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> |