Browse code

Disable annoying warning without changing behavior

Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>

Andrey Utkin authored on 2012/01/08 05:38:00
Showing 1 changed files
... ...
@@ -164,6 +164,7 @@ static inline void avfilter_copy_buffer_ref_props(AVFilterBufferRef *dst, AVFilt
164 164
     switch (src->type) {
165 165
     case AVMEDIA_TYPE_VIDEO: *dst->video = *src->video; break;
166 166
     case AVMEDIA_TYPE_AUDIO: *dst->audio = *src->audio; break;
167
+    default: break;
167 168
     }
168 169
 }
169 170