Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-04avcodec: Add av_cold attributes to init functions missing themDiego Biurrun
2012-08-28audio_frame_queue: Define af_queue_log_state before using itMartin Storsjö
This fixes building with DEBUG defined after the function was made static and the prototype removed in d7f9786cbc. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-26audio_frame_queue: Clean up ff_af_queue_log_state debug functionDiego Biurrun
The function is debug-only, so only compile it in debug mode. Make it static as it has no uses outside of the file. Change av_log() to av_dlog().
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-03-21avcodec: add code for a frame queue for use by audio encoders with delayJustin Ruggles
This simplifies matching of timestamps between input frames and output packets.