aboutsummaryrefslogtreecommitdiffhomepage
path: root/libmpdemux/demux_audio.c
Commit message (Expand)AuthorAge
* 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
* "i < sizeof(buf)" must be "i < sizeof(buf) - 5", since later buf[i + 5] is used.Gravatar reimar2006-03-08
* Second-try commit of this patch.Gravatar corey2006-02-17
* read data in nBlockAlign aligned chunksGravatar reimar2006-02-07
* Unify include path handling, -I.. is in CFLAGS.Gravatar diego2005-11-18
* move resync_audio_stream after seeking to demuxer.cGravatar reimar2005-10-30
* Fix seeking in wav files: align relative to start of data, not start of fileGravatar reimar2005-10-20
* Ignore movi_end (except on error) to allow playing growing files.Gravatar reimar2005-09-09
* Make -identify's 'ID_LENGTH=' print a float and not an integer.. TheGravatar ods152005-09-02
* Demuxer modularizationGravatar rtognimp2005-08-05
* set i_bps in demux_audio for WAV and MP3 to avoid division by zero beforeGravatar reimar2005-08-01
* Fix MP3 detection (list of found MP3 headers was not kep sorted).Gravatar reimar2005-04-18
* nico partially fixed the bug i reported; here's the rest of the fix.Gravatar rfelker2005-04-17
* skip framelen-4 bytes after having successfully detected an mpeg audio frameGravatar nicodvb2005-04-17
* assign correct tag, dwScale and dwBlockAlign to mpeg audio; optionally assign...Gravatar nicodvb2005-04-17
* 100l to reimar.. sh_audio->samplerate and sh_audio->i_bps are not the sameGravatar rfelker2005-03-04
* Fix possible hang when playing broken MP3 from linear stream and removeGravatar reimar2005-01-29
* better, tuneable (via #define) MP3 detection, limit demux_audio to scanningGravatar reimar2004-09-28
* moved sh_audio initialization from dec_audio to demuxer.c to fixGravatar reimar2004-09-16
* fix seeking with -hr-mp3-seek. maybe not the best fix (why is last_ptsGravatar rfelker2004-09-05
* DTS support via lavc and libdtsGravatar rtognimp2004-08-12