mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
do not read over the end of the packet
fixes issue 2543 Originally committed as revision 26367 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
462b26202b
commit
f734671925
@ -1506,6 +1506,12 @@ static int decode_packet(AVCodecContext *avctx,
|
||||
s->packet_sequence_number = packet_sequence_number;
|
||||
|
||||
if (num_bits_prev_frame > 0) {
|
||||
int remaining_packet_bits = s->buf_bit_size - get_bits_count(gb);
|
||||
if (num_bits_prev_frame >= remaining_packet_bits) {
|
||||
num_bits_prev_frame = remaining_packet_bits;
|
||||
s->packet_done = 1;
|
||||
}
|
||||
|
||||
/** append the previous frame data to the remaining data from the
|
||||
previous packet to create a full frame */
|
||||
save_bits(s, gb, num_bits_prev_frame, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user