summaryrefslogtreecommitdiffstats
path: root/gst-libs/ext/ffmpeg/patch/function.patch
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-02-13 15:11:50 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-02-13 15:11:50 +0000
commitff387293094408d34a50c043d50180aa99ba582e (patch)
treeb024eecabe3c8f20a830c0f8d20c46269c916136 /gst-libs/ext/ffmpeg/patch/function.patch
parent742acf7e861b42ade480b8f35351c9f49c883747 (diff)
downloadgst-plugins-bad-ff387293094408d34a50c043d50180aa99ba582e.tar.gz
gst-plugins-bad-ff387293094408d34a50c043d50180aa99ba582e.tar.bz2
gst-plugins-bad-ff387293094408d34a50c043d50180aa99ba582e.zip
move ffmpeg stuff to gst-ffmpeg module
Original commit message from CVS: move ffmpeg stuff to gst-ffmpeg module
Diffstat (limited to 'gst-libs/ext/ffmpeg/patch/function.patch')
-rw-r--r--gst-libs/ext/ffmpeg/patch/function.patch131
1 files changed, 0 insertions, 131 deletions
diff --git a/gst-libs/ext/ffmpeg/patch/function.patch b/gst-libs/ext/ffmpeg/patch/function.patch
deleted file mode 100644
index 96aebe50..00000000
--- a/gst-libs/ext/ffmpeg/patch/function.patch
+++ /dev/null
@@ -1,131 +0,0 @@
-Index: ffmpeg/libavcodec/i386/mpegvideo_mmx.c
-===================================================================
-RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/i386/mpegvideo_mmx.c,v
-retrieving revision 1.25
-diff -u -u -r1.25 mpegvideo_mmx.c
---- ffmpeg/libavcodec/i386/mpegvideo_mmx.c 14 May 2003 15:12:13 -0000 1.25
-+++ ffmpeg/libavcodec/i386/mpegvideo_mmx.c 11 Sep 2003 19:34:45 -0000
-@@ -488,6 +488,7 @@
- }
- }
-
-+#if 0
- #undef HAVE_MMX2
- #define RENAME(a) a ## _MMX
- #include "mpegvideo_mmx_template.c"
-@@ -496,6 +497,7 @@
- #undef RENAME
- #define RENAME(a) a ## _MMX2
- #include "mpegvideo_mmx_template.c"
-+#endif
-
- void MPV_common_init_mmx(MpegEncContext *s)
- {
-@@ -508,6 +510,7 @@
-
- draw_edges = draw_edges_mmx;
-
-+#if 0
- if(dct_algo==FF_DCT_AUTO || dct_algo==FF_DCT_MMX){
- if(mm_flags & MM_MMXEXT){
- s->dct_quantize= dct_quantize_MMX2;
-@@ -515,5 +518,6 @@
- s->dct_quantize= dct_quantize_MMX;
- }
- }
-+#endif
- }
- }
-Index: ffmpeg/libavcodec/i386/mpegvideo_mmx_template.c
-===================================================================
-RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/i386/mpegvideo_mmx_template.c,v
-retrieving revision 1.17
-diff -u -u -r1.17 mpegvideo_mmx_template.c
---- ffmpeg/libavcodec/i386/mpegvideo_mmx_template.c 13 May 2003 08:21:35 -0000 1.17
-+++ ffmpeg/libavcodec/i386/mpegvideo_mmx_template.c 11 Sep 2003 19:34:47 -0000
-@@ -122,7 +122,7 @@
- "movd %%mm3, %%eax \n\t"
- "movzbl %%al, %%eax \n\t" // last_non_zero_p1
- : "+a" (last_non_zero_p1)
-- : "r" (block+64), "r" (qmat), "r" (bias),
-+ : "b" (block+64), "r" (qmat), "r" (bias),
- "r" (inv_zigzag_direct16+64), "r" (temp_block+64)
- );
- // note the asm is split cuz gcc doesnt like that many operands ...
-Index: ffmpeg/libavformat/avformat.h
-===================================================================
-RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/avformat.h,v
-retrieving revision 1.55
-diff -u -u -r1.55 avformat.h
---- ffmpeg/libavformat/avformat.h 4 Jul 2003 23:48:20 -0000 1.55
-+++ ffmpeg/libavformat/avformat.h 11 Sep 2003 19:34:48 -0000
-@@ -317,7 +317,7 @@
- int amr_init(void);
-
- /* wav.c */
--int wav_init(void);
-+int avf_wav_init(void);
-
- /* raw.c */
- int raw_init(void);
-@@ -326,7 +326,7 @@
- int ogg_init(void);
-
- /* dv.c */
--int dv_init(void);
-+int avf_dv_init(void);
-
- /* ffm.c */
- int ffm_init(void);
-Index: ffmpeg/libavformat/dv.c
-===================================================================
-RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/dv.c,v
-retrieving revision 1.9
-diff -u -u -r1.9 dv.c
---- ffmpeg/libavformat/dv.c 23 Apr 2003 02:04:40 -0000 1.9
-+++ ffmpeg/libavformat/dv.c 11 Sep 2003 19:34:48 -0000
-@@ -138,7 +138,7 @@
- dv_write_trailer,
- };
-
--int dv_init(void)
-+int avf_dv_init(void)
- {
- av_register_input_format(&dv_iformat);
- av_register_output_format(&dv_oformat);
-Index: ffmpeg/libavformat/wav.c
-===================================================================
-RCS file: /cvsroot/ffmpeg/ffmpeg/libavformat/wav.c,v
-retrieving revision 1.23
-diff -u -u -r1.23 wav.c
---- ffmpeg/libavformat/wav.c 12 Mar 2003 18:45:50 -0000 1.23
-+++ ffmpeg/libavformat/wav.c 11 Sep 2003 19:34:52 -0000
-@@ -334,7 +334,7 @@
- wav_write_trailer,
- };
-
--int wav_init(void)
-+int avf_wav_init(void)
- {
- av_register_input_format(&wav_iformat);
- av_register_output_format(&wav_oformat);
---- ffmpeg/libavformat/allformats.c 2003-10-26 12:06:32.000000000 +0100
-+++ ffmpeg/libavformat/allformats.c 2003-10-26 12:06:04.000000000 +0100
-@@ -45,7 +45,7 @@
- avienc_init();
- #endif //CONFIG_ENCODERS
- avidec_init();
-- wav_init();
-+ avf_wav_init();
- swf_init();
- au_init();
- #ifdef CONFIG_ENCODERS
-@@ -56,7 +56,7 @@
- movenc_init();
- jpeg_init();
- #endif //CONFIG_ENCODERS
-- dv_init();
-+ avf_dv_init();
- fourxm_init();
- #ifdef CONFIG_ENCODERS
- flvenc_init();