]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/f_reverse.c
avcodec/dvdsub: fix partial packet assembly
[ffmpeg] / libavfilter / f_reverse.c
index 37c25e90456700dd05bf7b13788ea509fd862e5f..5bf71b38edb68db5e10625400d94ed46b25a7bab 100644 (file)
@@ -62,12 +62,6 @@ static av_cold void uninit(AVFilterContext *ctx)
     av_freep(&s->frames);
 }
 
-static int config_output(AVFilterLink *outlink)
-{
-    outlink->flags |= FF_LINK_FLAG_REQUEST_LOOP;
-    return 0;
-}
-
 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
 {
     AVFilterContext *ctx = inlink->dst;
@@ -129,7 +123,6 @@ static const AVFilterPad reverse_outputs[] = {
         .name          = "default",
         .type          = AVMEDIA_TYPE_VIDEO,
         .request_frame = request_frame,
-        .config_props  = config_output,
     },
     { NULL }
 };
@@ -240,7 +233,6 @@ static const AVFilterPad areverse_outputs[] = {
         .name          = "default",
         .type          = AVMEDIA_TYPE_AUDIO,
         .request_frame = areverse_request_frame,
-        .config_props  = config_output,
     },
     { NULL }
 };