Browse Source

MT#55283 fix old gcc error p2

Change-Id: I8b4c82c4fd0b03b8339c8f0d014d9d2f095b2bf8
pull/2008/head
Richard Fuchs 3 months ago
parent
commit
29886ae555
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      daemon/media_socket.c

+ 3
- 3
daemon/media_socket.c View File

@ -2127,7 +2127,7 @@ static size_t rtpext_printer_extmap_print(struct rtp_header *rh, void *dst, cons
dst += 4; // fixed size header
void *first = dst;
for (__auto_type l = mp->extmap.head; l; l = l->next) {
for (auto_iter(l, mp->extmap.head); l; l = l->next) {
__auto_type ext = l->data;
if (!extmap_has_ext(mp, ext))
@ -2216,7 +2216,7 @@ size_t extmap_length_short(const struct media_packet *mp) {
const extmap_data_q *q = &mp->extmap;
size_t ret = 4; // 0xbede + int16 length
for (__auto_type l = q->head; l; l = l->next) {
for (auto_iter(l, q->head); l; l = l->next) {
__auto_type ext = l->data;
if (!extmap_has_ext(mp, ext))
@ -2278,7 +2278,7 @@ size_t extmap_length_long(const struct media_packet *mp) {
const extmap_data_q *q = &mp->extmap;
size_t ret = 4; // 0x0100 + int16 length
for (__auto_type l = q->head; l; l = l->next) {
for (auto_iter(l, q->head); l; l = l->next) {
__auto_type ext = l->data;
if (!extmap_has_ext(mp, ext))


Loading…
Cancel
Save