mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
diracparse: Constify some arrays
This commit is contained in:
parent
12f77b27e2
commit
29a358e8cd
1 changed files with 2 additions and 2 deletions
|
@ -165,7 +165,7 @@ dirac_sequence_header_parse (DiracSequenceHeader * header,
|
||||||
|
|
||||||
/* standard stuff */
|
/* standard stuff */
|
||||||
|
|
||||||
static DiracSequenceHeader schro_video_formats[] = {
|
static const DiracSequenceHeader schro_video_formats[] = {
|
||||||
{0, 0, 0, 0,
|
{0, 0, 0, 0,
|
||||||
0, /* custom */
|
0, /* custom */
|
||||||
640, 480, SCHRO_CHROMA_420,
|
640, 480, SCHRO_CHROMA_420,
|
||||||
|
@ -323,7 +323,7 @@ struct _SchroFrameRate
|
||||||
int denominator;
|
int denominator;
|
||||||
};
|
};
|
||||||
|
|
||||||
static SchroFrameRate schro_frame_rates[] = {
|
static const SchroFrameRate schro_frame_rates[] = {
|
||||||
{0, 0},
|
{0, 0},
|
||||||
{24000, 1001},
|
{24000, 1001},
|
||||||
{24, 1},
|
{24, 1},
|
||||||
|
|
Loading…
Reference in a new issue