diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-27 01:26:22 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-27 01:26:22 +0000 |
commit | 1234da4caf5468630e5657bf81cddd51f01a8733 (patch) | |
tree | 0f23e2656d73f08989ba858abaf99ad2f5bc780a /ffmpeg.c | |
parent | fbcb0811616d12c8a4dd5ff6db493975f371efab (diff) | |
download | ffmpeg-1234da4caf5468630e5657bf81cddd51f01a8733.tar.gz |
use av_fifo_generic_write, old func is deprecated
Originally committed as revision 13455 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -588,7 +588,7 @@ static void do_audio_out(AVFormatContext *s, if (enc->frame_size > 1) { /* output resampled raw samples */ av_fifo_realloc(&ost->fifo, av_fifo_size(&ost->fifo) + size_out); - av_fifo_write(&ost->fifo, buftmp, size_out); + av_fifo_generic_write(&ost->fifo, buftmp, size_out, NULL); frame_bytes = enc->frame_size * 2 * enc->channels; |