1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-28 20:53:54 +02:00

avformat/avienc: Avoid allocating AVPacket

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2021-03-18 07:06:29 +01:00
parent 4e6e14f496
commit f660b8d1de

View File

@ -272,9 +272,7 @@ static int avi_write_header(AVFormatContext *s)
return AVERROR(EINVAL);
}
avi->empty_packet = av_packet_alloc();
if (!avi->empty_packet)
return AVERROR(ENOMEM);
avi->empty_packet = ffformatcontext(s)->pkt;
for (n = 0; n < s->nb_streams; n++) {
s->streams[n]->priv_data = av_mallocz(sizeof(AVIStream));
@ -972,10 +970,6 @@ static int avi_write_trailer(AVFormatContext *s)
static void avi_deinit(AVFormatContext *s)
{
AVIContext *avi = s->priv_data;
av_packet_free(&avi->empty_packet);
for (int i = 0; i < s->nb_streams; i++) {
AVIStream *avist = s->streams[i]->priv_data;
if (!avist)