summaryrefslogtreecommitdiff
path: root/extra/audacity
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-17 19:27:42 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-17 19:27:42 +0000
commit049af7a95b01eba14d33586ad5852dddaf107e53 (patch)
tree3f89f26ef1ec32f03b8842f97077b7d3459ba6d0 /extra/audacity
parent84837d89991e1e82e5aef8e297541c572ebf2efa (diff)
Fixed
Diffstat (limited to 'extra/audacity')
-rw-r--r--extra/audacity/ChangeLog45
-rw-r--r--extra/audacity/audacity-ffmpeg.patch31
2 files changed, 0 insertions, 76 deletions
diff --git a/extra/audacity/ChangeLog b/extra/audacity/ChangeLog
deleted file mode 100644
index 3482dda5b..000000000
--- a/extra/audacity/ChangeLog
+++ /dev/null
@@ -1,45 +0,0 @@
-2010-04-10 Andrea Scarpino <andrea@archlinux.org>
-
- * audacity 1.3.12-2
- * fixed soundtouch dependence
-
-2010-04-10 Andrea Scarpino <andrea@archlinux.org>
-
- * audacity 1.3.12-1
- * Upstream update
-
-2010-01-23 Eric Belanger <eric@archlinux.org>
-
- * audacity 1.3.11-1
- * Upstream update
-
-2009-12-03 Eric Belanger <eric@archlinux.org>
-
- * audacity 1.3.10-1
- * Upstream update
-
-2009-09-02 Eric Belanger <eric@archlinux.org>
-
- * audacity 1.3.9-1
- * Upstream update
- * Fixed icon location
-
-2009-07-17 Eric Belanger <eric@archlinux.org>
-
- * audacity 1.3.8-1
- * Upstream update
- * Updated source url
- * Improved description
-
-2009-01-30 Eric Belanger <eric@archlinux.org>
-
- * audacity 1.3.7-1
- * Upstream update
- * Updated source url
-
-2008-12-07 Eric Belanger <eric@archlinux.org>
-
- * audacity 1.3.6-2
- * Added install scriptlet to update mime database (close FS#11398)
- * Added soundtouch support (close FS#9056)
- * Added ChangeLog
diff --git a/extra/audacity/audacity-ffmpeg.patch b/extra/audacity/audacity-ffmpeg.patch
deleted file mode 100644
index cf0103c61..000000000
--- a/extra/audacity/audacity-ffmpeg.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- src/FFmpeg.cpp.original 2010-04-14 14:59:48.000000000 +0200
-+++ src/FFmpeg.cpp 2010-04-14 15:25:52.136755669 +0200
-@@ -341,7 +341,7 @@
- }
- // Otherwize, resort to extension matching if available
- else if (fmt1->extensions) {
-- if (FFmpegLibsInst->match_ext(filename, fmt1->extensions)) {
-+ if (FFmpegLibsInst->av_match_ext(filename, fmt1->extensions)) {
- score = 50;
- }
- }
-@@ -814,7 +814,7 @@
- INITDYN(avformat,av_open_input_file);
- INITDYN(avformat,av_open_input_stream);
- INITDYN(avformat,get_buffer);
-- INITDYN(avformat,match_ext);
-+ INITDYN(avformat,av_match_ext);
-
- #if FFMPEG_STABLE
- INITDYN(avformat,av_init_packet);
---- src/FFmpeg.h.original 2010-04-14 14:59:48.000000000 +0200
-+++ src/FFmpeg.h 2010-04-14 15:26:39.932590241 +0200
-@@ -222,7 +222,7 @@
- AVStream* (*av_new_stream) (AVFormatContext *s, int id);
- AVFormatContext* (*av_alloc_format_context) (void);
- AVOutputFormat* (*guess_format) (const char *short_name, const char *filename, const char *mime_type);
-- int (*match_ext) (const char *filename, const char *extensions);
-+ int (*av_match_ext) (const char *filename, const char *extensions);
- int (*av_write_trailer) (AVFormatContext *s);
- int (*av_interleaved_write_frame) (AVFormatContext *s, AVPacket *pkt);
- int (*av_write_frame) (AVFormatContext *s, AVPacket *pkt);