You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-10-06 05:47:18 +02:00
flac muxer: fix writing of file header and STREAMINFO header from extradata
fixes Bug 119
This commit is contained in:
@@ -37,13 +37,11 @@ int ff_flac_write_header(AVIOContext *pb, AVCodecContext *codec,
|
||||
if (!avpriv_flac_is_extradata_valid(codec, &format, &streaminfo))
|
||||
return -1;
|
||||
|
||||
/* write "fLaC" stream marker and first metadata block header if needed */
|
||||
if (format == FLAC_EXTRADATA_FORMAT_STREAMINFO) {
|
||||
avio_write(pb, header, 8);
|
||||
}
|
||||
/* write "fLaC" stream marker and first metadata block header */
|
||||
avio_write(pb, header, 8);
|
||||
|
||||
/* write STREAMINFO or full header */
|
||||
avio_write(pb, codec->extradata, codec->extradata_size);
|
||||
/* write STREAMINFO */
|
||||
avio_write(pb, streaminfo, FLAC_STREAMINFO_SIZE);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user