~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to ffmpeg/libavformat/wav.c

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-25 15:47:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080225154712-qvr11ekcea4c9ry8
Tags: 1.1.6-0.1ubuntu1
* Merge from debian-multimedia (LP: #120003), Ubuntu Changes:
 - For ffmpeg-related build-deps, remove cvs from package names.
 - Standards-Version 3.7.3
 - Maintainer Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
2
 
 * WAV encoder and decoder
 
1
/*
 
2
 * WAV muxer and demuxer
3
3
 * Copyright (c) 2001, 2002 Fabrice Bellard.
4
4
 *
5
 
 * This library is free software; you can redistribute it and/or
 
5
 * This file is part of FFmpeg.
 
6
 *
 
7
 * FFmpeg is free software; you can redistribute it and/or
6
8
 * modify it under the terms of the GNU Lesser General Public
7
9
 * License as published by the Free Software Foundation; either
8
 
 * version 2 of the License, or (at your option) any later version.
 
10
 * version 2.1 of the License, or (at your option) any later version.
9
11
 *
10
 
 * This library is distributed in the hope that it will be useful,
 
12
 * FFmpeg is distributed in the hope that it will be useful,
11
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
15
 * Lesser General Public License for more details.
14
16
 *
15
17
 * You should have received a copy of the GNU Lesser General Public
16
 
 * License along with this library; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 * License along with FFmpeg; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
20
 */
19
21
#include "avformat.h"
20
 
#include "avi.h"
21
 
 
22
 
const CodecTag codec_wav_tags[] = {
23
 
    { CODEC_ID_MP2, 0x50 },
24
 
    { CODEC_ID_MP3, 0x55 },
25
 
    { CODEC_ID_AC3, 0x2000 },
26
 
    { CODEC_ID_PCM_S16LE, 0x01 },
27
 
    { CODEC_ID_PCM_U8, 0x01 }, /* must come after s16le in this list */
28
 
    { CODEC_ID_PCM_ALAW, 0x06 },
29
 
    { CODEC_ID_PCM_MULAW, 0x07 },
30
 
    { CODEC_ID_ADPCM_MS, 0x02 },
31
 
    { CODEC_ID_ADPCM_IMA_WAV, 0x11 },
32
 
    { CODEC_ID_ADPCM_IMA_DK4, 0x61 },  /* rogue format number */
33
 
    { CODEC_ID_ADPCM_IMA_DK3, 0x62 },  /* rogue format number */
34
 
    { CODEC_ID_WMAV1, 0x160 },
35
 
    { CODEC_ID_WMAV2, 0x161 },
36
 
    { 0, 0 },
37
 
};
38
 
 
39
 
/* WAVEFORMATEX header */
40
 
/* returns the size or -1 on error */
41
 
int put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
42
 
{
43
 
    int bps, blkalign, bytespersec;
44
 
    int hdrsize = 18;
45
 
 
46
 
    if(!enc->codec_tag)
47
 
       enc->codec_tag = codec_get_tag(codec_wav_tags, enc->codec_id);
48
 
    if(!enc->codec_tag)
49
 
        return -1;
50
 
 
51
 
    put_le16(pb, enc->codec_tag);
52
 
    put_le16(pb, enc->channels);
53
 
    put_le32(pb, enc->sample_rate);
54
 
    if (enc->codec_id == CODEC_ID_PCM_U8 ||
55
 
        enc->codec_id == CODEC_ID_PCM_ALAW ||
56
 
        enc->codec_id == CODEC_ID_PCM_MULAW) {
57
 
        bps = 8;
58
 
    } else if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) {
59
 
        bps = 0;
60
 
    } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV || enc->codec_id == CODEC_ID_ADPCM_MS) {
61
 
        bps = 4;
62
 
    } else {
63
 
        bps = 16;
64
 
    }
65
 
    
66
 
    if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) {
67
 
        blkalign = 1;
68
 
        //blkalign = 144 * enc->bit_rate/enc->sample_rate;
69
 
    } else if (enc->block_align != 0) { /* specified by the codec */
70
 
        blkalign = enc->block_align;
71
 
    } else
72
 
        blkalign = enc->channels*bps >> 3;
73
 
    if (enc->codec_id == CODEC_ID_PCM_U8 ||
74
 
        enc->codec_id == CODEC_ID_PCM_S16LE) {
75
 
        bytespersec = enc->sample_rate * blkalign;
76
 
    } else {
77
 
        bytespersec = enc->bit_rate / 8;
78
 
    }
79
 
    put_le32(pb, bytespersec); /* bytes per second */
