Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvb_psi: log ATSC extended channel name
  • Loading branch information
laurimyllari authored and perexg committed Oct 22, 2015
1 parent abc6c38 commit f8c5e46
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/input/mpegts/dvb_psi.c
Expand Up @@ -1700,7 +1700,12 @@ atsc_vct_callback
unsigned int len, tag;
tag = ptr[32+j];
len = ptr[33+j];
tvhdebug("vct", " tag 0x%02x, len %d", tag, len);
if (tag == ATSC_DESC_EXT_CHANNEL_NAME) {
tvhdebug("vct", " extended channel name, len %d", len);
atsc_get_string(NULL, 0, &ptr[34+j], len, " ");
} else {
tvhdebug("vct", " tag 0x%02x, len %d", tag, len);
}
j += len + 2;
}

Expand Down

0 comments on commit f8c5e46

Please sign in to comment.