| Commit message (Expand) | Author | Age |
* | Get rid of useless indirection and use the demuxer argument directly instead of | reimar | 2009-09-14 |
* | whitespace cosmetics: Remove all trailing whitespace. | diego | 2009-05-13 |
* | Add standard license header to all files in libmpdemux. | diego | 2009-05-08 |
* | Get rid of pointless 'extern' keywords. | diego | 2008-12-03 |
* | Use 64 bit numbers for file positions in the seek function in audio demuxer. | reimar | 2008-11-16 |
* | Remove unused line (and fix an icc warning). | cehoyos | 2008-10-09 |
* | changed 'Audio file' to 'Audio only' (to not get 'Audio file file' when played) | ptt | 2008-07-29 |
* | 100l, do not use macros on functions that are not idempotent | reimar | 2008-07-13 |
* | Correct stream-seekability tests in demux_audio and demux_lavf | reimar | 2008-07-11 |
* | Only read wav header cbSize when there is enough space in header. | reimar | 2008-07-10 |
* | 100l, assignment introduced in r27246 was exactly the wrong way around. | reimar | 2008-07-10 |
* | Cosmetics: reindent | reimar | 2008-07-10 |
* | Clean up reading of wav extradata. | reimar | 2008-07-10 |
* | Make sure we do not use uninitialized data in case of a short read. | reimar | 2008-06-29 |
* | Continue detection if it is not clear if we have a MP3 or flac file. | reimar | 2008-05-21 |
* | Remove another two useless special-case from flac metadata reading function | reimar | 2008-04-12 |
* | Simplify: use AV_RB24 | reimar | 2008-04-12 |
* | Remove useless checks | reimar | 2008-04-12 |
* | Simplify (currently disabled) get_flac_metadata | reimar | 2008-04-12 |
* | Add a comment to the #if 0 | reimar | 2008-01-29 |
* | Disable reading of flac metadata, mere metadata is not worth such a mess. | reimar | 2008-01-29 |
* | Properly check length of flac metadata. | reimar | 2008-01-29 |
* | Use defines to give names to the different seek flags. | reimar | 2008-01-29 |
* | Fix endless loop if nAvgBytesPerSec is 0. | reimar | 2008-01-19 |
* | Avoid a division by 0 if i_bps is 0. | reimar | 2008-01-19 |
* | Make all demuxer_desc_t const, thus moving them to .rodata | reimar | 2008-01-13 |
* | Simplify: initialize at declaration at the start of the function | reimar | 2007-09-24 |
* | Get rid of rather pointless asserts | reimar | 2007-09-24 |
* | demux_audio.c: Fix timestamp handling | uau | 2007-09-24 |
* | Get rid of: useless variable, useless cast and void * arithmetic | reimar | 2007-06-24 |
* | Use AV_RL32 | reimar | 2007-06-24 |
* | Add explicit location for headers from the stream/ directory. | diego | 2007-03-15 |
* | Check for eof in loop searching for data chunk. | reimar | 2007-03-15 |
* | Fix wrong setting of samplesize (must be bytes per sample, not bits) | reimar | 2007-03-04 |
* | Do not read beyond end of data chunk if chunk_size is set. | reimar | 2007-02-04 |
* | doxify a comment | reimar | 2006-12-18 |
* | Require 12 consecutive MPEG-audio headers before detecting as audio. | reimar | 2006-12-18 |
* | Try playing files with wrong wav header length, fixes riff_broken_hrdlen.wav | reimar | 2006-10-21 |
* | drops casts from void * on malloc/calloc from libmpdemux code | reynaldo | 2006-07-13 |
* | Clean up audio pts handling, make audio pts tracking in the audio-only | uau | 2006-06-14 |
* | Change free_sh_audio() to take demuxer and stream id as parameters | uau | 2006-06-14 |
* | Part3 of Otvos Attila's oattila AT chello-hu mp_msg changes, with lots of mod... | reynaldo | 2006-04-22 |
* | Use ULL for > 32 bits constant. | reimar | 2006-04-16 |
* | try to detect flac bitrate early on to avoid division by zero problems. | reimar | 2006-04-11 |
* | check wav header length against upper limit, should protect against | reimar | 2006-04-11 |
* | Convert printfs in aviprint.c to mp_msg and give the information printing | diego | 2006-03-27 |
* | Convert all if(verbose>X) to mp_msg_test calls. | diego | 2006-03-24 |
* | retrieve metadata from FLAC files (patch by Benjamin Zores < ben _at_ geexbox... | aurel | 2006-03-20 |
* | fix leak on read error (forgot to free demux packet) | reimar | 2006-03-09 |
* | "i < sizeof(buf)" must be "i < sizeof(buf) - 5", since later buf[i + 5] is used. | reimar | 2006-03-08 |