mpegtsdemux: Mark array static const and use G_N_ELEMENTS instead of sizeof

This commit is contained in:
Sebastian Dröge 2010-12-15 20:49:57 +01:00
parent 431ea2c697
commit 61c2b173c6

View file

@ -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) {