Commit e0f4129b authored by Georgi Chorbadzhiyski's avatar Georgi Chorbadzhiyski

dvb/si: Complete support for descriptor 0x48 (Service descriptor).

Add desc48_set_length() function.
parent f2a1a8b8
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
* Copyright (C) 2009-2010 VideoLAN * Copyright (C) 2009-2010 VideoLAN
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* Georgi Chorbadzhiyski <georgi@unixsol.org>
* *
* Permission is hereby granted, free of charge, to any person obtaining * Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the * a copy of this software and associated documentation files (the
...@@ -96,6 +97,16 @@ static inline uint8_t *desc48_get_service(const uint8_t *p_desc, ...@@ -96,6 +97,16 @@ static inline uint8_t *desc48_get_service(const uint8_t *p_desc,
return p + 1; return p + 1;
} }
static inline void desc48_set_length(uint8_t *p_desc)
{
uint8_t i_provider_len, i_service_len;
desc48_get_provider(p_desc, &i_provider_len);
desc48_get_service(p_desc, &i_service_len);
desc_set_length(p_desc, DESC48_HEADER_SIZE - DESC_HEADER_SIZE
+ 1 + i_provider_len
+ 1 + i_service_len);
}
static inline bool desc48_validate(const uint8_t *p_desc) static inline bool desc48_validate(const uint8_t *p_desc)
{ {
uint8_t i_length = desc_get_length(p_desc); uint8_t i_length = desc_get_length(p_desc);
......
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