Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2015-08-26 13:11:26 +0300
committerNicolas George <george@nsup.org>2015-09-20 20:02:33 +0300
commit44f660e7e75b856eafa5f7e7cc6e633de5d01b5d (patch)
tree87d4bcc9a0fa9d6af563e13f97ff7db906b3ff27 /libavfilter/trim.c
parent2a351f6c5521c199b4285e4e42f2321e312170bd (diff)
lavfi: remove FF_LINK_FLAG_REQUEST_LOOP.
It has no longer any effect.
Diffstat (limited to 'libavfilter/trim.c')
-rw-r--r--libavfilter/trim.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavfilter/trim.c b/libavfilter/trim.c
index 468dc03ca1..e8d023ec65 100644
--- a/libavfilter/trim.c
+++ b/libavfilter/trim.c
@@ -114,12 +114,6 @@ static int config_input(AVFilterLink *inlink)
return 0;
}
-static int config_output(AVFilterLink *outlink)
-{
- outlink->flags |= FF_LINK_FLAG_REQUEST_LOOP;
- return 0;
-}
-
#define OFFSET(x) offsetof(TrimContext, x)
#define COMMON_OPTS \
{ "starti", "Timestamp of the first frame that " \
@@ -223,7 +217,6 @@ static const AVFilterPad trim_outputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
- .config_props = config_output,
},
{ NULL }
};
@@ -378,7 +371,6 @@ static const AVFilterPad atrim_outputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
- .config_props = config_output,
},
{ NULL }
};