forked from FFmpeg/FFmpeg
avcodec/pcm_rechunk_bsf: assert that in_pkt is empty after merging its data into out_pkt
If it's not empty here, then a leak would ocurr immediately after. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
453b524974
commit
86645bf0a6
1 changed files with 1 additions and 0 deletions
|
@ -139,6 +139,7 @@ static int rechunk_filter(AVBSFContext *ctx, AVPacket *pkt)
|
|||
av_packet_move_ref(pkt, s->out_pkt);
|
||||
return send_packet(s, nb_samples, pkt);
|
||||
}
|
||||
av_assert0(!s->in_pkt->size);
|
||||
} else if (s->in_pkt->size > data_size) {
|
||||
ret = av_packet_ref(pkt, s->in_pkt);
|
||||
if (ret < 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue