Commit 4ed9972d authored by Michael Krufky's avatar Michael Krufky Committed by Jean-Paul Saman

dr_a1: rename dvbpsi_service_location_element_s::i_ISO_639_language_code to i_iso_639_code

Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
parent aa58f3a4
...@@ -91,7 +91,7 @@ dvbpsi_service_location_dr_t * dvbpsi_DecodeServiceLocationDr( ...@@ -91,7 +91,7 @@ dvbpsi_service_location_dr_t * dvbpsi_DecodeServiceLocationDr(
p_element->i_stream_type = dvbpsi_get_bits(buf, 0, 8); p_element->i_stream_type = dvbpsi_get_bits(buf, 0, 8);
p_element->i_elementary_PID = dvbpsi_get_bits(buf, 11, 13); p_element->i_elementary_PID = dvbpsi_get_bits(buf, 11, 13);
memcpy(p_element->i_ISO_639_language_code, &buf[3], sizeof(p_element->i_ISO_639_language_code)); memcpy(p_element->i_iso_639_code, &buf[3], 3);
if (p_decoded->p_first_element == NULL) if (p_decoded->p_first_element == NULL)
p_decoded->p_first_element = p_element; p_decoded->p_first_element = p_element;
......
...@@ -33,7 +33,7 @@ typedef struct dvbpsi_service_location_element_s ...@@ -33,7 +33,7 @@ typedef struct dvbpsi_service_location_element_s
{ {
uint8_t i_stream_type; uint8_t i_stream_type;
uint16_t i_elementary_PID; uint16_t i_elementary_PID;
char i_ISO_639_language_code[3]; char i_iso_639_code[3];
struct dvbpsi_service_location_element_s * p_next; struct dvbpsi_service_location_element_s * p_next;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment