]> git.sesse.net Git - ffmpeg/blob - libavformat/wav.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / wav.c
1 /*
2  * WAV muxer and demuxer
3  * Copyright (c) 2001, 2002 Fabrice Bellard
4  *
5  * Sony Wave64 demuxer
6  * RF64 demuxer
7  * Copyright (c) 2009 Daniel Verkamp
8  *
9  * This file is part of FFmpeg.
10  *
11  * FFmpeg is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * FFmpeg is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with FFmpeg; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24  */
25
26 #include "libavutil/avassert.h"
27 #include "libavutil/dict.h"
28 #include "libavutil/log.h"
29 #include "libavutil/mathematics.h"
30 #include "libavutil/opt.h"
31 #include "avformat.h"
32 #include "internal.h"
33 #include "avio_internal.h"
34 #include "pcm.h"
35 #include "riff.h"
36 #include "avio.h"
37 #include "metadata.h"
38
39 typedef struct {
40     const AVClass *class;
41     int64_t data;
42     int64_t data_end;
43     int64_t minpts;
44     int64_t maxpts;
45     int last_duration;
46     int w64;
47     int write_bext;
48     int64_t smv_data_ofs;
49     int smv_block_size;
50     int smv_frames_per_jpeg;
51     int smv_block;
52     int smv_last_stream;
53     int smv_eof;
54     int audio_eof;
55     int ignore_length;
56 } WAVContext;
57
58 #if CONFIG_WAV_MUXER
59 static inline void bwf_write_bext_string(AVFormatContext *s, const char *key, int maxlen)
60 {
61     AVDictionaryEntry *tag;
62     int len = 0;
63
64     if (tag = av_dict_get(s->metadata, key, NULL, 0)) {
65         len = strlen(tag->value);
66         len = FFMIN(len, maxlen);
67         avio_write(s->pb, tag->value, len);
68     }
69
70     ffio_fill(s->pb, 0, maxlen - len);
71 }
72
73 static void bwf_write_bext_chunk(AVFormatContext *s)
74 {
75     AVDictionaryEntry *tmp_tag;
76     uint64_t time_reference = 0;
77     int64_t bext = ff_start_tag(s->pb, "bext");
78
79     bwf_write_bext_string(s, "description", 256);
80     bwf_write_bext_string(s, "originator", 32);
81     bwf_write_bext_string(s, "originator_reference", 32);
82     bwf_write_bext_string(s, "origination_date", 10);
83     bwf_write_bext_string(s, "origination_time", 8);
84
85     if (tmp_tag = av_dict_get(s->metadata, "time_reference", NULL, 0))
86         time_reference = strtoll(tmp_tag->value, NULL, 10);
87     avio_wl64(s->pb, time_reference);
88     avio_wl16(s->pb, 1);  // set version to 1
89
90     if (tmp_tag = av_dict_get(s->metadata, "umid", NULL, 0)) {
91         unsigned char umidpart_str[17] = {0};
92         int i;
93         uint64_t umidpart;
94         int len = strlen(tmp_tag->value+2);
95
96         for (i = 0; i < len/16; i++) {
97             memcpy(umidpart_str, tmp_tag->value + 2 + (i*16), 16);
98             umidpart = strtoll(umidpart_str, NULL, 16);
99             avio_wb64(s->pb, umidpart);
100         }
101         ffio_fill(s->pb, 0, 64 - i*8);
102     } else
103         ffio_fill(s->pb, 0, 64); // zero UMID
104
105     ffio_fill(s->pb, 0, 190); // Reserved
106
107     if (tmp_tag = av_dict_get(s->metadata, "coding_history", NULL, 0))
108         avio_put_str(s->pb, tmp_tag->value);
109
110     ff_end_tag(s->pb, bext);
111 }
112
113 static int wav_write_header(AVFormatContext *s)
114 {
115     WAVContext *wav = s->priv_data;
116     AVIOContext *pb = s->pb;
117     int64_t fmt, fact;
118
119     ffio_wfourcc(pb, "RIFF");
120     avio_wl32(pb, 0); /* file length */
121     ffio_wfourcc(pb, "WAVE");
122
123     /* format header */
124     fmt = ff_start_tag(pb, "fmt ");
125     if (ff_put_wav_header(pb, s->streams[0]->codec) < 0) {
126         av_log(s, AV_LOG_ERROR, "%s codec not supported in WAVE format\n",
127                s->streams[0]->codec->codec ? s->streams[0]->codec->codec->name : "NONE");
128         return -1;
129     }
130     ff_end_tag(pb, fmt);
131
132     if (s->streams[0]->codec->codec_tag != 0x01 /* hence for all other than PCM */
133         && s->pb->seekable) {
134         fact = ff_start_tag(pb, "fact");
135         avio_wl32(pb, 0);
136         ff_end_tag(pb, fact);
137     }
138
139     if (wav->write_bext)
140         bwf_write_bext_chunk(s);
141
142     avpriv_set_pts_info(s->streams[0], 64, 1, s->streams[0]->codec->sample_rate);
143     wav->maxpts = wav->last_duration = 0;
144     wav->minpts = INT64_MAX;
145
146     /* data header */
147     wav->data = ff_start_tag(pb, "data");
148
149     avio_flush(pb);
150
151     return 0;
152 }
153
154 static int wav_write_packet(AVFormatContext *s, AVPacket *pkt)
155 {
156     AVIOContext *pb  = s->pb;
157     WAVContext    *wav = s->priv_data;
158     avio_write(pb, pkt->data, pkt->size);
159     if(pkt->pts != AV_NOPTS_VALUE) {
160         wav->minpts        = FFMIN(wav->minpts, pkt->pts);
161         wav->maxpts        = FFMAX(wav->maxpts, pkt->pts);
162         wav->last_duration = pkt->duration;
163     } else
164         av_log(s, AV_LOG_ERROR, "wav_write_packet: NOPTS\n");
165     return 0;
166 }
167
168 static int wav_write_trailer(AVFormatContext *s)
169 {
170     AVIOContext *pb  = s->pb;
171     WAVContext    *wav = s->priv_data;
172     int64_t file_size;
173
174     avio_flush(pb);
175
176     if (s->pb->seekable) {
177         ff_end_tag(pb, wav->data);
178
179         /* update file size */
180         file_size = avio_tell(pb);
181         avio_seek(pb, 4, SEEK_SET);
182         avio_wl32(pb, (uint32_t)(file_size - 8));
183         avio_seek(pb, file_size, SEEK_SET);
184
185         avio_flush(pb);
186
187         if(s->streams[0]->codec->codec_tag != 0x01) {
188             /* Update num_samps in fact chunk */
189             int number_of_samples;
190             number_of_samples = av_rescale(wav->maxpts - wav->minpts + wav->last_duration,
191                                            s->streams[0]->codec->sample_rate * (int64_t)s->streams[0]->time_base.num,
192                                            s->streams[0]->time_base.den);
193             avio_seek(pb, wav->data-12, SEEK_SET);
194             avio_wl32(pb, number_of_samples);
195             avio_seek(pb, file_size, SEEK_SET);
196             avio_flush(pb);
197         }
198     }
199     return 0;
200 }
201
202 #define OFFSET(x) offsetof(WAVContext, x)
203 #define ENC AV_OPT_FLAG_ENCODING_PARAM
204 static const AVOption options[] = {
205     { "write_bext", "Write BEXT chunk.", OFFSET(write_bext), AV_OPT_TYPE_INT, { 0 }, 0, 1, ENC },
206     { NULL },
207 };
208
209 static const AVClass wav_muxer_class = {
210     .class_name = "WAV muxer",
211     .item_name  = av_default_item_name,
212     .option     = options,
213     .version    = LIBAVUTIL_VERSION_INT,
214 };
215
216 AVOutputFormat ff_wav_muxer = {
217     .name              = "wav",
218     .long_name         = NULL_IF_CONFIG_SMALL("WAV format"),
219     .mime_type         = "audio/x-wav",
220     .extensions        = "wav",
221     .priv_data_size    = sizeof(WAVContext),
222     .audio_codec       = CODEC_ID_PCM_S16LE,
223     .video_codec       = CODEC_ID_NONE,
224     .write_header      = wav_write_header,
225     .write_packet      = wav_write_packet,
226     .write_trailer     = wav_write_trailer,
227     .codec_tag= (const AVCodecTag* const []){ff_codec_wav_tags, 0},
228     .priv_class = &wav_muxer_class,
229 };
230 #endif /* CONFIG_WAV_MUXER */
231
232
233 #if CONFIG_WAV_DEMUXER
234
235 static int64_t next_tag(AVIOContext *pb, uint32_t *tag)
236 {
237     *tag = avio_rl32(pb);
238     return avio_rl32(pb);
239 }
240
241 /* return the size of the found tag */
242 static int64_t find_tag(AVIOContext *pb, uint32_t tag1)
243 {
244     unsigned int tag;
245     int64_t size;
246
247     for (;;) {
248         if (url_feof(pb))
249             return -1;
250         size = next_tag(pb, &tag);
251         if (tag == tag1)
252             break;
253         avio_skip(pb, size);
254     }
255     return size;
256 }
257
258 static int wav_probe(AVProbeData *p)
259 {
260     /* check file header */
261     if (p->buf_size <= 32)
262         return 0;
263     if (!memcmp(p->buf + 8, "WAVE", 4)) {
264         if (!memcmp(p->buf, "RIFF", 4))
265             /*
266               Since ACT demuxer has standard WAV header at top of it's own,
267               returning score is decreased to avoid probe conflict
268               between ACT and WAV.
269             */
270             return AVPROBE_SCORE_MAX - 1;
271         else if (!memcmp(p->buf,      "RF64", 4) &&
272                  !memcmp(p->buf + 12, "ds64", 4))
273             return AVPROBE_SCORE_MAX;
274     }
275     return 0;
276 }
277
278 static int wav_parse_fmt_tag(AVFormatContext *s, int64_t size, AVStream **st)
279 {
280     AVIOContext *pb = s->pb;
281     int ret;
282
283     /* parse fmt header */
284     *st = avformat_new_stream(s, NULL);
285     if (!*st)
286         return AVERROR(ENOMEM);
287
288     ret = ff_get_wav_header(pb, (*st)->codec, size);
289     if (ret < 0)
290         return ret;
291     (*st)->need_parsing = AVSTREAM_PARSE_FULL;
292
293     avpriv_set_pts_info(*st, 64, 1, (*st)->codec->sample_rate);
294
295     return 0;
296 }
297
298 static inline int wav_parse_bext_string(AVFormatContext *s, const char *key,
299                                         int length)
300 {
301     char temp[257];
302     int ret;
303
304     av_assert0(length <= sizeof(temp));
305     if ((ret = avio_read(s->pb, temp, length)) < 0)
306         return ret;
307
308     temp[length] = 0;
309
310     if (strlen(temp))
311         return av_dict_set(&s->metadata, key, temp, 0);
312
313     return 0;
314 }
315
316 static int wav_parse_bext_tag(AVFormatContext *s, int64_t size)
317 {
318     char temp[131], *coding_history;
319     int ret, x;
320     uint64_t time_reference;
321     int64_t umid_parts[8], umid_mask = 0;
322
323     if ((ret = wav_parse_bext_string(s, "description", 256)) < 0 ||
324         (ret = wav_parse_bext_string(s, "originator", 32)) < 0 ||
325         (ret = wav_parse_bext_string(s, "originator_reference", 32)) < 0 ||
326         (ret = wav_parse_bext_string(s, "origination_date", 10)) < 0 ||
327         (ret = wav_parse_bext_string(s, "origination_time", 8)) < 0)
328         return ret;
329
330     time_reference = avio_rl64(s->pb);
331     snprintf(temp, sizeof(temp), "%"PRIu64, time_reference);
332     if ((ret = av_dict_set(&s->metadata, "time_reference", temp, 0)) < 0)
333         return ret;
334
335     /* check if version is >= 1, in which case an UMID may be present */
336     if (avio_rl16(s->pb) >= 1) {
337         for (x = 0; x < 8; x++)
338             umid_mask |= umid_parts[x] = avio_rb64(s->pb);
339
340         if (umid_mask) {
341             /* the string formatting below is per SMPTE 330M-2004 Annex C */
342             if (umid_parts[4] == 0 && umid_parts[5] == 0 && umid_parts[6] == 0 && umid_parts[7] == 0) {
343                 /* basic UMID */
344                 snprintf(temp, sizeof(temp), "0x%016"PRIX64"%016"PRIX64"%016"PRIX64"%016"PRIX64,
345                          umid_parts[0], umid_parts[1], umid_parts[2], umid_parts[3]);
346             } else {
347                 /* extended UMID */
348                 snprintf(temp, sizeof(temp), "0x%016"PRIX64"%016"PRIX64"%016"PRIX64"%016"PRIX64
349                                                "%016"PRIX64"%016"PRIX64"%016"PRIX64"%016"PRIX64,
350                          umid_parts[0], umid_parts[1], umid_parts[2], umid_parts[3],
351                          umid_parts[4], umid_parts[5], umid_parts[6], umid_parts[7]);
352             }
353
354             if ((ret = av_dict_set(&s->metadata, "umid", temp, 0)) < 0)
355                 return ret;
356         }
357
358         avio_skip(s->pb, 190);
359     } else
360         avio_skip(s->pb, 254);
361
362     if (size > 602) {
363         /* CodingHistory present */
364         size -= 602;
365
366         if (!(coding_history = av_malloc(size+1)))
367             return AVERROR(ENOMEM);
368
369         if ((ret = avio_read(s->pb, coding_history, size)) < 0)
370             return ret;
371
372         coding_history[size] = 0;
373         if ((ret = av_dict_set(&s->metadata, "coding_history", coding_history,
374                                AV_DICT_DONT_STRDUP_VAL)) < 0)
375             return ret;
376     }
377
378     return 0;
379 }
380
381 static const AVMetadataConv wav_metadata_conv[] = {
382     {"description",      "comment"      },
383     {"originator",       "encoded_by"   },
384     {"origination_date", "date"         },
385     {"origination_time", "creation_time"},
386     {0},
387 };
388
389 /* wav input */
390 static int wav_read_header(AVFormatContext *s)
391 {
392     int64_t size, av_uninit(data_size);
393     int64_t sample_count=0;
394     int rf64;
395     uint32_t tag, list_type;
396     AVIOContext *pb = s->pb;
397     AVStream *st = NULL;
398     WAVContext *wav = s->priv_data;
399     int ret, got_fmt = 0;
400     int64_t next_tag_ofs, data_ofs = -1;
401
402     wav->smv_data_ofs = -1;
403
404     /* check RIFF header */
405     tag = avio_rl32(pb);
406
407     rf64 = tag == MKTAG('R', 'F', '6', '4');
408     if (!rf64 && tag != MKTAG('R', 'I', 'F', 'F'))
409         return -1;
410     avio_rl32(pb); /* file size */
411     tag = avio_rl32(pb);
412     if (tag != MKTAG('W', 'A', 'V', 'E'))
413         return -1;
414
415     if (rf64) {
416         if (avio_rl32(pb) != MKTAG('d', 's', '6', '4'))
417             return -1;
418         size = avio_rl32(pb);
419         if (size < 24)
420             return -1;
421         avio_rl64(pb); /* RIFF size */
422         data_size = avio_rl64(pb);
423         sample_count = avio_rl64(pb);
424         if (data_size < 0 || sample_count < 0) {
425             av_log(s, AV_LOG_ERROR, "negative data_size and/or sample_count in "
426                    "ds64: data_size = %"PRId64", sample_count = %"PRId64"\n",
427                    data_size, sample_count);
428             return AVERROR_INVALIDDATA;
429         }
430         avio_skip(pb, size - 24); /* skip rest of ds64 chunk */
431
432     }
433
434     for (;;) {
435         AVStream *vst;
436         size = next_tag(pb, &tag);
437         next_tag_ofs = avio_tell(pb) + size;
438
439         if (url_feof(pb))
440             break;
441
442         switch (tag) {
443         case MKTAG('f', 'm', 't', ' '):
444             /* only parse the first 'fmt ' tag found */
445             if (!got_fmt && (ret = wav_parse_fmt_tag(s, size, &st)) < 0) {
446                 return ret;
447             } else if (got_fmt)
448                 av_log(s, AV_LOG_WARNING, "found more than one 'fmt ' tag\n");
449
450             got_fmt = 1;
451             break;
452         case MKTAG('d', 'a', 't', 'a'):
453             if (!got_fmt) {
454                 av_log(s, AV_LOG_ERROR, "found no 'fmt ' tag before the 'data' tag\n");
455                 return AVERROR_INVALIDDATA;
456             }
457
458             if (rf64) {
459                 next_tag_ofs = wav->data_end = avio_tell(pb) + data_size;
460             } else {
461                 data_size = size;
462                 next_tag_ofs = wav->data_end = size ? next_tag_ofs : INT64_MAX;
463             }
464
465             data_ofs = avio_tell(pb);
466
467             /* don't look for footer metadata if we can't seek or if we don't
468              * know where the data tag ends
469              */
470             if (!pb->seekable || (!rf64 && !size))
471                 goto break_loop;
472             break;
473         case MKTAG('f','a','c','t'):
474             if (!sample_count)
475                 sample_count = avio_rl32(pb);
476             break;
477         case MKTAG('b','e','x','t'):
478             if ((ret = wav_parse_bext_tag(s, size)) < 0)
479                 return ret;
480             break;
481         case MKTAG('S','M','V','0'):
482             // SMV file, a wav file with video appended.
483             if (size != MKTAG('0','2','0','0')) {
484                 av_log(s, AV_LOG_ERROR, "Unknown SMV version found\n");
485                 goto break_loop;
486             }
487             av_log(s, AV_LOG_DEBUG, "Found SMV data\n");
488             vst = avformat_new_stream(s, NULL);
489             if (!vst)
490                 return AVERROR(ENOMEM);
491             avio_r8(pb);
492             vst->id = 1;
493             vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
494             vst->codec->codec_id = CODEC_ID_MJPEG;
495             vst->codec->width  = avio_rl24(pb);
496             vst->codec->height = avio_rl24(pb);
497             size = avio_rl24(pb);
498             wav->smv_data_ofs = avio_tell(pb) + (size - 5) * 3;
499             avio_rl24(pb);
500             wav->smv_block_size = avio_rl24(pb);
501             avpriv_set_pts_info(vst, 32, 1, avio_rl24(pb));
502             vst->duration = avio_rl24(pb);
503             avio_rl24(pb);
504             avio_rl24(pb);
505             wav->smv_frames_per_jpeg = avio_rl24(pb);
506             goto break_loop;
507         case MKTAG('L', 'I', 'S', 'T'):
508             list_type = avio_rl32(pb);
509             if (size < 4) {
510                 av_log(s, AV_LOG_ERROR, "too short LIST tag\n");
511                 return AVERROR_INVALIDDATA;
512             }
513             switch (list_type) {
514             case MKTAG('I', 'N', 'F', 'O'):
515                 if ((ret = ff_read_riff_info(s, size - 4)) < 0)
516                     return ret;
517             }
518             break;
519         }
520
521         /* seek to next tag unless we know that we'll run into EOF */
522         if ((avio_size(pb) > 0 && next_tag_ofs >= avio_size(pb)) ||
523             avio_seek(pb, next_tag_ofs, SEEK_SET) < 0) {
524             break;
525         }
526     }
527 break_loop:
528     if (data_ofs < 0) {
529         av_log(s, AV_LOG_ERROR, "no 'data' tag found\n");
530         return AVERROR_INVALIDDATA;
531     }
532
533     avio_seek(pb, data_ofs, SEEK_SET);
534
535     if (!sample_count && st->codec->channels && av_get_bits_per_sample(st->codec->codec_id))
536         sample_count = (data_size<<3) / (st->codec->channels * (uint64_t)av_get_bits_per_sample(st->codec->codec_id));
537     if (sample_count)
538         st->duration = sample_count;
539
540     ff_metadata_conv_ctx(s, NULL, wav_metadata_conv);
541     ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
542
543     return 0;
544 }
545
546 /** Find chunk with w64 GUID by skipping over other chunks
547  * @return the size of the found chunk
548  */
549 static int64_t find_guid(AVIOContext *pb, const uint8_t guid1[16])
550 {
551     uint8_t guid[16];
552     int64_t size;
553
554     while (!url_feof(pb)) {
555         avio_read(pb, guid, 16);
556         size = avio_rl64(pb);
557         if (size <= 24)
558             return -1;
559         if (!memcmp(guid, guid1, 16))
560             return size;
561         avio_skip(pb, FFALIGN(size, INT64_C(8)) - 24);
562     }
563     return -1;
564 }
565
566 static const uint8_t guid_data[16] = { 'd', 'a', 't', 'a',
567     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
568
569 #define MAX_SIZE 4096
570
571 static int wav_read_packet(AVFormatContext *s,
572                            AVPacket *pkt)
573 {
574     int ret, size;
575     int64_t left;
576     AVStream *st;
577     WAVContext *wav = s->priv_data;
578
579     if (wav->smv_data_ofs > 0) {
580         int64_t audio_dts, video_dts;
581 smv_retry:
582         audio_dts = s->streams[0]->cur_dts;
583         video_dts = s->streams[1]->cur_dts;
584         if (audio_dts != AV_NOPTS_VALUE && video_dts != AV_NOPTS_VALUE) {
585             audio_dts = av_rescale_q(audio_dts, s->streams[0]->time_base, AV_TIME_BASE_Q);
586             video_dts = av_rescale_q(video_dts, s->streams[1]->time_base, AV_TIME_BASE_Q);
587             wav->smv_last_stream = video_dts >= audio_dts;
588         }
589         wav->smv_last_stream = !wav->smv_last_stream;
590         wav->smv_last_stream |= wav->audio_eof;
591         wav->smv_last_stream &= !wav->smv_eof;
592         if (wav->smv_last_stream) {
593             uint64_t old_pos = avio_tell(s->pb);
594             uint64_t new_pos = wav->smv_data_ofs +
595                 wav->smv_block * wav->smv_block_size;
596             if (avio_seek(s->pb, new_pos, SEEK_SET) < 0) {
597                 ret = AVERROR_EOF;
598                 goto smv_out;
599             }
600             size = avio_rl24(s->pb);
601             ret  = av_get_packet(s->pb, pkt, size);
602             if (ret < 0)
603                 goto smv_out;
604             pkt->pos -= 3;
605             pkt->pts = wav->smv_block * wav->smv_frames_per_jpeg;
606             wav->smv_block++;
607             pkt->stream_index = 1;
608 smv_out:
609             avio_seek(s->pb, old_pos, SEEK_SET);
610             if (ret == AVERROR_EOF) {
611                 wav->smv_eof = 1;
612                 goto smv_retry;
613             }
614             return ret;
615         }
616     }
617
618     st = s->streams[0];
619
620     left = wav->data_end - avio_tell(s->pb);
621     if (wav->ignore_length)
622         left= INT_MAX;
623     if (left <= 0){
624         if (CONFIG_W64_DEMUXER && wav->w64)
625             left = find_guid(s->pb, guid_data) - 24;
626         else
627             left = find_tag(s->pb, MKTAG('d', 'a', 't', 'a'));
628         if (left < 0) {
629             wav->audio_eof = 1;
630             if (wav->smv_data_ofs > 0 && !wav->smv_eof)
631                 goto smv_retry;
632             return AVERROR_EOF;
633         }
634         wav->data_end= avio_tell(s->pb) + left;
635     }
636
637     size = MAX_SIZE;
638     if (st->codec->block_align > 1) {
639         if (size < st->codec->block_align)
640             size = st->codec->block_align;
641         size = (size / st->codec->block_align) * st->codec->block_align;
642     }
643     size = FFMIN(size, left);
644     ret  = av_get_packet(s->pb, pkt, size);
645     if (ret < 0)
646         return ret;
647     pkt->stream_index = 0;
648
649     return ret;
650 }
651
652 static int wav_read_seek(AVFormatContext *s,
653                          int stream_index, int64_t timestamp, int flags)
654 {
655     WAVContext *wav = s->priv_data;
656     AVStream *st;
657     wav->smv_eof = 0;
658     wav->audio_eof = 0;
659     if (wav->smv_data_ofs > 0) {
660         int64_t smv_timestamp = timestamp;
661         if (stream_index == 0)
662             smv_timestamp = av_rescale_q(timestamp, s->streams[0]->time_base, s->streams[1]->time_base);
663         else
664             timestamp = av_rescale_q(smv_timestamp, s->streams[1]->time_base, s->streams[0]->time_base);
665         wav->smv_block = smv_timestamp / wav->smv_frames_per_jpeg;
666     }
667
668     st = s->streams[0];
669     switch (st->codec->codec_id) {
670     case CODEC_ID_MP2:
671     case CODEC_ID_MP3:
672     case CODEC_ID_AC3:
673     case CODEC_ID_DTS:
674         /* use generic seeking with dynamically generated indexes */
675         return -1;
676     default:
677         break;
678     }
679     return pcm_read_seek(s, stream_index, timestamp, flags);
680 }
681
682 #define OFFSET(x) offsetof(WAVContext, x)
683 #define DEC AV_OPT_FLAG_DECODING_PARAM
684 static const AVOption demux_options[] = {
685     { "ignore_length", "Ignore length", OFFSET(ignore_length), AV_OPT_TYPE_INT, { 0 }, 0, 1, DEC },
686     { NULL },
687 };
688
689 static const AVClass wav_demuxer_class = {
690     .class_name = "WAV demuxer",
691     .item_name  = av_default_item_name,
692     .option     = demux_options,
693     .version    = LIBAVUTIL_VERSION_INT,
694 };
695 AVInputFormat ff_wav_demuxer = {
696     .name           = "wav",
697     .long_name      = NULL_IF_CONFIG_SMALL("WAV format"),
698     .priv_data_size = sizeof(WAVContext),
699     .read_probe     = wav_probe,
700     .read_header    = wav_read_header,
701     .read_packet    = wav_read_packet,
702     .read_seek      = wav_read_seek,
703     .flags= AVFMT_GENERIC_INDEX,
704     .codec_tag= (const AVCodecTag* const []){ff_codec_wav_tags, 0},
705     .priv_class     = &wav_demuxer_class,
706 };
707 #endif /* CONFIG_WAV_DEMUXER */
708
709
710 #if CONFIG_W64_DEMUXER
711 static const uint8_t guid_riff[16] = { 'r', 'i', 'f', 'f',
712     0x2E, 0x91, 0xCF, 0x11, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00 };
713
714 static const uint8_t guid_wave[16] = { 'w', 'a', 'v', 'e',
715     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
716
717 static const uint8_t guid_fmt [16] = { 'f', 'm', 't', ' ',
718     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
719
720 static int w64_probe(AVProbeData *p)
721 {
722     if (p->buf_size <= 40)
723         return 0;
724     if (!memcmp(p->buf,      guid_riff, 16) &&
725         !memcmp(p->buf + 24, guid_wave, 16))
726         return AVPROBE_SCORE_MAX;
727     else
728         return 0;
729 }
730
731 static int w64_read_header(AVFormatContext *s)
732 {
733     int64_t size;
734     AVIOContext *pb  = s->pb;
735     WAVContext    *wav = s->priv_data;
736     AVStream *st;
737     uint8_t guid[16];
738     int ret;
739
740     avio_read(pb, guid, 16);
741     if (memcmp(guid, guid_riff, 16))
742         return -1;
743
744     if (avio_rl64(pb) < 16 + 8 + 16 + 8 + 16 + 8) /* riff + wave + fmt + sizes */
745         return -1;
746
747     avio_read(pb, guid, 16);
748     if (memcmp(guid, guid_wave, 16)) {
749         av_log(s, AV_LOG_ERROR, "could not find wave guid\n");
750         return -1;
751     }
752
753     size = find_guid(pb, guid_fmt);
754     if (size < 0) {
755         av_log(s, AV_LOG_ERROR, "could not find fmt guid\n");
756         return -1;
757     }
758
759     st = avformat_new_stream(s, NULL);
760     if (!st)
761         return AVERROR(ENOMEM);
762
763     /* subtract chunk header size - normal wav file doesn't count it */
764     ret = ff_get_wav_header(pb, st->codec, size - 24);
765     if (ret < 0)
766         return ret;
767     avio_skip(pb, FFALIGN(size, INT64_C(8)) - size);
768
769     st->need_parsing = AVSTREAM_PARSE_FULL;
770
771     avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
772
773     size = find_guid(pb, guid_data);
774     if (size < 0) {
775         av_log(s, AV_LOG_ERROR, "could not find data guid\n");
776         return -1;
777     }
778     wav->data_end = avio_tell(pb) + size - 24;
779     wav->w64      = 1;
780
781     return 0;
782 }
783
784 AVInputFormat ff_w64_demuxer = {
785     .name           = "w64",
786     .long_name      = NULL_IF_CONFIG_SMALL("Sony Wave64 format"),
787     .priv_data_size = sizeof(WAVContext),
788     .read_probe     = w64_probe,
789     .read_header    = w64_read_header,
790     .read_packet    = wav_read_packet,
791     .read_seek      = wav_read_seek,
792     .flags = AVFMT_GENERIC_INDEX,
793     .codec_tag = (const AVCodecTag* const []){ff_codec_wav_tags, 0},
794 };
795 #endif /* CONFIG_W64_DEMUXER */