mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 15:19:57 +00:00
mpegtsdemux: Mark array static const and use G_N_ELEMENTS instead of sizeof
This commit is contained in:
parent
431ea2c697
commit
61c2b173c6
1 changed files with 3 additions and 2 deletions
|
@ -948,8 +948,9 @@ gst_mpegts_demux_send_tags_for_stream (GstMpegTSDemux * demux,
|
|||
GstTagList *list = NULL;
|
||||
|
||||
if (stream->ES_info) {
|
||||
guint8 lang_descs[] = { DESC_ISO_639_LANGUAGE, DESC_DVB_SUBTITLING };
|
||||
for (gint i = 0; i < sizeof (lang_descs); i++) {
|
||||
static const guint8 lang_descs[] =
|
||||
{ DESC_ISO_639_LANGUAGE, DESC_DVB_SUBTITLING };
|
||||
for (gint i = 0; i < G_N_ELEMENTS (lang_descs); i++) {
|
||||
guint8 *iso639_languages =
|
||||
gst_mpeg_descriptor_find (stream->ES_info, lang_descs[i]);
|
||||
if (iso639_languages) {
|
||||
|
|
Loading…
Reference in a new issue