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