[vlc-commits] wave: reject 0 planes formats
Rémi Denis-Courmont
git at videolan.org
Sun Jul 7 20:13:41 CEST 2013
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Jun 23 09:13:26 2013 +0300| [967c9badead87a97cd338e0ab922743ef354c92b] | committer: Rémi Denis-Courmont
wave: reject 0 planes formats
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=967c9badead87a97cd338e0ab922743ef354c92b
---
modules/video_filter/wave.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/modules/video_filter/wave.c b/modules/video_filter/wave.c
index c2c93bd..3fbfcab 100644
--- a/modules/video_filter/wave.c
+++ b/modules/video_filter/wave.c
@@ -81,6 +81,11 @@ static int Create( vlc_object_t *p_this )
{
filter_t *p_filter = (filter_t *)p_this;
+ const vlc_chroma_description_t *p_chroma =
+ vlc_fourcc_GetChromaDescription( p_filter->fmt_in.video.i_chroma );
+ if( p_chroma == NULL || p_chroma->plane_count == 0 )
+ return VLC_EGENERIC;
+
/* Allocate structure */
p_filter->p_sys = malloc( sizeof( filter_sys_t ) );
if( p_filter->p_sys == NULL )
More information about the vlc-commits
mailing list