Commit ac7128a9 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '176903ce'

* commit '176903ce':
  rtpdec_h264: Return immediately on errors in h264_handle_packet_stap_a
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 48e661b3 176903ce
......@@ -208,6 +208,7 @@ static int h264_handle_packet_stap_a(AVFormatContext *ctx, PayloadContext *data,
} else {
av_log(ctx, AV_LOG_ERROR,
"nal size exceeds length: %d %d\n", nal_size, src_len);
return AVERROR_INVALIDDATA;
}
// eat what we handled
......
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