summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/sox/files/sox-14.4.1-ffmpeg24.patch')
-rw-r--r--media-sound/sox/files/sox-14.4.1-ffmpeg24.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/media-sound/sox/files/sox-14.4.1-ffmpeg24.patch b/media-sound/sox/files/sox-14.4.1-ffmpeg24.patch
deleted file mode 100644
index 88653ccbc817..000000000000
--- a/media-sound/sox/files/sox-14.4.1-ffmpeg24.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: sox-14.4.1/src/ffmpeg.c
-===================================================================
---- sox-14.4.1.orig/src/ffmpeg.c
-+++ sox-14.4.1/src/ffmpeg.c
-@@ -263,8 +263,12 @@ static int stopread(sox_format_t * ft)
- if (ffmpeg->audio_stream >= 0)
- stream_component_close(ffmpeg, ffmpeg->audio_stream);
- if (ffmpeg->ctxt) {
-+#if LIBAVFORMAT_VERSION_INT > AV_VERSION_INT(53,25,0)
-+ avformat_close_input(&ffmpeg->ctxt);
-+#else
- av_close_input_file(ffmpeg->ctxt);
- ffmpeg->ctxt = NULL; /* safety */
-+#endif
- }
-
- free(ffmpeg->audio_buf_raw);