summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Simon <jsimon13@yahoo.fr>2003-11-07 20:01:02 +0000
committerJeremy Simon <jsimon13@yahoo.fr>2003-11-07 20:01:02 +0000
commite4b12dd3ba2ad33e0565ec4c111c6709a6315d37 (patch)
tree1eca66fd06a9da708ee86baeb1104f31cad8829e
parentcb90622b41d826e7e316ce1e3c16e5a5c9d028ef (diff)
downloadgstreamer-plugins-bad-e4b12dd3ba2ad33e0565ec4c111c6709a6315d37.tar.gz
We don't need to patch wmadec.c and avcodec.h anymore
Original commit message from CVS: We don't need to patch wmadec.c and avcodec.h anymore
-rw-r--r--gst-libs/ext/ffmpeg/patch/function.patch52
1 files changed, 0 insertions, 52 deletions
diff --git a/gst-libs/ext/ffmpeg/patch/function.patch b/gst-libs/ext/ffmpeg/patch/function.patch
index 06ee65f31..96aebe50e 100644
--- a/gst-libs/ext/ffmpeg/patch/function.patch
+++ b/gst-libs/ext/ffmpeg/patch/function.patch
@@ -129,55 +129,3 @@ diff -u -u -r1.23 wav.c
fourxm_init();
#ifdef CONFIG_ENCODERS
flvenc_init();
-Index: ffmpeg/libavcodec/avcodec.h
-===================================================================
-RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/avcodec.h,v
-retrieving revision 1.237
-diff -a -u -r1.237 avcodec.h
---- ffmpeg/libavcodec/avcodec.h 22 Oct 2003 18:26:38 -0000 1.237
-+++ ffmpeg/libavcodec/avcodec.h 5 Nov 2003 22:54:53 -0000
-@@ -1341,6 +1341,9 @@
- * - decoding: unused
- */
- int lmax;
-+
-+ /* Added for ffmpeg gstreamer plugin (ffdec_wmav1 & ffdec_wmav2) */
-+ int wma_flags1, wma_flags2;
-
- } AVCodecContext;
-
-Index: ffmpeg/libavcodec/wmadec.c
-===================================================================
-RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/wmadec.c,v
-retrieving revision 1.18
-diff -a -u -r1.18 wmadec.c
---- ffmpeg/libavcodec/wmadec.c 4 Jul 2003 20:32:04 -0000 1.18
-+++ ffmpeg/libavcodec/wmadec.c 5 Nov 2003 22:56:01 -0000
-@@ -214,9 +214,15 @@
- s->version = 2;
- }
-
-- /* extract flag infos */
-- flags1 = 0;
-- flags2 = 0;
-+ /* extract flag infos
-+ * Get wma flags from context : modification for gstreamer
-+ * ffmpegdec get these values from sink caps and put them in the context
-+ */
-+ flags1 = avctx->wma_flags1;
-+ flags2 = avctx->wma_flags2;
-+
-+ /* The gstreamer asfdemux computed already these flags */
-+ /*
- extradata = avctx->extradata;
- if (s->version == 1 && avctx->extradata_size >= 4) {
- flags1 = extradata[0] | (extradata[1] << 8);
-@@ -225,7 +231,7 @@
- flags1 = extradata[0] | (extradata[1] << 8) |
- (extradata[2] << 16) | (extradata[3] << 24);
- flags2 = extradata[4] | (extradata[5] << 8);
-- }
-+ }*/
- s->use_exp_vlc = flags2 & 0x0001;
- s->use_bit_reservoir = flags2 & 0x0002;
- s->use_variable_block_len = flags2 & 0x0004;