mirror of https://git.ffmpeg.org/ffmpeg.git
fifo: fix permissions.
This commit is contained in:
parent
a34eb393fc
commit
44aeb06290
|
@ -282,7 +282,7 @@ AVFilter avfilter_vf_fifo = {
|
|||
.start_frame = add_to_queue,
|
||||
.draw_slice = draw_slice,
|
||||
.end_frame = end_frame,
|
||||
.rej_perms = AV_PERM_REUSE2, },
|
||||
.min_perms = AV_PERM_PRESERVE, },
|
||||
{ .name = NULL}},
|
||||
.outputs = (const AVFilterPad[]) {{ .name = "default",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
|
@ -303,7 +303,7 @@ AVFilter avfilter_af_afifo = {
|
|||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
.get_audio_buffer = ff_null_get_audio_buffer,
|
||||
.filter_samples = add_to_queue,
|
||||
.rej_perms = AV_PERM_REUSE2, },
|
||||
.min_perms = AV_PERM_PRESERVE, },
|
||||
{ .name = NULL}},
|
||||
.outputs = (const AVFilterPad[]) {{ .name = "default",
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
|
|
Loading…
Reference in New Issue