Commit 1c7e2cf9 authored by Andrew Shulgin's avatar Andrew Shulgin Committed by Michael Niedermayer

avformat/rtpdec_h264: Ignore invalid sprop-parameter-sets missing PPS

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 7dabc78c
......@@ -166,6 +166,10 @@ static int sdp_parse_fmtp_config_h264(AVFormatContext *s,
parse_profile_level_id(s, h264_data, value);
} else if (!strcmp(attr, "sprop-parameter-sets")) {
int ret;
if (value[strlen(value) - 1] == ',') {
av_log(s, AV_LOG_WARNING, "Missing PPS in sprop-parameter-sets, ignoring\n");
return 0;
}
codec->extradata_size = 0;
av_freep(&codec->extradata);
ret = ff_h264_parse_sprop_parameter_sets(s, &codec->extradata,
......
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