aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authordavilla <davilla@4pi.com>2011-09-07 00:14:34 -0400
committerdavilla <davilla@4pi.com>2011-09-07 00:17:52 -0400
commit5542a0c7e68d123b86f168ace00f7320b294fc39 (patch)
tree49c3480d51c8334ebecb0939008194abf3a0efd3 /lib
parentfde2c93f9d161a54f621eb7ba93f6077a8c083c6 (diff)
[ffmpeg] silence compiler warnings
Diffstat (limited to 'lib')
-rw-r--r--lib/ffmpeg/libavfilter/avfilter.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ffmpeg/libavfilter/avfilter.h b/lib/ffmpeg/libavfilter/avfilter.h
index ad8b1e51a5..daf43dcbef 100644
--- a/lib/ffmpeg/libavfilter/avfilter.h
+++ b/lib/ffmpeg/libavfilter/avfilter.h
@@ -159,6 +159,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;
}
}