summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-05-21 00:12:20 +0200
committerwm4 <wm4@nowhere>2013-05-21 00:12:20 +0200
commit4dc8c0756fbb91634c0c7555d5e66c35f3b69b63 (patch)
treeead7272f906c591f9357e2df825f0d0c0bcba805 /video
parent1ced961b92699ba2289406a999312c00d1139e2b (diff)
downloadmpv-4dc8c0756fbb91634c0c7555d5e66c35f3b69b63.tar.bz2
mpv-4dc8c0756fbb91634c0c7555d5e66c35f3b69b63.tar.xz
vf_lavfi: remove redundant statements
Diffstat (limited to 'video')
-rw-r--r--video/filter/vf_lavfi.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/video/filter/vf_lavfi.c b/video/filter/vf_lavfi.c
index f581fe950e..77d85cb603 100644
--- a/video/filter/vf_lavfi.c
+++ b/video/filter/vf_lavfi.c
@@ -177,13 +177,9 @@ static bool recreate_graph(struct vf_instance *vf, int width, int height,
outputs->name = av_strdup("in");
outputs->filter_ctx = in;
- outputs->pad_idx = 0;
- outputs->next = NULL;
inputs->name = av_strdup("out");
inputs->filter_ctx = f_format;
- inputs->pad_idx = 0;
- inputs->next = NULL;
if (graph_parse(graph, p->cfg_graph, inputs, outputs, NULL) < 0)
goto error;