forked from pool/audacity
Accepting request 40703 from home:RedDwarf:branches:multimedia:apps
Copy from home:RedDwarf:branches:multimedia:apps/audacity via accept of submit request 40703 revision 4. Request was accepted with message: Reviewed ok OBS-URL: https://build.opensuse.org/request/show/40703 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=40
This commit is contained in:
parent
00b57e0e4c
commit
7d1c83f21c
35
audacity-ffmpeg_match_ext.patch
Normal file
35
audacity-ffmpeg_match_ext.patch
Normal file
@ -0,0 +1,35 @@
|
||||
Index: src/FFmpeg.cpp
|
||||
===================================================================
|
||||
--- src/FFmpeg.cpp.orig
|
||||
+++ src/FFmpeg.cpp
|
||||
@@ -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);
|
||||
Index: src/FFmpeg.h
|
||||
===================================================================
|
||||
--- src/FFmpeg.h.orig
|
||||
+++ src/FFmpeg.h
|
||||
@@ -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);
|
17
audacity-no_exact_ffmpeg_version.patch
Normal file
17
audacity-no_exact_ffmpeg_version.patch
Normal file
@ -0,0 +1,17 @@
|
||||
Index: src/FFmpeg.cpp
|
||||
===================================================================
|
||||
--- src/FFmpeg.cpp.orig
|
||||
+++ src/FFmpeg.cpp
|
||||
@@ -895,9 +895,9 @@ bool FFmpegLibs::InitLibs(wxString libpa
|
||||
mAVFormatVersion = wxString::Format(wxT("%d.%d.%d"),avfver >> 16 & 0xFF, avfver >> 8 & 0xFF, avfver & 0xFF);
|
||||
mAVUtilVersion = wxString::Format(wxT("%d.%d.%d"),avuver >> 16 & 0xFF, avuver >> 8 & 0xFF, avuver & 0xFF);
|
||||
|
||||
- wxLogMessage(wxT("AVCodec version 0x%06x - %s (built against 0x%06x - %s)"),avcver,mAVCodecVersion.c_str(),LIBAVCODEC_VERSION_INT,wxString::FromUTF8(AV_STRINGIFY(LIBAVCODEC_VERSION)).c_str());
|
||||
- wxLogMessage(wxT("AVFormat version 0x%06x - %s (built against 0x%06x - %s)"),avfver,mAVFormatVersion.c_str(),LIBAVFORMAT_VERSION_INT,wxString::FromUTF8(AV_STRINGIFY(LIBAVFORMAT_VERSION)).c_str());
|
||||
- wxLogMessage(wxT("AVUtil version 0x%06x - %s (built against 0x%06x - %s)"),avuver,mAVUtilVersion.c_str(),LIBAVUTIL_VERSION_INT,wxString::FromUTF8(AV_STRINGIFY(LIBAVUTIL_VERSION)).c_str());
|
||||
+ wxLogMessage(wxT("AVCodec version 0x%06x - %s (built against %s)"),avcver,mAVCodecVersion.c_str(),wxString::FromUTF8(AV_STRINGIFY(LIBAVCODEC_VERSION_MAYOR)).c_str());
|
||||
+ wxLogMessage(wxT("AVFormat version 0x%06x - %s (built against %s)"),avfver,mAVFormatVersion.c_str(),wxString::FromUTF8(AV_STRINGIFY(LIBAVFORMAT_VERSION_MAYOR)).c_str());
|
||||
+ wxLogMessage(wxT("AVUtil version 0x%06x - %s (built against %s)"),avuver,mAVUtilVersion.c_str(),wxString::FromUTF8(AV_STRINGIFY(LIBAVUTIL_VERSION_MAYOR)).c_str());
|
||||
|
||||
int avcverdiff = (avcver >> 16 & 0xFF) - int(LIBAVCODEC_VERSION_MAJOR);
|
||||
int avfverdiff = (avfver >> 16 & 0xFF) - int(LIBAVFORMAT_VERSION_MAJOR);
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed May 26 21:59:23 UTC 2010 - cmorve69@yahoo.es
|
||||
|
||||
- Fix build-compare
|
||||
- Fix ffmpeg support
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 17 15:00:02 UTC 2010 - cmorve69@yahoo.es
|
||||
|
||||
|
@ -54,6 +54,10 @@ Patch0: %{name}-no_buildstamp.patch
|
||||
Patch5: %{name}-retval.patch
|
||||
Patch12: %{name}-audiodevdefaults.patch
|
||||
Patch13: audacity-nomac.patch
|
||||
# PATCH-FIX-OPENSUSE %{name}-ffmpeg_match_ext.patch cmorve69@yahoo.es -- Fix ffmpeg support with versions after 2010-03-08
|
||||
Patch14: %{name}-ffmpeg_match_ext.patch
|
||||
# PATCH-FIX-OPENSUSE %{name}-no_exact_ffmpeg_version.patch cmorve69@yahoo.es -- remove referene to minor/micro ffmpeg versions so build-compare can do its work
|
||||
Patch15: %{name}-no_exact_ffmpeg_version.patch
|
||||
|
||||
%description
|
||||
Audacity is a program that manipulates digital audio wave forms. In
|
||||
@ -68,6 +72,8 @@ physical memory size of your computer.
|
||||
%patch5
|
||||
%patch12 -p1
|
||||
%patch13 -p1
|
||||
%patch14
|
||||
%patch15
|
||||
|
||||
%build
|
||||
#%{?suse_update_config:%{suse_update_config -f . lib-src/*/.}}
|
||||
|
Loading…
Reference in New Issue
Block a user