mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
ef91e3955a
commit
827bdc8418
|
@ -482,12 +482,11 @@ static int spdif_write_header(AVFormatContext *s)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int spdif_write_trailer(AVFormatContext *s)
|
static void spdif_deinit(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
IEC61937Context *ctx = s->priv_data;
|
IEC61937Context *ctx = s->priv_data;
|
||||||
av_freep(&ctx->buffer);
|
av_freep(&ctx->buffer);
|
||||||
av_freep(&ctx->hd_buf);
|
av_freep(&ctx->hd_buf);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static av_always_inline void spdif_put_16(IEC61937Context *ctx,
|
static av_always_inline void spdif_put_16(IEC61937Context *ctx,
|
||||||
|
@ -560,7 +559,7 @@ AVOutputFormat ff_spdif_muxer = {
|
||||||
.video_codec = AV_CODEC_ID_NONE,
|
.video_codec = AV_CODEC_ID_NONE,
|
||||||
.write_header = spdif_write_header,
|
.write_header = spdif_write_header,
|
||||||
.write_packet = spdif_write_packet,
|
.write_packet = spdif_write_packet,
|
||||||
.write_trailer = spdif_write_trailer,
|
.deinit = spdif_deinit,
|
||||||
.flags = AVFMT_NOTIMESTAMPS,
|
.flags = AVFMT_NOTIMESTAMPS,
|
||||||
.priv_class = &spdif_class,
|
.priv_class = &spdif_class,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue