Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
desc 48: Update 'desc48_get_provider' to match 'desc48_get_service'
· f95529b6
Georgi Chorbadzhiyski
authored
May 01, 2018
f95529b6
Merge branch 'gfto-desc_48-fix'
· 2bb9f98e
Christophe Massiot
authored
Apr 30, 2018
2bb9f98e
Hide whitespace changes
Inline
Side-by-side
dvb/si/desc_48.h
View file @
2bb9f98e
...
...
@@ -72,10 +72,10 @@ static inline void desc48_set_provider(uint8_t *p_desc,
memcpy
(
p
+
1
,
p_provider
,
i_length
);
}
static
inline
const
uint8_t
*
desc48_get_provider
(
const
uint8_t
*
p_desc
,
static
inline
uint8_t
*
desc48_get_provider
(
const
uint8_t
*
p_desc
,
uint8_t
*
pi_length
)
{
const
uint8_t
*
p
=
p_desc
+
DESC48_HEADER_SIZE
;
uint8_t
*
p
=
p_desc
+
DESC48_HEADER_SIZE
;
*
pi_length
=
p
[
0
];
return
p
+
1
;
}
...
...