aboutsummaryrefslogtreecommitdiffhomepage
path: root/libmpdemux/demux_audio.c
Commit message (Expand)AuthorAge
* Finally rename the STREAM_SEEK define to MP_STREAM_SEEK, there are just too manyGravatar reimar2009-11-22
* Get rid of useless indirection and use the demuxer argument directly instead ofGravatar reimar2009-09-14
* whitespace cosmetics: Remove all trailing whitespace.Gravatar diego2009-05-13
* Add standard license header to all files in libmpdemux.Gravatar diego2009-05-08
* Get rid of pointless 'extern' keywords.Gravatar diego2008-12-03
* Use 64 bit numbers for file positions in the seek function in audio demuxer.Gravatar reimar2008-11-16
* Remove unused line (and fix an icc warning).Gravatar cehoyos2008-10-09
* changed 'Audio file' to 'Audio only' (to not get 'Audio file file' when played)Gravatar ptt2008-07-29
* 100l, do not use macros on functions that are not idempotentGravatar reimar2008-07-13
* Correct stream-seekability tests in demux_audio and demux_lavfGravatar reimar2008-07-11
* Only read wav header cbSize when there is enough space in header.Gravatar reimar2008-07-10
* 100l, assignment introduced in r27246 was exactly the wrong way around.Gravatar reimar2008-07-10
* Cosmetics: reindentGravatar reimar2008-07-10
* Clean up reading of wav extradata.Gravatar reimar2008-07-10
* Make sure we do not use uninitialized data in case of a short read.Gravatar reimar2008-06-29
* Continue detection if it is not clear if we have a MP3 or flac file.Gravatar reimar2008-05-21
* Remove another two useless special-case from flac metadata reading functionGravatar reimar2008-04-12
* Simplify: use AV_RB24Gravatar reimar2008-04-12
* Remove useless checksGravatar reimar2008-04-12
* Simplify (currently disabled) get_flac_metadataGravatar reimar2008-04-12
* Add a comment to the #if 0Gravatar reimar2008-01-29
* Disable reading of flac metadata, mere metadata is not worth such a mess.Gravatar reimar2008-01-29
* Properly check length of flac metadata.Gravatar reimar2008-01-29
* Use defines to give names to the different seek flags.Gravatar reimar2008-01-29
* Fix endless loop if nAvgBytesPerSec is 0.Gravatar reimar2008-01-19
* Avoid a division by 0 if i_bps is 0.Gravatar reimar2008-01-19
* Make all demuxer_desc_t const, thus moving them to .rodataGravatar reimar2008-01-13
* Simplify: initialize at declaration at the start of the functionGravatar reimar2007-09-24
* Get rid of rather pointless assertsGravatar reimar2007-09-24
* demux_audio.c: Fix timestamp handlingGravatar uau2007-09-24
* Get rid of: useless variable, useless cast and void * arithmeticGravatar reimar2007-06-24
* Use AV_RL32Gravatar reimar2007-06-24
* Add explicit location for headers from the stream/ directory.Gravatar diego2007-03-15
* Check for eof in loop searching for data chunk.Gravatar reimar2007-03-15
* Fix wrong setting of samplesize (must be bytes per sample, not bits)Gravatar reimar2007-03-04
* Do not read beyond end of data chunk if chunk_size is set.Gravatar reimar2007-02-04
* doxify a commentGravatar reimar2006-12-18
* Require 12 consecutive MPEG-audio headers before detecting as audio.Gravatar reimar2006-12-18
* Try playing files with wrong wav header length, fixes riff_broken_hrdlen.wavGravatar reimar2006-10-21
* drops casts from void * on malloc/calloc from libmpdemux codeGravatar reynaldo2006-07-13
* Clean up audio pts handling, make audio pts tracking in the audio-onlyGravatar uau2006-06-14
* Change free_sh_audio() to take demuxer and stream id as parametersGravatar uau2006-06-14
* Part3 of Otvos Attila's oattila AT chello-hu mp_msg changes, with lots of mod...Gravatar reynaldo2006-04-22
* Use ULL for > 32 bits constant.Gravatar reimar2006-04-16
* try to detect flac bitrate early on to avoid division by zero problems.Gravatar reimar2006-04-11
* check wav header length against upper limit, should protect againstGravatar reimar2006-04-11
* Convert printfs in aviprint.c to mp_msg and give the information printingGravatar diego2006-03-27
* Convert all if(verbose>X) to mp_msg_test calls.Gravatar diego2006-03-24
* retrieve metadata from FLAC files (patch by Benjamin Zores < ben _at_ geexbox...Gravatar aurel2006-03-20
* fix leak on read error (forgot to free demux packet)Gravatar reimar2006-03-09