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
vf_hqdn3d: fix permissions
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer
12 years ago
parent
46a4e72bc5
commit
ed547e2ce5
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/vf_hqdn3d.c
+ 1
- 1
libavfilter/vf_hqdn3d.c
View File
@@ -329,7 +329,7 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *in)
AVFilterBufferRef *out;
int direct, c;
if (
(
in->perms & AV_PERM_WRITE
) && !(in->perms & AV_PERM_PRESERVE)
) {
if (in->perms & AV_PERM_WRITE) {
direct = 1;
out = in;
} else {
Write
Preview
Loading…
Cancel
Save