[FFmpeg-soc] [soc]: r1049 - libavfilter/vf_scale.c
koorogi
subversion at mplayerhq.hu
Mon Aug 20 15:36:05 CEST 2007
Author: koorogi
Date: Mon Aug 20 15:36:04 2007
New Revision: 1049
Log:
fix: scale filter needs read permissions on its input
Modified:
libavfilter/vf_scale.c
Modified: libavfilter/vf_scale.c
==============================================================================
--- libavfilter/vf_scale.c (original)
+++ libavfilter/vf_scale.c Mon Aug 20 15:36:04 2007
@@ -144,7 +144,8 @@ AVFilter avfilter_vf_scale =
.type = AV_PAD_VIDEO,
.draw_slice = draw_slice,
.end_frame = end_frame,
- .query_formats = query_formats, },
+ .query_formats = query_formats,
+ .min_perms = AV_PERM_READ, },
{ .name = NULL}},
.outputs = (AVFilterPad[]) {{ .name = "default",
.type = AV_PAD_VIDEO,
More information about the FFmpeg-soc
mailing list