| Commit message (Expand) | Author | Age | Files | Lines |
* | Get rid of pointless 'extern' keywords. | diego | 2008-12-03 | 1 | -1/+1 |
* | Use 64 bit numbers for file positions in the seek function in audio demuxer. | reimar | 2008-11-16 | 1 | -1/+1 |
* | Remove unused line (and fix an icc warning). | cehoyos | 2008-10-09 | 1 | -1/+0 |
* | changed 'Audio file' to 'Audio only' (to not get 'Audio file file' when played) | ptt | 2008-07-29 | 1 | -1/+1 |
* | 100l, do not use macros on functions that are not idempotent | reimar | 2008-07-13 | 1 | -1/+2 |
* | Correct stream-seekability tests in demux_audio and demux_lavf | reimar | 2008-07-11 | 1 | -1/+1 |
* | Only read wav header cbSize when there is enough space in header. | reimar | 2008-07-10 | 1 | -1/+1 |
* | 100l, assignment introduced in r27246 was exactly the wrong way around. | reimar | 2008-07-10 | 1 | -1/+1 |
* | Cosmetics: reindent | reimar | 2008-07-10 | 1 | -5/+5 |
* | Clean up reading of wav extradata. | reimar | 2008-07-10 | 1 | -7/+3 |
* | Make sure we do not use uninitialized data in case of a short read. | reimar | 2008-06-29 | 1 | -0/+1 |
* | Continue detection if it is not clear if we have a MP3 or flac file. | reimar | 2008-05-21 | 1 | -1/+2 |
* | Remove another two useless special-case from flac metadata reading function | reimar | 2008-04-12 | 1 | -20/+2 |
* | Simplify: use AV_RB24 | reimar | 2008-04-12 | 1 | -1/+1 |
* | Remove useless checks | reimar | 2008-04-12 | 1 | -8/+1 |
* | Simplify (currently disabled) get_flac_metadata | reimar | 2008-04-12 | 1 | -11/+2 |
* | Add a comment to the #if 0 | reimar | 2008-01-29 | 1 | -1/+1 |
* | Disable reading of flac metadata, mere metadata is not worth such a mess. | reimar | 2008-01-29 | 1 | -1/+3 |
* | Properly check length of flac metadata. | reimar | 2008-01-29 | 1 | -0/+2 |
* | Use defines to give names to the different seek flags. | reimar | 2008-01-29 | 1 | -4/+4 |
* | Fix endless loop if nAvgBytesPerSec is 0. | reimar | 2008-01-19 | 1 | -0/+1 |
* | Avoid a division by 0 if i_bps is 0. | reimar | 2008-01-19 | 1 | -1/+1 |
* | Make all demuxer_desc_t const, thus moving them to .rodata | reimar | 2008-01-13 | 1 | -1/+1 |
* | Simplify: initialize at declaration at the start of the function | reimar | 2007-09-24 | 1 | -10/+5 |
* | Get rid of rather pointless asserts | reimar | 2007-09-24 | 1 | -12/+0 |
* | demux_audio.c: Fix timestamp handling | uau | 2007-09-24 | 1 | -14/+15 |
* | Get rid of: useless variable, useless cast and void * arithmetic | reimar | 2007-06-24 | 1 | -8/+5 |
* | Use AV_RL32 | reimar | 2007-06-24 | 1 | -3/+4 |
* | Add explicit location for headers from the stream/ directory. | diego | 2007-03-15 | 1 | -1/+1 |
* | Check for eof in loop searching for data chunk. | reimar | 2007-03-15 | 1 | -1/+1 |
* | Fix wrong setting of samplesize (must be bytes per sample, not bits) | reimar | 2007-03-04 | 1 | -1/+2 |
* | Do not read beyond end of data chunk if chunk_size is set. | reimar | 2007-02-04 | 1 | -1/+6 |
* | doxify a comment | reimar | 2006-12-18 | 1 | -1/+1 |
* | Require 12 consecutive MPEG-audio headers before detecting as audio. | reimar | 2006-12-18 | 1 | -1/+1 |
* | Try playing files with wrong wav header length, fixes riff_broken_hrdlen.wav | reimar | 2006-10-21 | 1 | -4/+2 |
* | drops casts from void * on malloc/calloc from libmpdemux code | reynaldo | 2006-07-13 | 1 | -2/+2 |
* | Clean up audio pts handling, make audio pts tracking in the audio-only | uau | 2006-06-14 | 1 | -6/+1 |
* | Change free_sh_audio() to take demuxer and stream id as parameters | uau | 2006-06-14 | 1 | -3/+2 |
* | Part3 of Otvos Attila's oattila AT chello-hu mp_msg changes, with lots of mod... | reynaldo | 2006-04-22 | 1 | -1/+2 |
* | Use ULL for > 32 bits constant. | reimar | 2006-04-16 | 1 | -1/+1 |
* | try to detect flac bitrate early on to avoid division by zero problems. | reimar | 2006-04-11 | 1 | -2/+16 |
* | check wav header length against upper limit, should protect against | reimar | 2006-04-11 | 1 | -0/+8 |
* | Convert printfs in aviprint.c to mp_msg and give the information printing | diego | 2006-03-27 | 1 | -2/+2 |
* | Convert all if(verbose>X) to mp_msg_test calls. | diego | 2006-03-24 | 1 | -1/+1 |
* | retrieve metadata from FLAC files (patch by Benjamin Zores < ben _at_ geexbox... | aurel | 2006-03-20 | 1 | -0/+145 |
* | fix leak on read error (forgot to free demux packet) | reimar | 2006-03-09 | 1 | -0/+3 |
* | "i < sizeof(buf)" must be "i < sizeof(buf) - 5", since later buf[i + 5] is used. | reimar | 2006-03-08 | 1 | -1/+1 |
* | Second-try commit of this patch. | corey | 2006-02-17 | 1 | -1/+1 |
* | read data in nBlockAlign aligned chunks | reimar | 2006-02-07 | 1 | -0/+3 |
* | Unify include path handling, -I.. is in CFLAGS. | diego | 2005-11-18 | 1 | -1/+1 |
* | move resync_audio_stream after seeking to demuxer.c | reimar | 2005-10-30 | 1 | -5/+0 |
* | Fix seeking in wav files: align relative to start of data, not start of file | reimar | 2005-10-20 | 1 | -1/+3 |
* | Ignore movi_end (except on error) to allow playing growing files. | reimar | 2005-09-09 | 1 | -3/+6 |
* | Make -identify's 'ID_LENGTH=' print a float and not an integer.. The | ods15 | 2005-09-02 | 1 | -1/+1 |
* | Demuxer modularization | rtognimp | 2005-08-05 | 1 | -6/+23 |
* | set i_bps in demux_audio for WAV and MP3 to avoid division by zero before | reimar | 2005-08-01 | 1 | -10/+31 |
* | Fix MP3 detection (list of found MP3 headers was not kep sorted). | reimar | 2005-04-18 | 1 | -2/+3 |
* | nico partially fixed the bug i reported; here's the rest of the fix. | rfelker | 2005-04-17 | 1 | -0/+1 |
* | skip framelen-4 bytes after having successfully detected an mpeg audio frame | nicodvb | 2005-04-17 | 1 | -0/+1 |
* | assign correct tag, dwScale and dwBlockAlign to mpeg audio; optionally assign... | nicodvb | 2005-04-17 | 1 | -8/+8 |
* | 100l to reimar.. sh_audio->samplerate and sh_audio->i_bps are not the same | rfelker | 2005-03-04 | 1 | -4/+3 |
* | Fix possible hang when playing broken MP3 from linear stream and remove | reimar | 2005-01-29 | 1 | -29/+26 |
* | better, tuneable (via #define) MP3 detection, limit demux_audio to scanning | reimar | 2004-09-28 | 1 | -27/+118 |
* | moved sh_audio initialization from dec_audio to demuxer.c to fix | reimar | 2004-09-16 | 1 | -1/+0 |
* | fix seeking with -hr-mp3-seek. maybe not the best fix (why is last_pts | rfelker | 2004-09-05 | 1 | -0/+1 |
* | DTS support via lavc and libdts | rtognimp | 2004-08-12 | 1 | -0/+40 |
* | 10l to me: writing outside allocated memory | rtognimp | 2004-04-15 | 1 | -1/+1 |
* | FLAC decoding support via imported libmpflac. | lumag | 2003-10-04 | 1 | -0/+20 |
* | Fixed 'reading after EOF'. demuxers didn't check, how many they've read! | lumag | 2003-09-20 | 1 | -1/+2 |
* | get_percent_pos support in demux_audio, patch by ROSEN Jeremy <jeremy.rosen a... | faust3 | 2003-09-19 | 1 | -0/+21 |
* | don't set audio pts to infinity after seeking in mp3 files :) | rfelker | 2003-06-04 | 1 | -0/+1 |
* | Warning fix, patch by Dominik Mierzejewsky | rtognimp | 2003-03-22 | 1 | -1/+2 |
* | 10l cbSize not inited for l=16.\n Could give problem in print_wave_header | rtognimp | 2003-03-17 | 1 | -0/+1 |
* | Same behaviour as old code for short headers | rtognimp | 2003-03-15 | 1 | -2/+5 |
* | Read extradata for wav files, based on patch by <dimakar(at)yahoo.com>. Requi... | rtognimp | 2003-03-15 | 1 | -5/+16 |
* | fixed mp3 seeking near end of file | arpi | 2002-12-04 | 1 | -2/+3 |
* | *HUGE* set of compiler warning fixes, unused variables removal | arpi | 2002-11-06 | 1 | -0/+1 |
* | skip id3v2 junk when looking for mp3 | rfelker | 2002-11-05 | 1 | -0/+7 |
* | 10l | arpi | 2002-11-05 | 1 | -1/+1 |
* | A-V sync cleanup: sh_audio->timer replaced by sh_audio->delay, it contains | arpi | 2002-11-02 | 1 | -3/+3 |
* | cleanup config option handling in libmpdemux. | arpi | 2002-10-23 | 1 | -14/+1 |
* | dump wav header | arpi | 2002-10-22 | 1 | -0/+2 |
* | Fix vbr muxing and win32 codec crash on init | albeu | 2002-07-21 | 1 | -3/+13 |
* | Uninit added | albeu | 2002-04-24 | 1 | -0/+8 |
* | Fix % seeking | albeu | 2002-04-23 | 1 | -4/+5 |
* | Added pts for mp3 and wav. And perfect seeking for mp3, unless flags & 2 | albeu | 2002-02-20 | 1 | -7/+65 |
* | fixed WAV demuxer so that it skips to the actual start of the audio data | melanson | 2002-02-16 | 1 | -1/+10 |
* | We should skip exactly the first frame on mp3 files. | albeu | 2002-02-15 | 1 | -3/+2 |
* | mp3 position fixed | arpi | 2002-02-15 | 1 | -2/+5 |
* | Improved mp3 detection (don't detect mpeg1/2 as mp3 anymore) | albeu | 2002-02-14 | 1 | -2/+15 |
* | Audio file demuxer. Extended version for demuxer info. | albeu | 2002-02-14 | 1 | -0/+249 |