This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
vsrc_buffer: fix check from
7ae7c41
.
The user submitted variable in this function is frame, not buf.
tags/n0.11
Anton Khirnov
14 years ago
parent
219a9ed19e
commit
7bf9e3391f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/vsrc_buffer.c
+ 1
- 1
libavfilter/vsrc_buffer.c
View File
@@ -51,7 +51,7 @@ int av_vsrc_buffer_add_frame(AVFilterContext *buffer_filter, AVFrame *frame,
AVFilterBufferRef *buf;
int ret;
if (!
bu
f) {
if (!f
rame
) {
c->eof = 1;
return 0;
} else if (c->eof)
Write
Preview
Loading…
Cancel
Save