From 400615b68b1f741b2bc267c97b8dcf2caa7c913d Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Wed, 14 Feb 2007 11:01:05 +0000 Subject: use aiff when we can, some players only support aiff Originally committed as revision 7978 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/aiff.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'libavformat/aiff.c') diff --git a/libavformat/aiff.c b/libavformat/aiff.c index 813c7626a4..0d75f3be30 100644 --- a/libavformat/aiff.c +++ b/libavformat/aiff.c @@ -163,26 +163,32 @@ static int aiff_write_header(AVFormatContext *s) ByteIOContext *pb = &s->pb; AVCodecContext *enc = s->streams[0]->codec; AVExtFloat sample_rate; + int aifc = 0; /* First verify if format is ok */ if (!enc->codec_tag) { return -1; } + if (enc->codec_tag != MKTAG('N','O','N','E')) + aifc = 1; + /* FORM AIFF header */ put_tag(pb, "FORM"); aiff->form = url_ftell(pb); put_be32(pb, 0); /* file length */ - put_tag(pb, "AIFC"); + put_tag(pb, aifc ? "AIFC" : "AIFF"); + if (aifc) { /* Version chunk */ put_tag(pb, "FVER"); put_be32(pb, 4); put_be32(pb, 0xA2805140); + } /* Common chunk */ put_tag(pb, "COMM"); - put_be32(pb, 24); /* size */ + put_be32(pb, aifc ? 24 : 18); /* size */ put_be16(pb, enc->channels); /* Number of channels */ aiff->frames = url_ftell(pb); @@ -202,8 +208,10 @@ static int aiff_write_header(AVFormatContext *s) sample_rate = av_dbl2ext((double)enc->sample_rate); put_buffer(pb, (uint8_t*)&sample_rate, sizeof(sample_rate)); + if (aifc) { put_le32(pb, enc->codec_tag); put_be16(pb, 0); + } /* Sound data chunk */ put_tag(pb, "SSND"); -- cgit v1.2.3