Module: libav Branch: master Commit: 079688b6cbd2944ab84d3539efcde161aa090fac
Author: Andrey Utkin <[email protected]> Committer: Ronald S. Bultje <[email protected]> Date: Sat Jan 7 22:38:00 2012 +0200 Disable annoying warning without changing behavior Signed-off-by: Ronald S. Bultje <[email protected]> --- libavfilter/avfilter.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) 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; } } _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
