[FFmpeg-cvslog] ffmpeg: replace av_buffersrc_buffer with av_buffersrc_add_ref.
Nicolas George
git at videolan.org
Sun May 6 16:37:27 CEST 2012
ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Sat May 5 09:22:24 2012 +0200| [6ec1e0fed9749d7f49a97ac9c0566e0d29a01bb0] | committer: Nicolas George
ffmpeg: replace av_buffersrc_buffer with av_buffersrc_add_ref.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6ec1e0fed9749d7f49a97ac9c0566e0d29a01bb0
---
ffmpeg.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/ffmpeg.c b/ffmpeg.c
index 896dcc0..0b011ff 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2594,7 +2594,7 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int
/* no picture yet */
if (!pkt->size)
for (i = 0; i < ist->nb_filters; i++)
- av_buffersrc_buffer(ist->filters[i]->filter, NULL);
+ av_buffersrc_add_ref(ist->filters[i]->filter, NULL, 0);
return ret;
}
@@ -2658,7 +2658,9 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int
av_assert0(buf->refcount>0);
buf->refcount++;
- av_buffersrc_buffer(ist->filters[i]->filter, fb);
+ av_buffersrc_add_ref(ist->filters[i]->filter, fb,
+ AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT |
+ AV_BUFFERSRC_FLAG_NO_COPY);
} else
if(av_vsrc_buffer_add_frame(ist->filters[i]->filter, decoded_frame,AV_VSRC_BUF_FLAG_OVERWRITE)<0) {
av_log(NULL, AV_LOG_FATAL, "Failed to inject frame into filter network\n");
More information about the ffmpeg-cvslog
mailing list