80
 
    put_le16(pb, blkalign); /* block align */
81
 
    put_le16(pb, bps); /* bits per sample */
82
 
    if (enc->codec_id == CODEC_ID_MP3) {
83
 
        put_le16(pb, 12); /* wav_extra_size */
84
 
        hdrsize += 12;
85
 
        put_le16(pb, 1); /* wID */
86
 
        put_le32(pb, 2); /* fdwFlags */
87
 
        put_le16(pb, 1152); /* nBlockSize */
88
 
        put_le16(pb, 1); /* nFramesPerBlock */
89
 
        put_le16(pb, 1393); /* nCodecDelay */
90
 
    } else if (enc->codec_id == CODEC_ID_MP2) {
91
 
        put_le16(pb, 22); /* wav_extra_size */
92
 
        hdrsize += 22;
93
 
        put_le16(pb, 2);  /* fwHeadLayer */
94
 
        put_le32(pb, enc->bit_rate); /* dwHeadBitrate */
95
 
        put_le16(pb, enc->channels == 2 ? 1 : 8); /* fwHeadMode */
96
 
        put_le16(pb, 0);  /* fwHeadModeExt */
97
 
        put_le16(pb, 1);  /* wHeadEmphasis */
98
 
        put_le16(pb, 16); /* fwHeadFlags */
99
 
        put_le32(pb, 0);  /* dwPTSLow */
100
 
        put_le32(pb, 0);  /* dwPTSHigh */
101
 
    } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) {
102
 
        put_le16(pb, 2); /* wav_extra_size */
103
 
        put_le16(pb, ((enc->block_align - 4 * enc->channels) / (4 * enc->channels)) * 8 + 1); /* wSamplesPerBlock */
104
 
    } else
105
 
        put_le16(pb, 0); /* wav_extra_size */
106
 
 
107
 
    return hdrsize;
108
 
}
109
 
 
110
 
/* We could be given one of the three possible structures here:
111
 
 * WAVEFORMAT, PCMWAVEFORMAT or WAVEFORMATEX. Each structure
112
 
 * is an expansion of the previous one with the fields added
113
 
 * at the bottom. PCMWAVEFORMAT adds 'WORD wBitsPerSample' and
114
 
 * WAVEFORMATEX adds 'WORD  cbSize' and basically makes itself
115
 
 * an openended structure.
116
 
 */
117
 
void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size) 
118
 
{
119
 
    int id;
120
 
 
121
 
    id = get_le16(pb);
122
 
    codec->codec_type = CODEC_TYPE_AUDIO;
123
 
    codec->codec_tag = id;
124
 
    codec->channels = get_le16(pb);
125
 
    codec->sample_rate = get_le32(pb);
126
 
    codec->bit_rate = get_le32(pb) * 8;
127
 
    codec->block_align = get_le16(pb);
128
 
    if (size == 14) {  /* We're dealing with plain vanilla WAVEFORMAT */
129
 
        codec->bits_per_sample = 8;
130
 
    }else
131
 
        codec->bits_per_sample = get_le16(pb);
132
 
    codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample);
133
 
 
134
 
    if (size > 16) {  /* We're obviously dealing with WAVEFORMATEX */
135
 
        codec->extradata_size = get_le16(pb);
136
 
        if (codec->extradata_size > 0) {
137
 
            if (codec->extradata_size > size - 18)
138
 
                codec->extradata_size = size - 18;
139
 
            codec->extradata = av_mallocz(codec->extradata_size);
140
 
            get_buffer(pb, codec->extradata, codec->extradata_size);
141
 
        } else
142
 
            codec->extradata_size = 0;
143
 
        
144
 
        /* It is possible for the chunk to contain garbage at the end */
145
 
        if (size - codec->extradata_size - 18 > 0)
146
 
            url_fskip(pb, size - codec->extradata_size - 18);
147
 
    }
148
 
}
149
 
 
150
 
 
151
 
int wav_codec_get_id(unsigned int tag, int bps)
152
 
{
153
 
    int id;
154
 
    id = codec_get_id(codec_wav_tags, tag);
155
 
    if (id <= 0)
156
 
        return id;
157
 
    /* handle specific u8 codec */
158
 
    if (id == CODEC_ID_PCM_S16LE && bps == 8)
159
 
        id = CODEC_ID_PCM_U8;
160
 
    return id;
161
 
}
 
22
#include "allformats.h"
 
23
#include "riff.h"
162
24
 
