diff options
author | davilla <davilla@4pi.com> | 2011-09-07 00:14:34 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2011-09-07 00:17:52 -0400 |
commit | 5542a0c7e68d123b86f168ace00f7320b294fc39 (patch) | |
tree | 49c3480d51c8334ebecb0939008194abf3a0efd3 /lib | |
parent | fde2c93f9d161a54f621eb7ba93f6077a8c083c6 (diff) |
[ffmpeg] silence compiler warnings
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ffmpeg/libavfilter/avfilter.h | 1 |
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; } } |