Commit a4c13f95 authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit 'f9ab4fe1'

* commit 'f9ab4fe1':
  h264: Discard currently unsupported registered sei
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents 59cae191 f9ab4fe1
......@@ -180,6 +180,12 @@ static int decode_registered_user_data_closed_caption(H264Context *h, int size)
skip_bits(&h->gb, 8); // marker_bits
}
}
} else {
int i;
avpriv_request_sample(h->avctx, "Subtitles with data type 0x%02x",
user_data_type_code);
for (i = 0; i < size - 1; i++)
skip_bits(&h->gb, 8);
}
return 0;
......
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