1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

vf_thumbnail: fix permissions.

This commit is contained in:
Nicolas George
2012-08-14 18:49:58 +02:00
parent 469d07a0e4
commit d37f823207

View File

@@ -230,6 +230,7 @@ AVFilter avfilter_vf_thumbnail = {
{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = ff_null_get_video_buffer,
.min_perms = AV_PERM_PRESERVE,
.start_frame = null_start_frame,
.draw_slice = draw_slice,
.end_frame = end_frame,
@@ -240,7 +241,6 @@ AVFilter avfilter_vf_thumbnail = {
.type = AVMEDIA_TYPE_VIDEO,
.request_frame = request_frame,
.poll_frame = poll_frame,
.rej_perms = AV_PERM_REUSE2,
},{ .name = NULL }
},
};