diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2011-07-04 20:43:37 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2011-07-05 08:27:42 +0200 |
commit | e6d88f63a805be3a866fe76f7453e8da71bc2e00 (patch) | |
tree | 7246d402314cad676b7f7d1c794ac3824275ca10 | |
parent | 5d4fd1d1adf1ec17dd19548783f7f2eb0d64225f (diff) | |
download | ffmpeg-e6d88f63a805be3a866fe76f7453e8da71bc2e00.tar.gz |
libavfilter: add a default to silence a warning.
-rw-r--r-- | libavfilter/avfilter.h | 1 |
1 files changed, 1 insertions, 0 deletions
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; } } |