X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fcrcenc.c;h=3b30cc91995148102805f2a3b53a61100452e876;hb=033a86f9bb6fd59ca71d4951b8e2e27cdc1b29d9;hp=c67fd099601a71f20aeb8d6ac4bc14f938c76614;hpb=0844b57c11cc3a1d5320c34f81f66d30f6706d2c;p=ffmpeg diff --git a/libavformat/crcenc.c b/libavformat/crcenc.c index c67fd099601..3b30cc91995 100644 --- a/libavformat/crcenc.c +++ b/libavformat/crcenc.c @@ -50,17 +50,17 @@ static int crc_write_trailer(struct AVFormatContext *s) snprintf(buf, sizeof(buf), "CRC=0x%08x\n", crc->crcval); avio_write(s->pb, buf, strlen(buf)); - avio_flush(s->pb); + return 0; } AVOutputFormat ff_crc_muxer = { .name = "crc", - .long_name = NULL_IF_CONFIG_SMALL("CRC testing format"), + .long_name = NULL_IF_CONFIG_SMALL("CRC testing"), .extensions = "", .priv_data_size = sizeof(CRCState), - .audio_codec = CODEC_ID_PCM_S16LE, - .video_codec = CODEC_ID_RAWVIDEO, + .audio_codec = AV_CODEC_ID_PCM_S16LE, + .video_codec = AV_CODEC_ID_RAWVIDEO, .write_header = crc_write_header, .write_packet = crc_write_packet, .write_trailer = crc_write_trailer,