Changes of Revision 6
[-] | Changed | lame.spec |
x 1
2 Name: lame 3 Version: 3.98.2 4 %define pkg_version 398-2 5 -Release: 3 6 +Release: 13 7 License: GNU Library General Public License version 2 (LGPL v2) 8 URL: http://lame.sourceforge.net/ 9 Group: Productivity/Multimedia/Sound/Editors and Convertors 10 -Source: http://prdownloads.sourceforge.net/lame/lame-%{pkg_version}.tar.gz 11 +# http://prdownloads.sourceforge.net/lame/lame-%{pkg_version}.tar.gz 12 +Source: lame-%{pkg_version}.tar.bz2 13 # http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/media-sound/lame/files/lame-3.98-shared-frontend.patch 14 Patch2: lame-3.98-shared-frontend.patch 15 +Patch3: lame-398-2_csv.diff.bz2 16 BuildRoot: %{_tmppath}/%{name}-%{version}-build 17 BuildRequires: gcc glibc-devel make pkgconfig ncurses-devel nasm 18 19 +BuildRequires: libsndfile libsndfile-devel flac-devel 20 %if 0%{?suse_version} 21 BuildRequires: gtk-devel 22 %endif 23 %if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} 24 BuildRequires: gtk+-devel 25 %endif 26 - 27 BuildRequires: autoconf automake libtool 28 Requires: libmp3lame%{soname} = %{version}-%{release} 29 30
31 Another goal of the LAME project is to use these improvements for the basis of 32 a patent free audio compression codec for the GNU project. 33 34 + 35 + 36 + 37 +Authors: 38 +-------- 39 + Mark Taylor <mt@mp3dev.org> 40 + 41 %package -n libmp3lame%{soname} 42 Summary: LAME Ain't an MP3 Encoder 43 Group: System/Libraries 44
45 Another goal of the LAME project is to use these improvements for the basis of 46 a patent free audio compression codec for the GNU project. 47 48 + 49 + 50 + 51 +Authors: 52 +-------- 53 + Mark Taylor <mt@mp3dev.org> 54 + 55 %package -n libmp3lame-devel 56 Summary: LAME Ain't an MP3 Encoder 57 Group: Development/Libraries/C and C++ 58
59 Another goal of the LAME project is to use these improvements for the basis of 60 a patent free audio compression codec for the GNU project. 61 62 + 63 + 64 + 65 +Authors: 66 +-------- 67 + Mark Taylor <mt@mp3dev.org> 68 + 69 %package -n lame-mp3rtp 70 Summary: MP3 Encoder for RTP Streaming 71 Group: Productivity/Multimedia/Sound/Editors and Convertors 72
73 74 This package includes "mp3rtp", an MP3 encoder with RTP streaming of the output. 75 76 + 77 + 78 + 79 +Authors: 80 +-------- 81 + Mark Taylor <mt@mp3dev.org> 82 + 83 %package -n lame-mp3x 84 Summary: MP3 Frame Analyzer 85 Group: Productivity/Multimedia/Sound/Visualization 86
87 This package includes "mp3x", an MP3 frame analyzer with a graphical 88 frontend. 89 90 -%debug_package 91 + 92 + 93 + 94 +Authors: 95 +-------- 96 + Mark Taylor <mt@mp3dev.org> 97 + 98 %prep 99 %setup -q -n "lame-%{pkg_version}" 100 %patch2 -p1 101 +%patch3 -p1 102 103 %build 104 autoreconf -fiv 105
106 --enable-brhist \ 107 --disable-debug \ 108 --enable-mp3rtp \ 109 - --enable-mp3x 110 + --enable-mp3x \ 111 + --with-fileio=sndfile \ 112 + --disable-static 113 114 %__make 115 116
117 %files 118 %defattr(-,root,root) 119 %doc LICENSE USAGE COPYING API TODO README* HACKING ChangeLog 120 -%_bindir/lame 121 +%{_bindir}/lame 122 %doc %{_mandir}/man1/lame.1* 123 124 %files -n libmp3lame%{soname} 125
126 %{_includedir}/lame 127 %{_libdir}/libmp3lame.so 128 %{_libdir}/libmp3lame.la 129 -%{_libdir}/libmp3lame.a 130 131 %files -n lame-mp3rtp 132 %defattr(-,root,root) 133
134 %{_bindir}/mp3x 135 136 %changelog 137 +* Thu Feb 25 2010 Carsten Schoene <cs@linux-administrator.com> - 3.98.2-13 138 +- reimport into BS 139 + 140 * Sun Sep 30 2007 Carsten Schoene <cs@linux-administrator.com> 141 - import for SLE_10 build 142 |
||
[+] | Added | lame-398-2_csv.diff.bz2 ^ |
@@ -0,0 +1,26160 @@ +diff -uNr lame-398-2.orig/dshow/Mpegac.cpp lame-398-2/dshow/Mpegac.cpp +--- lame-398-2.orig/dshow/Mpegac.cpp 2008-06-22 20:31:14.000000000 +0200 ++++ lame-398-2/dshow/Mpegac.cpp 2009-05-11 00:06:09.000000000 +0200 +@@ -66,13 +66,60 @@ + #define DEFAULT_VBR_QUALITY 4 + #define DEFAULT_PES 0 + ++#define DEFAULT_FILTER_MERIT MERIT_DO_NOT_USE // Standard compressor merit value ++ ++#define GET_DATARATE(kbps) (kbps * 1000 / 8) ++#define GET_FRAMELENGTH(bitrate, sample_rate) ((WORD)(((sample_rate < 32000 ? 72000 : 144000) * (bitrate))/(sample_rate))) ++#define DECLARE_PTR(type, ptr, expr) type* ptr = (type*)(expr); ++ ++// Create a list of all (or mostly all) of the encoder CBR output capabilities which ++// will be parsed into a list of capabilities used by the IAMStreamConfig Interface ++output_caps_t OutputCapabilities[] = ++{ // {SampleRate, BitRate} ++ { 48000, 320 },{ 48000, 256 },{ 48000, 224 },{ 48000, 192 }, // MPEG 1.0 Spec @ 48KHz ++ { 48000, 160 },{ 48000, 128 },{ 48000, 112 },{ 48000, 96 }, ++ { 48000, 80 },{ 48000, 64 },{ 48000, 56 },{ 48000, 48 }, ++ { 48000, 40 },{ 48000, 32 }, ++ ++ { 24000, 160 },{ 24000, 144 },{ 24000, 128 },{ 24000, 112 }, // MPEG 2.0 Spec @ 24KHz ++ { 24000, 96 },{ 24000, 80 },{ 24000, 64 },{ 24000, 56 }, ++ { 24000, 48 },{ 24000, 40 },{ 24000, 32 },{ 24000, 24 }, ++ { 24000, 16 },{ 24000, 8 }, ++ ++ { 12000, 64 },{ 12000, 56 },{ 12000, 48 },{ 12000, 40 }, // MPEG 2.5 Spec @ 12KHz ++ { 12000, 32 },{ 12000, 24 },{ 12000, 16 },{ 12000, 8 }, ++ // --------------------------- -------------------------- ++ { 44100, 320 },{ 44100, 256 },{ 44100, 224 },{ 44100, 192 }, // MPEG 1.0 Spec @ 44.1KHz ++ { 44100, 160 },{ 44100, 128 },{ 44100, 112 },{ 44100, 96 }, ++ { 44100, 80 },{ 44100, 64 },{ 44100, 56 },{ 44100, 48 }, ++ { 44100, 40 },{ 44100, 32 }, ++ ++ { 22050, 160 },{ 22050, 144 },{ 22050, 128 },{ 22050, 112 }, // MPEG 2.0 Spec @ 22.05KHz ++ { 22050, 96 },{ 22050, 80 },{ 22050, 64 },{ 22050, 56 }, ++ { 22050, 48 },{ 22050, 40 },{ 22050, 32 },{ 22050, 24 }, ++ { 22050, 16 },{ 22050, 8 }, ++ ++ { 11025, 64 },{ 11025, 56 },{ 11025, 48 },{ 11025, 40 }, // MPEG 2.5 Spec @ 11.025KHz ++ { 11025, 32 },{ 11025, 24 },{ 11025, 16 },{ 11025, 8 }, ++ // --------------------------- -------------------------- ++ { 32000, 320 },{ 32000, 256 },{ 32000, 224 },{ 32000, 192 }, // MPEG 1.0 Spec @ 32KHz ++ { 32000, 160 },{ 32000, 128 },{ 32000, 112 },{ 32000, 96 }, ++ { 32000, 80 },{ 32000, 64 },{ 32000, 56 },{ 32000, 48 }, ++ { 32000, 40 },{ 32000, 32 }, ++ ++ { 16000, 160 },{ 16000, 144 },{ 16000, 128 },{ 16000, 112 }, // MPEG 2.0 Spec @ 16KHz ++ { 16000, 96 },{ 16000, 80 },{ 16000, 64 },{ 16000, 56 }, ++ { 16000, 48 },{ 16000, 40 },{ 16000, 32 },{ 16000, 24 }, ++ { 16000, 16 },{ 16000, 8 }, ++ ++ { 8000, 64 },{ 8000, 56 },{ 8000, 48 },{ 8000, 40 }, // MPEG 2.5 Spec @ 8KHz ++ { 8000, 32 },{ 8000, 24 },{ 8000, 16 },{ 8000, 8 } ++}; ++ + + /* Registration setup stuff */ + // Setup data + +-#define OUT_STREAM_TYPE MEDIATYPE_Stream +-#define OUT_STREAM_SUBTYPE MEDIASUBTYPE_MPEG1Audio +-//#define OUT_STREAM_SUBTYPE MEDIASUBTYPE_NULL + + AMOVIESETUP_MEDIATYPE sudMpgInputType[] = + { +@@ -82,7 +129,8 @@ + { + { &MEDIATYPE_Audio, &MEDIASUBTYPE_MPEG1AudioPayload }, + { &MEDIATYPE_Audio, &MEDIASUBTYPE_MPEG2_AUDIO }, +- { &OUT_STREAM_TYPE, &OUT_STREAM_SUBTYPE}, ++ { &MEDIATYPE_Audio, &MEDIASUBTYPE_MP3 }, ++ { &MEDIATYPE_Stream, &MEDIASUBTYPE_MPEG1Audio } + }; + + AMOVIESETUP_PIN sudMpgPins[] = +@@ -113,16 +161,17 @@ + { + &CLSID_LAMEDShowFilter, + L"LAME Audio Encoder", +- MERIT_SW_COMPRESSOR, // Don't use us for real! +- NUMELMS(sudMpgPins), // 3 pins ++ DEFAULT_FILTER_MERIT, // Standard compressor merit value ++ NUMELMS(sudMpgPins), // 2 pins + sudMpgPins + }; + + /*****************************************************************************/ + // COM Global table of objects in this dll ++static WCHAR g_wszName[] = L"LAME Audio Encoder"; + CFactoryTemplate g_Templates[] = + { +- { L"LAME Audio Encoder", &CLSID_LAMEDShowFilter, CMpegAudEnc::CreateInstance, NULL, &sudMpgAEnc }, ++ { g_wszName, &CLSID_LAMEDShowFilter, CMpegAudEnc::CreateInstance, NULL, &sudMpgAEnc }, + { L"LAME Audio Encoder Property Page", &CLSID_LAMEDShow_PropertyPage, CMpegAudEncPropertyPage::CreateInstance}, + { L"LAME Audio Encoder Property Page", &CLSID_LAMEDShow_PropertyPageAdv, CMpegAudEncPropertyPageAdv::CreateInstance}, + { L"LAME Audio Encoder About", &CLSID_LAMEDShow_About, CMAEAbout::CreateInstance} +@@ -130,24 +179,114 @@ + // Count of objects listed in g_cTemplates + int g_cTemplates = sizeof(g_Templates) / sizeof(g_Templates[0]); + ++ ++ ++//////////////////////////////////////////// ++// Declare the DirectShow filter information. ++ ++// Used by IFilterMapper2() in the call to DllRegisterServer() ++// to register the filter in the CLSID_AudioCompressorCategory. ++REGFILTER2 rf2FilterReg = { ++ 1, // Version number. ++ DEFAULT_FILTER_MERIT, // Merit. This should match the merit specified in the AMOVIESETUP_FILTER definition ++ NUMELMS(sudMpgPins), // Number of pins. ++ sudMpgPins // Pointer to pin information. ++}; ++ ++STDAPI DllRegisterServer(void) ++{ ++ HRESULT hr = AMovieDllRegisterServer2(TRUE); ++ if (FAILED(hr)) { ++ return hr; ++ } ++ ++ IFilterMapper2 *pFM2 = NULL; ++ hr = CoCreateInstance(CLSID_FilterMapper2, NULL, CLSCTX_INPROC_SERVER, IID_IFilterMapper2, (void **)&pFM2); ++ if (SUCCEEDED(hr)) { ++ hr = pFM2->RegisterFilter( ++ CLSID_LAMEDShowFilter, // Filter CLSID. ++ g_wszName, // Filter name. ++ NULL, // Device moniker. ++ &CLSID_AudioCompressorCategory, // Audio compressor category. ++ g_wszName, // Instance data. ++ &rf2FilterReg // Filter information. ++ ); ++ pFM2->Release(); ++ } ++ return hr; ++} ++ ++STDAPI DllUnregisterServer() ++{ ++ HRESULT hr = AMovieDllRegisterServer2(FALSE); ++ if (FAILED(hr)) { ++ return hr; ++ } ++ ++ IFilterMapper2 *pFM2 = NULL; ++ hr = CoCreateInstance(CLSID_FilterMapper2, NULL, CLSCTX_INPROC_SERVER, IID_IFilterMapper2, (void **)&pFM2); ++ if (SUCCEEDED(hr)) { ++ hr = pFM2->UnregisterFilter(&CLSID_AudioCompressorCategory, g_wszName, CLSID_LAMEDShowFilter); ++ pFM2->Release(); ++ } ++ return hr; ++} ++ ++ ++ + CUnknown *CMpegAudEnc::CreateInstance(LPUNKNOWN lpunk, HRESULT *phr) + { +- CUnknown *punk = new CMpegAudEnc(lpunk, phr); ++ CMpegAudEnc *punk = new CMpegAudEnc(lpunk, phr); + if (punk == NULL) + *phr = E_OUTOFMEMORY; + return punk; + } + + CMpegAudEnc::CMpegAudEnc(LPUNKNOWN lpunk, HRESULT *phr) +- : CTransformFilter(NAME("LAME Audio Encoder"), lpunk, +- CLSID_LAMEDShowFilter), ++ : CTransformFilter(NAME("LAME Audio Encoder"), lpunk, CLSID_LAMEDShowFilter), + CPersistStream(lpunk, phr) + { ++ // ENCODER OUTPUT PIN ++ // Override the output pin with our own which will implement the IAMStreamConfig Interface ++ CTransformOutputPin *pOut = new CMpegAudEncOutPin( this, phr ); ++ if (pOut == NULL) { ++ *phr = E_OUTOFMEMORY; ++ return; ++ } ++ else if (FAILED(*phr)) { // A failed return code should delete the object ++ delete pOut; ++ return; ++ } ++ m_pOutput = pOut; ++ ++ // ENCODER INPUT PIN ++ // Since we've created our own output pin we must also create ++ // the input pin ourselves because the CTransformFilter base class ++ // will create an extra output pin if the input pin wasn't created. ++ CTransformInputPin *pIn = new CTransformInputPin(NAME("LameEncoderInputPin"), ++ this, // Owner filter ++ phr, // Result code ++ L"Input"); // Pin name ++ ++ if (pIn == NULL) { ++ *phr = E_OUTOFMEMORY; ++ return; ++ } ++ else if (FAILED(*phr)) { // A failed return code should delete the object | ||
[+] | Deleted | lame-fix_mp3rtp.patch ^ |
@@ -1,33 +0,0 @@ ---- frontend/rtp.c.orig 2008-07-13 20:58:19.000000000 +0200 -+++ frontend/rtp.c 2008-07-13 20:58:24.000000000 +0200 -@@ -2,8 +2,6 @@ - - #ifdef HAVE_CONFIG_H - # include <config.h> --/* std int types already defined in config.h */ --# define _STDINT_H - #endif - - #ifndef __GNUC__ ---- frontend/rtp.h.orig 2008-07-13 18:57:29.000000000 +0200 -+++ frontend/rtp.h 2008-07-13 20:56:19.000000000 +0200 -@@ -1,6 +1,8 @@ - #ifndef LAME_RTP_H - #define LAME_RTP_H - -+#include <stdint.h> -+#include <sys/types.h> - #include <sys/socket.h> - #include <netinet/in.h> - ---- frontend/mp3rtp.c.orig 2008-07-13 18:56:06.000000000 +0200 -+++ frontend/mp3rtp.c 2008-07-13 20:58:28.000000000 +0200 -@@ -12,8 +12,6 @@ - - #ifdef HAVE_CONFIG_H - # include <config.h> --/* std int types already defined in config.h */ --#define _STDINT_H - #endif - - #ifdef STDC_HEADERS | ||
Added | lame-3.98.2-1.pm.4.17.src.rpm ^ | |
Renamed | lame-398-2.tar.bz2 ^ | |
Deleted | lame-398.tar.gz ^ |