From 29a358e8cda0dc6025d538abb39b14cf94dceacb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 7 Sep 2011 11:06:46 +0200 Subject: [PATCH] diracparse: Constify some arrays --- gst/videoparsers/dirac_parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/videoparsers/dirac_parse.c b/gst/videoparsers/dirac_parse.c index 3a3193d..5b367c3 100644 --- a/gst/videoparsers/dirac_parse.c +++ b/gst/videoparsers/dirac_parse.c @@ -165,7 +165,7 @@ dirac_sequence_header_parse (DiracSequenceHeader * header, /* standard stuff */ -static DiracSequenceHeader schro_video_formats[] = { +static const DiracSequenceHeader schro_video_formats[] = { {0, 0, 0, 0, 0, /* custom */ 640, 480, SCHRO_CHROMA_420, @@ -323,7 +323,7 @@ struct _SchroFrameRate int denominator; }; -static SchroFrameRate schro_frame_rates[] = { +static const SchroFrameRate schro_frame_rates[] = { {0, 0}, {24000, 1001}, {24, 1}, -- 2.7.4