163
25
typedef struct {
164
26
    offset_t data;
 
27
    offset_t data_end;
 
28
    int64_t minpts;
 
29
    int64_t maxpts;
 
30
    int last_duration;
165
31
} WAVContext;
166
32
 
 
33
#ifdef CONFIG_MUXERS
167
34
static int wav_write_header(AVFormatContext *s)
168
35
{
169
36
    WAVContext *wav = s->priv_data;
170
37
    ByteIOContext *pb = &s->pb;
171
 
    offset_t fmt;
 
38
    offset_t fmt, fact;
172
39
 
173
40
    put_tag(pb, "RIFF");
174
41
    put_le32(pb, 0); /* file length */
176
43
 
177
44
    /* format header */
178
45
    fmt = start_tag(pb, "fmt ");
179
 
    if (put_wav_header(pb, &s->streams[0]->codec) < 0) {
 
46
    if (put_wav_header(pb, s->streams[0]->codec) < 0) {
180
47
        av_free(wav);
181
48
        return -1;
182
49
    }
183
50
    end_tag(pb, fmt);
184
51
 
 
52
    if(s->streams[0]->codec->codec_tag != 0x01 /* hence for all other than PCM */
 
53
       && !url_is_streamed(&s->pb)) {
 
54
        fact = start_tag(pb, "fact");
 
55
        put_le32(pb, 0);
 
56
        end_tag(pb, fact);
 
57
    }
 
58
 
 
59
    av_set_pts_info(s->streams[0], 64, 1, s->streams[0]->codec->sample_rate);
 
60
    wav->maxpts = wav->last_duration = 0;
 
61
    wav->minpts = INT64_MAX;
 
62
 
185
63
    /* data header */
186
64
    wav->data = start_tag(pb, "data");
187
 
    
 
65
 
188
66
    put_flush_packet(pb);
189
67
 
190
68
    return 0;
191
69
}
192
70
 
193
 
static int wav_write_packet(AVFormatContext *s, int stream_index_ptr,
194
 
                            const uint8_t *buf, int size, int64_t pts)
 
71
static int wav_write_packet(AVFormatContext *s, AVPacket *pkt)
195
72
{
196
73
    ByteIOContext *pb = &s->pb;
197
 
    put_buffer(pb, buf, size);
 
74
    WAVContext *wav = s->priv_data;
 
75
    put_buffer(pb, pkt->data, pkt->size);
 
76
    if(pkt->pts != AV_NOPTS_VALUE) {
 
77
        wav->minpts = FFMIN(wav->minpts, pkt->pts);
 
78
        wav->maxpts = FFMAX(wav->maxpts, pkt->pts);
 
79
        wav->last_duration = pkt->duration;
 
80
    } else
 
81
        av_log(s, AV_LOG_ERROR, "wav_write_packet: NOPTS\n");
198
82
    return 0;
199
83
}
200
84
 
214
98
        url_fseek(pb, file_size, SEEK_SET);
215
99
 
216
100
        put_flush_packet(pb);
 
101
 
 
102
        if(s->streams[0]->codec->codec_tag != 0x01) {
 
103
            /* Update num_samps in fact chunk */
 
104
            int number_of_samples;
 
105
            number_of_samples = av_rescale(wav->maxpts - wav->minpts + wav->last_duration,
 
106
                                           s->streams[0]->codec->sample_rate * (int64_t)s->streams[0]->time_base.num,
 
107
                                           s->streams[0]->time_base.den);
 
108
            url_fseek(pb, wav->data-12, SEEK_SET);
 
109
            put_le32(pb, number_of_samples);
 
110
            url_fseek(pb, file_size, SEEK_SET);
 
111
            put_flush_packet(pb);
 
112
        }
217
113
    }
218
114
    return 0;
219
115
}
 
116
#endif //CONFIG_MUXERS
220
117
 
221
118
/* return the size of the found tag */
222
119
/* XXX: > 2GB ? */
261
158
    unsigned int tag;
262
159
    ByteIOContext *pb = &s->pb;
263
160
    AVStream *st;
 
161
    WAVContext *wav = s->priv_data;
264
162
 
265
163
    /* check RIFF header */
266
164
    tag = get_le32(pb);
271
169
    tag = get_le32(pb);
272
170
    if (tag != MKTAG('W', 'A', 'V', 'E'))
273
171
        return -1;
274
 
    
 
172
 
275
173
    /* parse fmt header */
276
174
    size = find_tag(pb, MKTAG('f', 'm', 't', ' '));
277
175
    if (size < 0)
280
178
    if (!st)
