index
:
playground/qtaudio3d.git
master
Qt Audio 3D
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fixed licenses
HEAD
master
Teemu Kaukoranta
2013-05-23
4
-88/+88
*
Add a not yet fully implemented QALSource class
Laszlo Papp
2012-09-18
2
-39/+502
*
Add a basic QALListener class with few mutators and one accessor method
Laszlo Papp
2012-09-18
3
-0/+167
*
Rename the variable from qalSndAudioDecoder to qalSndFileAudioDecoder
Laszlo Papp
2011-12-14
1
-7/+7
*
Make a dirty and nasty hackaround for compilation, but needs to be revisited..
Laszlo Papp
2011-12-13
1
-2/+20
*
Return -1 as an error value if there is some issue during the decoding
Laszlo Papp
2011-12-13
1
-1/+1
*
Rename the pure virtual method to decodeData and public inheritance explicitely
Laszlo Papp
2011-12-13
10
-14/+14
*
Implement the helper decode methods inside the abstract class
Laszlo Papp
2011-12-13
10
-73/+17
*
Implement the helper open methods inside the abstract class
Laszlo Papp
2011-12-13
9
-46/+30
*
Fix the open method inside the qalflacaudiodecoder class..
Laszlo Papp
2011-12-13
1
-4/+12
*
Implement the sampleFormat method for the time being in the qalbufferformat
Laszlo Papp
2011-12-13
1
-7/+190
*
Add a default rewind implementation (seek(0)) to the abstract base class
Laszlo Papp
2011-12-09
2
-0/+6
*
Do not use a local return value variable, just write the output argument
Laszlo Papp
2011-12-08
1
-3/+2
*
Extend the lengthCallback with proper error management and warning message
Laszlo Papp
2011-12-07
1
-1/+9
*
Extend the tellCallback with proper error management and warning message
Laszlo Papp
2011-12-07
1
-1/+9
*
Make the warning message more precise if the tell operation fails for a reason
Laszlo Papp
2011-12-07
1
-1/+4
*
Clean up and implement the pos() method of the qalflacaudiodecoder class
Laszlo Papp
2011-12-07
1
-12/+5
*
Use the Q_UNUSED more for the metadataCallback and also errorCallback
Laszlo Papp
2011-12-07
1
-0/+6
*
Do nothing inside the writeCallback for now - maybe zero callback later for this
Laszlo Papp
2011-12-07
1
-0/+5
*
Just return from the writeCallback for the time being inside the flac decoder
Laszlo Papp
2011-12-07
1
-0/+1
*
Implement the eofCallback of the flac audio decoder backend
Laszlo Papp
2011-12-07
1
-0/+3
*
Add further 4 skeleton callback bodies to the flac decoder class
Laszlo Papp
2011-12-07
1
-0/+21
*
Fix the typo of the variable name inside the qalflacaudiodecoder class
Laszlo Papp
2011-12-07
1
-1/+1
*
Implement the initial version of the readCallback inside the flac decoder
Laszlo Papp
2011-12-07
1
-1/+15
*
Implement the tell callback properly and add the missing Q_UNUSED to the seek
Laszlo Papp
2011-12-07
1
-3/+9
*
Implement the seek callback and add the proper retval and args for read
Laszlo Papp
2011-12-07
1
-37/+18
*
Remove the leftover mpg123 entries from the private class' ctor and dtor
Laszlo Papp
2011-12-07
1
-5/+0
*
Add the proper static callback method declarations to the private class
Laszlo Papp
2011-12-07
1
-16/+23
*
Add the real NULL check against the memory allocation result for proper handling
Laszlo Papp
2011-12-07
1
-1/+1
*
Implement the seeking in the flac decoder and add a state check before decoding
Laszlo Papp
2011-12-07
2
-4/+12
*
Clean up some sndfile leftover private class members in the mpg123 audio decoder
Laszlo Papp
2011-12-07
1
-2/+0
*
Add an initial version of the flac audio decoder with some basic functionalities
Laszlo Papp
2011-12-07
2
-0/+289
*
Do not use QMutexLocker, just a private class member QMutex for locking
Laszlo Papp
2011-12-07
1
-3/+8
*
Amend the "include <mpg123.g>" line in order to get the things defined
Laszlo Papp
2011-12-07
1
-0/+2
*
Use QMutexLocker, static reference counter and isValid members properly
Laszlo Papp
2011-12-07
2
-6/+15
*
Use a reference counter and call the mpg123_init/exit accordingly in ctor/dtor
Laszlo Papp
2011-12-07
1
-5/+13
*
Fix a typo in the name of the QALMpg123AudioDecoder class inside the header
Laszlo Papp
2011-12-06
1
-1/+1
*
Initialize the SNDFILE pointer to zero inside the private class constructor
Laszlo Papp
2011-12-06
1
-0/+1
*
Add an initial implementation of the QALMpg123AudioDecoder class to the project
Laszlo Papp
2011-12-06
2
-0/+285
*
Try to find the OggVorbis library and print the support of it accordingly
Laszlo Papp
2011-12-06
1
-0/+7
*
Fix the include path after the decoders folder establishment in the qalcontext
Laszlo Papp
2011-12-06
1
-1/+1
*
Add the FindOggVorbis.cmake module to the project since it is not upstreamed yet
Laszlo Papp
2011-12-06
1
-0/+70
*
Remove the FindSndFile.cmake module since it is already available upstream
Laszlo Papp
2011-12-06
1
-49/+0
*
Fix the include guards according to the snd -> sndfile renaming
Laszlo Papp
2011-12-06
1
-4/+4
*
Change the src/CMakeLists.txt file according to the decoders moves
Laszlo Papp
2011-12-06
1
-4/+6
*
Establish a separate folder for decoders and move the existing implementations
Laszlo Papp
2011-12-06
4
-0/+0
*
Use the "SndFile" term instead of "Snd" inside the sndfile decoder backend
Laszlo Papp
2011-12-06
4
-31/+31
*
Check against negative return value after the ov_pcm_tell call, not specific one
Laszlo Papp
2011-12-06
1
-2/+2
*
Do not use oggVorbisFile pointer anymore and it is not needed to delete either
Laszlo Papp
2011-12-06
1
-8/+8
*
Use a private class member for the bitStream and initialize it to zero
Laszlo Papp
2011-12-06
1
-4/+5
[next]