avformat/spdifenc: Replace write_trailer by deinit

The write_trailer function doesn't write anything anyway. It only frees
memory.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Andreas Rheinhardt 2019-12-26 11:53:26 +01:00 committed by Michael Niedermayer
parent ef91e3955a
commit 827bdc8418
1 changed files with 2 additions and 3 deletions

View File

@ -482,12 +482,11 @@ static int spdif_write_header(AVFormatContext *s)
return 0;
}
static int spdif_write_trailer(AVFormatContext *s)
static void spdif_deinit(AVFormatContext *s)
{
IEC61937Context *ctx = s->priv_data;
av_freep(&ctx->buffer);
av_freep(&ctx->hd_buf);
return 0;
}
static av_always_inline void spdif_put_16(IEC61937Context *ctx,
@ -560,7 +559,7 @@ AVOutputFormat ff_spdif_muxer = {
.video_codec = AV_CODEC_ID_NONE,
.write_header = spdif_write_header,
.write_packet = spdif_write_packet,
.write_trailer = spdif_write_trailer,
.deinit = spdif_deinit,
.flags = AVFMT_NOTIMESTAMPS,
.priv_class = &spdif_class,
};