log libmpdemux/demux_audio.c @ 36169:438586240590

age author description
2013-03-19 diego Add strings.h #includes for strncasecmp().
2012-11-25 reimar Fix bitrate calculation for FLAC files.
2012-11-05 reimar Remove completely unnecessary huge on-stack buffer.
2012-11-01 reimar Add cast to ensure shift will not overflow.
2012-07-26 reimar Generally enable parsing for audio streams.
2012-05-18 reimar Take start offset into account when calculating amount of audio data.
2012-05-18 reimar Add some additional checks to ensure subtractions do not overflow.
2012-02-13 reimar Detect ID3v2 tag at the end of the file and stop demuxing before
2012-02-13 reimar Minor simplification.
2011-11-11 reimar Make WAV format detection more restrictive so it does not incorrectly
2011-10-27 ib Fix wrong runtime and average bitrate for VBR (variable bitrate) MP3.
2011-10-27 ib Ensure that demuxer->movi_end will be set.
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.