Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 307156 Details for
Bug 448702
Review Request: SndObj - The Sound Object Library
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
patch to address cstring issues
SndObj-2.6.6-c++.diff (text/x-patch), 3.59 KB, created by
Ralf Corsepius
on 2008-05-30 01:52:02 UTC
(
hide
)
Description:
patch to address cstring issues
Filename:
MIME Type:
Creator:
Ralf Corsepius
Created:
2008-05-30 01:52:02 UTC
Size:
3.59 KB
patch
obsolete
>diff -Naur SndObj-2.6.6.orig/src/AdSyn.cpp SndObj-2.6.6/src/AdSyn.cpp >--- SndObj-2.6.6.orig/src/AdSyn.cpp 2008-05-23 12:07:11.000000000 +0200 >+++ SndObj-2.6.6/src/AdSyn.cpp 2008-05-30 03:31:11.000000000 +0200 >@@ -22,6 +22,8 @@ > > #include "AdSyn.h" > >+#include <cstring> >+ > AdSyn::AdSyn(){ > > } >diff -Naur SndObj-2.6.6.orig/src/FFT.cpp SndObj-2.6.6/src/FFT.cpp >--- SndObj-2.6.6.orig/src/FFT.cpp 2008-05-23 12:07:11.000000000 +0200 >+++ SndObj-2.6.6/src/FFT.cpp 2008-05-30 03:27:28.000000000 +0200 >@@ -27,6 +27,8 @@ > ///////////////////////////////////////////////// > #include "FFT.h" > >+#include <cstring> >+ > FFT::FFT(){ > > m_table = 0; >diff -Naur SndObj-2.6.6.orig/src/IFAdd.cpp SndObj-2.6.6/src/IFAdd.cpp >--- SndObj-2.6.6.orig/src/IFAdd.cpp 2008-05-23 12:07:12.000000000 +0200 >+++ SndObj-2.6.6/src/IFAdd.cpp 2008-05-30 03:31:47.000000000 +0200 >@@ -22,6 +22,8 @@ > > #include "IFAdd.h" > >+#include <cstring> >+ > IFAdd::IFAdd(){ > } > >diff -Naur SndObj-2.6.6.orig/src/IFFT.cpp SndObj-2.6.6/src/IFFT.cpp >--- SndObj-2.6.6.orig/src/IFFT.cpp 2008-05-23 12:07:12.000000000 +0200 >+++ SndObj-2.6.6/src/IFFT.cpp 2008-05-30 03:28:41.000000000 +0200 >@@ -27,6 +27,7 @@ > ///////////////////////////////////////////////// > #include "IFFT.h" > >+#include <cstring> > > IFFT::IFFT(){ > >diff -Naur SndObj-2.6.6.orig/src/PVA.cpp SndObj-2.6.6/src/PVA.cpp >--- SndObj-2.6.6.orig/src/PVA.cpp 2008-05-23 12:07:13.000000000 +0200 >+++ SndObj-2.6.6/src/PVA.cpp 2008-05-30 03:29:32.000000000 +0200 >@@ -27,6 +27,8 @@ > ///////////////////////////////////////////////// > #include "PVA.h" > >+#include <cstring> >+ > PVA::PVA(){ > m_rotcount = 0; > m_phases = new float[m_halfsize]; >diff -Naur SndObj-2.6.6.orig/src/PVRead.cpp SndObj-2.6.6/src/PVRead.cpp >--- SndObj-2.6.6.orig/src/PVRead.cpp 2008-05-23 12:07:13.000000000 +0200 >+++ SndObj-2.6.6/src/PVRead.cpp 2008-05-30 03:30:12.000000000 +0200 >@@ -22,6 +22,8 @@ > > #include "PVRead.h" > >+#include <cstring> >+ > PVRead::PVRead(){ > > m_ioinput = 0; >diff -Naur SndObj-2.6.6.orig/src/PVS.cpp SndObj-2.6.6/src/PVS.cpp >--- SndObj-2.6.6.orig/src/PVS.cpp 2008-05-23 12:07:13.000000000 +0200 >+++ SndObj-2.6.6/src/PVS.cpp 2008-05-30 03:29:50.000000000 +0200 >@@ -28,6 +28,7 @@ > ///////////////////////////////////////////////// > #include "PVS.h" > >+#include <cstring> > > PVS::PVS(){ > m_rotcount = m_vecsize; >diff -Naur SndObj-2.6.6.orig/src/ReSyn.cpp SndObj-2.6.6/src/ReSyn.cpp >--- SndObj-2.6.6.orig/src/ReSyn.cpp 2008-05-23 12:07:13.000000000 +0200 >+++ SndObj-2.6.6/src/ReSyn.cpp 2008-05-30 03:31:27.000000000 +0200 >@@ -24,6 +24,8 @@ > #include "ReSyn.h" > #include "IFGram.h" > >+#include <cstring> >+ > ReSyn::ReSyn(){ > AddMsg("pitch", 31); > AddMsg("timescale", 32); >diff -Naur SndObj-2.6.6.orig/src/SinAnal.cpp SndObj-2.6.6/src/SinAnal.cpp >--- SndObj-2.6.6.orig/src/SinAnal.cpp 2008-05-23 12:07:13.000000000 +0200 >+++ SndObj-2.6.6/src/SinAnal.cpp 2008-05-30 03:30:31.000000000 +0200 >@@ -22,6 +22,8 @@ > > #include "SinAnal.h" > >+#include <cstring> >+ > SinAnal::SinAnal(){ > > m_thresh = 0.f; >diff -Naur SndObj-2.6.6.orig/src/SinSyn.cpp SndObj-2.6.6/src/SinSyn.cpp >--- SndObj-2.6.6.orig/src/SinSyn.cpp 2008-05-23 12:07:13.000000000 +0200 >+++ SndObj-2.6.6/src/SinSyn.cpp 2008-05-30 03:30:51.000000000 +0200 >@@ -22,6 +22,8 @@ > > #include "SinSyn.h" > >+#include <cstring> >+ > SinSyn::SinSyn(){ > > m_factor = m_vecsize/m_sr; >diff -Naur SndObj-2.6.6.orig/src/SndRead.cpp SndObj-2.6.6/src/SndRead.cpp >--- SndObj-2.6.6.orig/src/SndRead.cpp 2008-05-23 12:07:13.000000000 +0200 >+++ SndObj-2.6.6/src/SndRead.cpp 2008-05-30 03:32:26.000000000 +0200 >@@ -24,6 +24,8 @@ > #include "SndWave.h" > #include "SndAiff.h" > >+#include <cstring> >+ > SndRead::SndRead(){ > > m_pitch = 1.f;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 448702
: 307156