diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-26 12:44:05 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-26 19:45:23 +0200 |
commit | d7f9786cbcd3fede7c751f1c1f481e55ee2380bd (patch) | |
tree | 36c7fda4366510ab4473b0bd0916702deeb442da /libavcodec/audio_frame_queue.h | |
parent | 1ce5dce454ea46280b188f0b7e37fc976fcfb606 (diff) | |
download | ffmpeg-d7f9786cbcd3fede7c751f1c1f481e55ee2380bd.tar.gz |
audio_frame_queue: Clean up ff_af_queue_log_state debug function
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().
Diffstat (limited to 'libavcodec/audio_frame_queue.h')
-rw-r--r-- | libavcodec/audio_frame_queue.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/audio_frame_queue.h b/libavcodec/audio_frame_queue.h index cfcc6a030c..4a2977094b 100644 --- a/libavcodec/audio_frame_queue.h +++ b/libavcodec/audio_frame_queue.h @@ -80,11 +80,4 @@ int ff_af_queue_add(AudioFrameQueue *afq, const AVFrame *f); void ff_af_queue_remove(AudioFrameQueue *afq, int nb_samples, int64_t *pts, int *duration); -/** - * Log the current state of the queue. - * - * @param afq queue context - */ -void ff_af_queue_log_state(AudioFrameQueue *afq); - #endif /* AVCODEC_AUDIO_FRAME_QUEUE_H */ |