From: Andrey Utkin Date: Sat, 7 Jan 2012 20:38:00 +0000 (+0200) Subject: Disable annoying warning without changing behavior X-Git-Tag: n0.10~80^2~179 X-Git-Url: http://git.videolan.org/?p=ffmpeg.git;a=commitdiff_plain;h=079688b6cbd2944ab84d3539efcde161aa090fac Disable annoying warning without changing behavior Signed-off-by: Ronald S. Bultje --- diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 70efc5cd3c..cffcfcadc2 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; } }