summaryrefslogtreecommitdiff
path: root/libavfilter/vf_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_null.c')
-rw-r--r--libavfilter/vf_null.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_null.c b/libavfilter/vf_null.c
index 75eba6783f..e3987ff693 100644
--- a/libavfilter/vf_null.c
+++ b/libavfilter/vf_null.c
@@ -30,13 +30,13 @@ AVFilter avfilter_vf_null = {
.priv_size = 0,
.inputs = (AVFilterPad[]) {{ .name = "default",
- .type = CODEC_TYPE_VIDEO,
+ .type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = avfilter_null_get_video_buffer,
.start_frame = avfilter_null_start_frame,
.end_frame = avfilter_null_end_frame },
{ .name = NULL}},
.outputs = (AVFilterPad[]) {{ .name = "default",
- .type = CODEC_TYPE_VIDEO, },
+ .type = AVMEDIA_TYPE_VIDEO, },
{ .name = NULL}},
};