diff options
Diffstat (limited to 'multimedia/gstreamer-plugins/files')
3 files changed, 11 insertions, 63 deletions
diff --git a/multimedia/gstreamer-plugins/files/patch-configure b/multimedia/gstreamer-plugins/files/patch-configure deleted file mode 100644 index 7b664a7cf..000000000 --- a/multimedia/gstreamer-plugins/files/patch-configure +++ /dev/null @@ -1,27 +0,0 @@ ---- configure.orig Sat Nov 15 00:58:40 2003 -+++ configure Sat Nov 15 00:59:23 2003 -@@ -34136,18 +34136,18 @@ - mk_MAJVER=`echo 0.4.4 | cut -d"." -f1` - mk_MINVER=`echo 0.4.4 | cut -d"." -f2` - mk_RELVER=`echo 0.4.4 | cut -d"." -f3` -- mver_ok=`sed 's;\.;\ ;g' < conf.matroskatest | (read -a mver -- if test ${mver[0]} -gt $mk_MAJVER ; then -+ mver_ok=`sed 's;\.;\ ;g' < conf.matroskatest | (read mver0 mver1 mver2 -+ if test ${mver0} -gt $mk_MAJVER ; then - mver_ok=1 -- elif test ${mver[0]} -lt $mk_MAJVER ; then -+ elif test ${mver0} -lt $mk_MAJVER ; then - mver_ok=0 - else -- if test ${mver[1]} -gt $mk_MINVER ; then -+ if test ${mver1} -gt $mk_MINVER ; then - mver_ok=1 -- elif test ${mver[1]} -lt $mk_MINVER ; then -+ elif test ${mver1} -lt $mk_MINVER ; then - mver_ok=0 - else -- if test ${mver[2]} -ge $mk_RELVER ; then -+ if test ${mver2} -ge $mk_RELVER ; then - mver_ok=1 - else - mver_ok=0 diff --git a/multimedia/gstreamer-plugins/files/patch-ext_ffmpeg_gstffmpegcodecmap.c b/multimedia/gstreamer-plugins/files/patch-ext_ffmpeg_gstffmpegcodecmap.c deleted file mode 100644 index 9f518be88..000000000 --- a/multimedia/gstreamer-plugins/files/patch-ext_ffmpeg_gstffmpegcodecmap.c +++ /dev/null @@ -1,36 +0,0 @@ ---- ext/ffmpeg/gstffmpegcodecmap.c.orig Sat Nov 15 02:22:47 2003 -+++ ext/ffmpeg/gstffmpegcodecmap.c Sat Nov 15 02:22:27 2003 -@@ -44,7 +44,7 @@ - "height", GST_PROPS_INT (context->height),\ - "framerate", GST_PROPS_FLOAT ( \ - 1.*context->frame_rate/ \ -- context->frame_rate_base), \ -+ context->frame_rate_base) , \ - ##props) \ - : \ - GST_CAPS_NEW (name, \ -@@ -52,7 +52,7 @@ - "width", GST_PROPS_INT_RANGE (16, 4096), \ - "height", GST_PROPS_INT_RANGE (16, 4096), \ - "framerate", GST_PROPS_FLOAT_RANGE (0, \ -- G_MAXFLOAT), \ -+ G_MAXFLOAT) , \ - ##props) - - /* same for audio - now with channels/sample rate -@@ -63,13 +63,13 @@ - GST_CAPS_NEW (name, \ - mimetype, \ - "rate", GST_PROPS_INT (context->sample_rate), \ -- "channels", GST_PROPS_INT (context->channels), \ -+ "channels", GST_PROPS_INT (context->channels) , \ - ##props) \ - : \ - GST_CAPS_NEW (name, \ - mimetype, \ - "rate", GST_PROPS_INT_RANGE (8000, 96000), \ -- "channels", GST_PROPS_INT_RANGE (1, 2), \ -+ "channels", GST_PROPS_INT_RANGE (1, 2) , \ - ##props) - - /* Convert a FFMPEG codec ID and optional AVCodecContext diff --git a/multimedia/gstreamer-plugins/files/patch-gst-libs_ext_ffmpeg_Makefile.in b/multimedia/gstreamer-plugins/files/patch-gst-libs_ext_ffmpeg_Makefile.in new file mode 100644 index 000000000..2cc654fbf --- /dev/null +++ b/multimedia/gstreamer-plugins/files/patch-gst-libs_ext_ffmpeg_Makefile.in @@ -0,0 +1,11 @@ +--- gst-libs/ext/ffmpeg/Makefile.in.orig Tue Nov 25 02:24:22 2003 ++++ gst-libs/ext/ffmpeg/Makefile.in Tue Nov 25 02:24:35 2003 +@@ -809,7 +809,7 @@ + libavformat_la-file.lo libavformat_la-flvdec.lo \ + libavformat_la-flvenc.lo libavformat_la-framehook.lo \ + libavformat_la-gif.lo libavformat_la-gifdec.lo \ +- libavformat_la-grab.lo libavformat_la-idcin.lo \ ++ libavformat_la-idcin.lo \ + libavformat_la-idroq.lo libavformat_la-img.lo \ + libavformat_la-ipmovie.lo libavformat_la-jpeg.lo \ + libavformat_la-mov.lo libavformat_la-movenc.lo \ |