log libmpdemux/demux_audio.c @ 33189:e137435bb751

age author description
2010-12-08 reimar Do not generate nonsensical pts values for FLAC audio.
2010-12-08 reimar Add support for FLAC audio parsing, fixes playback time jumping
2010-11-29 reimar Set needs_parsing to 1 for DTS audio.
2010-11-21 reimar Fix WAVEFORMATEXTENSIBLE condition.
2010-11-21 reimar Fix WAVEFORMATEXTENSIBLE support on big-endian.
2010-11-14 cboesch Remove most of the NULL pointer check before free all over the code
2010-09-12 reimar Replace sizeof(type)
2010-07-10 reimar Remove some pointless uses of be2me/le2me.
2010-07-10 reimar Make the stream language an argument to the stream creation function
2010-06-20 diego Move hr_mp3_seek extern variable declaration to demux_audio.h.
2010-02-22 tack Get the proper codec id when a WAVE_FORMAT_EXTENSIBLE extension exists in a
2010-02-18 diego Add header for AVI print functions; avoids many forward declarations.
2009-11-22 reimar Finally rename the STREAM_SEEK define to MP_STREAM_SEEK, there are just too many
2009-09-14 reimar Get rid of useless indirection and use the demuxer argument directly instead of
2009-05-13 diego whitespace cosmetics: Remove all trailing whitespace.
2009-05-08 diego Add standard license header to all files in libmpdemux.
2008-12-03 diego Get rid of pointless 'extern' keywords.
2008-11-16 reimar Use 64 bit numbers for file positions in the seek function in audio demuxer.
2008-10-09 cehoyos Remove unused line (and fix an icc warning).
2008-07-29 ptt changed 'Audio file' to 'Audio only' (to not get 'Audio file file' when played)
2008-07-13 reimar 100l, do not use macros on functions that are not idempotent
2008-07-11 reimar Correct stream-seekability tests in demux_audio and demux_lavf
2008-07-10 reimar Only read wav header cbSize when there is enough space in header.
2008-07-10 reimar 100l, assignment introduced in r27246 was exactly the wrong way around.
2008-07-10 reimar Cosmetics: reindent
2008-07-10 reimar Clean up reading of wav extradata.
2008-06-29 reimar Make sure we do not use uninitialized data in case of a short read.
2008-05-21 reimar Continue detection if it is not clear if we have a MP3 or flac file.
2008-04-12 reimar Remove another two useless special-case from flac metadata reading function
2008-04-12 reimar Simplify: use AV_RB24
2008-04-12 reimar Remove useless checks
2008-04-12 reimar Simplify (currently disabled) get_flac_metadata
2008-01-29 reimar Add a comment to the #if 0
2008-01-29 reimar Disable reading of flac metadata, mere metadata is not worth such a mess.
2008-01-29 reimar Properly check length of flac metadata.
2008-01-29 reimar Use defines to give names to the different seek flags.
2008-01-19 reimar Fix endless loop if nAvgBytesPerSec is 0.
2008-01-19 reimar Avoid a division by 0 if i_bps is 0.
2008-01-13 reimar Make all demuxer_desc_t const, thus moving them to .rodata
2007-09-24 reimar Simplify: initialize at declaration at the start of the function
2007-09-24 reimar Get rid of rather pointless asserts
2007-09-24 uau demux_audio.c: Fix timestamp handling
2007-06-24 reimar Get rid of: useless variable, useless cast and void * arithmetic
2007-06-24 reimar Use AV_RL32
2007-03-15 diego Add explicit location for headers from the stream/ directory.
2007-03-15 reimar Check for eof in loop searching for data chunk.
2007-03-04 reimar Fix wrong setting of samplesize (must be bytes per sample, not bits)
2007-02-04 reimar Do not read beyond end of data chunk if chunk_size is set.
2006-12-18 reimar doxify a comment
2006-12-18 reimar Require 12 consecutive MPEG-audio headers before detecting as audio.
2006-10-21 reimar Try playing files with wrong wav header length, fixes riff_broken_hrdlen.wav
2006-07-13 reynaldo drops casts from void * on malloc/calloc from libmpdemux code
2006-06-14 uau Clean up audio pts handling, make audio pts tracking in the audio-only
2006-06-14 uau Change free_sh_audio() to take demuxer and stream id as parameters
2006-04-22 reynaldo Part3 of Otvos Attila's oattila AT chello-hu mp_msg changes, with lots of modifications as usual
2006-04-16 reimar Use ULL for > 32 bits constant.
2006-04-11 reimar try to detect flac bitrate early on to avoid division by zero problems.
2006-04-11 reimar check wav header length against upper limit, should protect against
2006-03-27 diego Convert printfs in aviprint.c to mp_msg and give the information printing
2006-03-24 diego Convert all if(verbose>X) to mp_msg_test calls.