diff mbox series

[FFmpeg-devel,1/2] avformat/crcenc: Make init function out of write_header

Message ID AM7PR03MB66603C58C141211B033779C28F799@AM7PR03MB6660.eurprd03.prod.outlook.com
State Accepted
Commit ba27e248cf5a817e13e4f22f08f6dd8a23da536c
Headers show
Series [FFmpeg-devel,1/2] avformat/crcenc: Make init function out of write_header | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished
andriy/make_ppc success Make finished
andriy/make_fate_ppc success Make fate finished

Commit Message

Andreas Rheinhardt Dec. 18, 2021, 10:58 a.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavformat/crcenc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/libavformat/crcenc.c b/libavformat/crcenc.c
index c58fbd6c88..9f40dd4ec0 100644
--- a/libavformat/crcenc.c
+++ b/libavformat/crcenc.c
@@ -28,7 +28,7 @@  typedef struct CRCState {
     uint32_t crcval;
 } CRCState;
 
-static int crc_write_header(struct AVFormatContext *s)
+static int crc_init(struct AVFormatContext *s)
 {
     CRCState *crc = s->priv_data;
 
@@ -60,7 +60,7 @@  const AVOutputFormat ff_crc_muxer = {
     .priv_data_size    = sizeof(CRCState),
     .audio_codec       = AV_CODEC_ID_PCM_S16LE,
     .video_codec       = AV_CODEC_ID_RAWVIDEO,
-    .write_header      = crc_write_header,
+    .init              = crc_init,
     .write_packet      = crc_write_packet,
     .write_trailer     = crc_write_trailer,
     .flags             = AVFMT_NOTIMESTAMPS,