[FFmpeg-devel] [PATCH 02/10] ffmpeg: replace av_vsrc_buffer_add_frame by av_buffersrc_add_frame.
Nicolas George
nicolas.george at normalesup.org
Sat May 5 10:22:30 CEST 2012
Signed-off-by: Nicolas George <nicolas.george at normalesup.org>
---
ffmpeg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
FLAG_OVERWRITE was ignored since 25eae29.
diff --git a/ffmpeg.c b/ffmpeg.c
index 0b011ff..1054d82 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2662,7 +2662,7 @@ static int transcode_video(InputStream *ist, AVPacket *pkt, int *got_output, int
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) {
+ if(av_buffersrc_add_frame(ist->filters[i]->filter, decoded_frame, 0)<0) {
av_log(NULL, AV_LOG_FATAL, "Failed to inject frame into filter network\n");
exit_program(1);
}
--
1.7.10
More information about the ffmpeg-devel
mailing list