diff options
author | Steve Dibb <beandog@gentoo.org> | 2007-04-26 16:43:04 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2007-04-26 16:43:04 +0000 |
commit | d0a8c5831975720b6dcc442791baee1d18d93e59 (patch) | |
tree | 552198b5d5f09e491a46248de2067eafdf2445af /media-video/mplayer/files | |
parent | bump to 0.20.1 release (diff) | |
download | historical-d0a8c5831975720b6dcc442791baee1d18d93e59.tar.gz historical-d0a8c5831975720b6dcc442791baee1d18d93e59.tar.bz2 historical-d0a8c5831975720b6dcc442791baee1d18d93e59.zip |
remove old patch
Package-Manager: portage-2.1.2.4
Diffstat (limited to 'media-video/mplayer/files')
-rw-r--r-- | media-video/mplayer/files/mplayer-1.0_pre8-amr-64bit.patch | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/media-video/mplayer/files/mplayer-1.0_pre8-amr-64bit.patch b/media-video/mplayer/files/mplayer-1.0_pre8-amr-64bit.patch deleted file mode 100644 index 43e37dcf4243..000000000000 --- a/media-video/mplayer/files/mplayer-1.0_pre8-amr-64bit.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff -Naur MPlayer-1.0pre8/libavcodec/amr_float/typedef.h MPlayer-1.0pre8-mod/libavcodec/amr_float/typedef.h ---- MPlayer-1.0pre8/libavcodec/amr_float/typedef.h 2003-03-26 14:15:42.000000000 +0100 -+++ MPlayer-1.0pre8-mod/libavcodec/amr_float/typedef.h 2006-07-17 09:43:14.000000000 +0200 -@@ -13,10 +13,12 @@ - #ifndef _TYPEDEF_H
- #define _TYPEDEF_H
-
--typedef char Word8;
--typedef unsigned char UWord8;
--typedef short Word16;
--typedef long Word32;
-+#include <inttypes.h>
-+
-+typedef int8_t Word8;
-+typedef uint8_t UWord8;
-+typedef int16_t Word16;
-+typedef int32_t Word32;
- typedef float Float32;
- typedef double Float64;
-
-diff -Naur MPlayer-1.0pre8/libavcodec/amrwb_float/typedef.h MPlayer-1.0pre8-mod/libavcodec/amrwb_float/typedef.h ---- MPlayer-1.0pre8/libavcodec/amrwb_float/typedef.h 2003-02-18 00:00:02.000000000 +0100 -+++ MPlayer-1.0pre8-mod/libavcodec/amrwb_float/typedef.h 2006-07-17 09:41:02.000000000 +0200 -@@ -7,12 +7,14 @@ - #define typedef_h
-
- /* change these typedef declarations to correspond with your platform */
--typedef char Word8;
--typedef unsigned char UWord8;
--typedef short Word16;
--typedef unsigned short UWord16;
--typedef long Word32;
-+#include <inttypes.h>
-+
-+typedef int8_t Word8;
-+typedef uint8_t UWord8;
-+typedef int16_t Word16;
-+typedef uint16_t UWord16;
-+typedef int32_t Word32;
- typedef double Float64;
- typedef float Float32;
-
--#endif -\ No newline at end of file -+#endif
|