281
179
        return AVERROR_NOMEM;
282
180
 
283
 
    get_wav_header(pb, &st->codec, size);
284
 
    
 
181
    get_wav_header(pb, st->codec, size);
 
182
    st->need_parsing = 1;
 
183
 
 
184
    av_set_pts_info(st, 64, 1, st->codec->sample_rate);
 
185
 
285
186
    size = find_tag(pb, MKTAG('d', 'a', 't', 'a'));
286
187
    if (size < 0)
287
188
        return -1;
 
189
    wav->data_end= url_ftell(pb) + size;
288
190
    return 0;
289
191
}
290
192
 
293
195
static int wav_read_packet(AVFormatContext *s,
294
196
                           AVPacket *pkt)
295
197
{
296
 
    int ret;
 
198
    int ret, size, left;
 
199
    AVStream *st;
 
200
    WAVContext *wav = s->priv_data;
297
201
 
298
202
    if (url_feof(&s->pb))
299
 
        return -EIO;
300
 
    if (av_new_packet(pkt, MAX_SIZE))
301
 
        return -EIO;
 
203
        return AVERROR_IO;
 
204
    st = s->streams[0];
 
205
 
 
206
    left= wav->data_end - url_ftell(&s->pb);
 
207
    if(left <= 0){
 
208
        left = find_tag(&(s->pb), MKTAG('d', 'a', 't', 'a'));
 
209
        if (left < 0) {
 
210
            return AVERROR_IO;
 
211
        }
 
212
        wav->data_end= url_ftell(&s->pb) + left;
 
213
    }
 
214
 
 
215
    size = MAX_SIZE;
 
216
    if (st->codec->block_align > 1) {
 
217
        if (size < st->codec->block_align)
 
218
            size = st->codec->block_align;
 
219
        size = (size / st->codec->block_align) * st->codec->block_align;
 
220
    }
 
221
    size= FFMIN(size, left);
 
222
    ret= av_get_packet(&s->pb, pkt, size);
 
223
    if (ret <= 0)
 
224
        return AVERROR_IO;
302
225
    pkt->stream_index = 0;
303
226
 
304
 
    ret = get_buffer(&s->pb, pkt->data, pkt->size);
305
 
    if (ret < 0)
306
 
        av_free_packet(pkt);
307
227
    /* note: we need to modify the packet size here to handle the last
308
228
       packet */
309
229
    pkt->size = ret;
315
235
    return 0;
316
236
}
317
237
 
318
 
static AVInputFormat wav_iformat = {
 
238
static int wav_read_seek(AVFormatContext *s,
 
239
                         int stream_index, int64_t timestamp, int flags)
 
240
{
 
241
    AVStream *st;
 
242
 
 
243
    st = s->streams[0];
 
244
    switch(st->codec->codec_id) {
 
245
    case CODEC_ID_MP2:
 
246
    case CODEC_ID_MP3:
 
247
    case CODEC_ID_AC3:
 
248
    case CODEC_ID_DTS:
 
249
        /* use generic seeking with dynamically generated indexes */
 
250
        return -1;
 
251
    default:
 
252
        break;
 
253
    }
 
254
    return pcm_read_seek(s, stream_index, timestamp, flags);
 
255
}
 
256
 
 
257
#ifdef CONFIG_WAV_DEMUXER
 
258
AVInputFormat wav_demuxer = {
319
259
    "wav",
320
260
    "wav format",
321
 
    0,
 
261
    sizeof(WAVContext),
322
262
    wav_probe,
323
263
    wav_read_header,
324
264
    wav_read_packet,
325
265
    wav_read_close,
 
266
    wav_read_seek,
 
267
    .flags= AVFMT_GENERIC_INDEX,
 
268
    .codec_tag= (const AVCodecTag*[]){codec_wav_tags, 0},
326
269
};
327
 
 
328
 
static AVOutputFormat wav_oformat = {
 
270
#endif
 
271
#ifdef CONFIG_WAV_MUXER
 
272
AVOutputFormat wav_muxer = {
329
273
    "wav",
330
274
    "wav format",
331
275
    "audio/x-wav",
336
280
    wav_write_header,
337
281
    wav_write_packet,
338
282
    wav_write_trailer,
 
283
    .codec_tag= (const AVCodecTag*[]){codec_wav_tags, 0},
339
284
};
340
 
 
341
 
int wav_init(void)
342
 
{
343
 
    av_register_input_format(&wav_iformat);
344
 
    av_register_output_format(&wav_oformat);
345
 
    return 0;
346
 
}
 
285
#endif