diff options
author | ponce <matteo.bernardini@gmail.com> | 2011-07-19 09:04:49 -0300 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-07-21 22:52:12 -0500 |
commit | da3d72fa1bb68970e05cf57e9a459d3539c33089 (patch) | |
tree | f6678f8ee314fce6fc62f8b705b0f8ba0a8e9f7b /audio/audacity/audacity-src-1.3.12-beta-avformat-api-change.patch | |
parent | 2a8bbae3f31ba3932ea35dffa990d7d8e82ff923 (diff) | |
download | slackbuilds-da3d72fa1bb68970e05cf57e9a459d3539c33089.tar.gz |
audio/audacity: Updated for version 1.3.13.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'audio/audacity/audacity-src-1.3.12-beta-avformat-api-change.patch')
-rw-r--r-- | audio/audacity/audacity-src-1.3.12-beta-avformat-api-change.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/audio/audacity/audacity-src-1.3.12-beta-avformat-api-change.patch b/audio/audacity/audacity-src-1.3.12-beta-avformat-api-change.patch deleted file mode 100644 index e6e8315598..0000000000 --- a/audio/audacity/audacity-src-1.3.12-beta-avformat-api-change.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff -p -up audacity-src-1.3.12-beta/src/FFmpeg.cpp~ audacity-src-1.3.12-beta/src/FFmpeg.cpp ---- audacity-src-1.3.12-beta/src/FFmpeg.cpp~ 2010-03-30 13:28:54.000000000 +0200 -+++ audacity-src-1.3.12-beta/src/FFmpeg.cpp 2010-05-07 11:17:29.000000000 +0200 -@@ -356,7 +356,7 @@ int ufile_fopen_input(AVFormatContext ** - } - // 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; - } - } -@@ -829,7 +829,7 @@ bool FFmpegLibs::InitLibs(wxString libpa - 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); -diff -p -up audacity-src-1.3.12-beta/src/FFmpeg.h~ audacity-src-1.3.12-beta/src/FFmpeg.h ---- audacity-src-1.3.12-beta/src/FFmpeg.h~ 2010-03-30 13:28:54.000000000 +0200 -+++ audacity-src-1.3.12-beta/src/FFmpeg.h 2010-05-07 11:17:45.000000000 +0200 -@@ -224,7 +224,7 @@ public: - 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); |