From 079688b6cbd2944ab84d3539efcde161aa090fac Mon Sep 17 00:00:00 2001 From: Andrey Utkin Date: Sat, 7 Jan 2012 22:38:00 +0200 Subject: [PATCH] Disable annoying warning without changing behavior Signed-off-by: Ronald S. Bultje --- libavfilter/avfilter.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 70efc5c..cffcfca 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -164,6 +164,7 @@ static inline void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilt switch (src->type) { case AVMEDIA_TYPE_VIDEO: *dst->video = *src->video; break; case AVMEDIA_TYPE_AUDIO: *dst->audio = *src->audio; break; + default: break; } } -- 2.7.4