From e6d88f63a805be3a866fe76f7453e8da71bc2e00 Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Mon, 4 Jul 2011 20:43:37 +0200 Subject: [PATCH] libavfilter: add a default to silence a warning. --- libavfilter/avfilter.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 704b77d3e4..226d7beacb 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -162,6 +162,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; } }