]> git.sesse.net Git - ffmpeg/blob - libavformat/wav.c
Cosmetics: Improve 'too short LIST' error message in wav.c.
[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                            AVFormatParameters *ap)
392 {
393     int64_t size, av_uninit(data_size);
394     int64_t sample_count=0;
395     int rf64;
396     uint32_t tag, list_type;
397     AVIOContext *pb = s->pb;
398     AVStream *st = NULL;
399     WAVContext *wav = s->priv_data;
400     int ret, got_fmt = 0;
401     int64_t next_tag_ofs, data_ofs = -1;
402
403     wav->smv_data_ofs = -1;
404
405     /* check RIFF header */
406     tag = avio_rl32(pb);
407
408     rf64 = tag == MKTAG('R', 'F', '6', '4');
409     if (!rf64 && tag != MKTAG('R', 'I', 'F', 'F'))
410         return -1;
411     avio_rl32(pb); /* file size */
412     tag = avio_rl32(pb);
413     if (tag != MKTAG('W', 'A', 'V', 'E'))
414         return -1;
415
416     if (rf64) {
417         if (avio_rl32(pb) != MKTAG('d', 's', '6', '4'))
418             return -1;
419         size = avio_rl32(pb);
420         if (size < 24)
421             return -1;
422         avio_rl64(pb); /* RIFF size */
423         data_size = avio_rl64(pb);
424         sample_count = avio_rl64(pb);
425         if (data_size < 0 || sample_count < 0) {
426             av_log(s, AV_LOG_ERROR, "negative data_size and/or sample_count in "
427                    "ds64: data_size = %"PRId64", sample_count = %"PRId64"\n",
428                    data_size, sample_count);
429             return AVERROR_INVALIDDATA;
430         }
431         avio_skip(pb, size - 24); /* skip rest of ds64 chunk */
432
433     }
434
435     for (;;) {
436         AVStream *vst;
437         size = next_tag(pb, &tag);
438         next_tag_ofs = avio_tell(pb) + size;
439
440         if (url_feof(pb))
441             break;
442
443         switch (tag) {
444         case MKTAG('f', 'm', 't', ' '):
445             /* only parse the first 'fmt ' tag found */
446             if (!got_fmt && (ret = wav_parse_fmt_tag(s, size, &st)) < 0) {
447                 return ret;
448             } else if (got_fmt)
449                 av_log(s, AV_LOG_WARNING, "found more than one 'fmt ' tag\n");
450
451             got_fmt = 1;
452             break;
453         case MKTAG('d', 'a', 't', 'a'):
454             if (!got_fmt) {
455                 av_log(s, AV_LOG_ERROR, "found no 'fmt ' tag before the 'data' tag\n");
456                 return AVERROR_INVALIDDATA;
457             }
458
459             if (rf64) {
460                 next_tag_ofs = wav->data_end = avio_tell(pb) + data_size;
461             } else {
462                 data_size = size;
463                 next_tag_ofs = wav->data_end = size ? next_tag_ofs : INT64_MAX;
464             }
465
466             data_ofs = avio_tell(pb);
467
468             /* don't look for footer metadata if we can't seek or if we don't
469              * know where the data tag ends
470              */
471             if (!pb->seekable || (!rf64 && !size))
472                 goto break_loop;
473             break;
474         case MKTAG('f','a','c','t'):
475             if (!sample_count)
476                 sample_count = avio_rl32(pb);
477             break;
478         case MKTAG('b','e','x','t'):
479             if ((ret = wav_parse_bext_tag(s, size)) < 0)
480                 return ret;
481             break;
482         case MKTAG('S','M','V','0'):
483             // SMV file, a wav file with video appended.
484             if (size != MKTAG('0','2','0','0')) {
485                 av_log(s, AV_LOG_ERROR, "Unknown SMV version found\n");
486                 goto break_loop;
487             }
488             av_log(s, AV_LOG_DEBUG, "Found SMV data\n");
489             vst = avformat_new_stream(s, NULL);
490             if (!vst)
491                 return AVERROR(ENOMEM);
492             avio_r8(pb);
493             vst->id = 1;
494             vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
495             vst->codec->codec_id = CODEC_ID_MJPEG;
496             vst->codec->width  = avio_rl24(pb);
497             vst->codec->height = avio_rl24(pb);
498             size = avio_rl24(pb);
499             wav->smv_data_ofs = avio_tell(pb) + (size - 5) * 3;
500             avio_rl24(pb);
501             wav->smv_block_size = avio_rl24(pb);
502             avpriv_set_pts_info(vst, 32, 1, avio_rl24(pb));
503             vst->duration = avio_rl24(pb);
504             avio_rl24(pb);
505             avio_rl24(pb);
506             wav->smv_frames_per_jpeg = avio_rl24(pb);
507             goto break_loop;
508         case MKTAG('L', 'I', 'S', 'T'):
509             list_type = avio_rl32(pb);
510             if (size < 4) {
511                 av_log(s, AV_LOG_ERROR, "too short LIST tag\n");
512                 return AVERROR_INVALIDDATA;
513             }
514             switch (list_type) {
515             case MKTAG('I', 'N', 'F', 'O'):
516                 if ((ret = ff_read_riff_info(s, size - 4)) < 0)
517                     return ret;
518             }
519             break;
520         }
521
522         /* seek to next tag unless we know that we'll run into EOF */
523         if ((avio_size(pb) > 0 && next_tag_ofs >= avio_size(pb)) ||
524             avio_seek(pb, next_tag_ofs, SEEK_SET) < 0) {
525             break;
526         }
527     }
528 break_loop:
529     if (data_ofs < 0) {
530         av_log(s, AV_LOG_ERROR, "no 'data' tag found\n");
531         return AVERROR_INVALIDDATA;
532     }
533
534     avio_seek(pb, data_ofs, SEEK_SET);
535
536     if (!sample_count && st->codec->channels && av_get_bits_per_sample(st->codec->codec_id))
537         sample_count = (data_size<<3) / (st->codec->channels * (uint64_t)av_get_bits_per_sample(st->codec->codec_id));
538     if (sample_count)
539         st->duration = sample_count;
540
541     ff_metadata_conv_ctx(s, NULL, wav_metadata_conv);
542     ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
543
544     return 0;
545 }
546
547 /** Find chunk with w64 GUID by skipping over other chunks
548  * @return the size of the found chunk
549  */
550 static int64_t find_guid(AVIOContext *pb, const uint8_t guid1[16])
551 {
552     uint8_t guid[16];
553     int64_t size;
554
555     while (!url_feof(pb)) {
556         avio_read(pb, guid, 16);
557         size = avio_rl64(pb);
558         if (size <= 24)
559             return -1;
560         if (!memcmp(guid, guid1, 16))
561             return size;
562         avio_skip(pb, FFALIGN(size, INT64_C(8)) - 24);
563     }
564     return -1;
565 }
566
567 static const uint8_t guid_data[16] = { 'd', 'a', 't', 'a',
568     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
569
570 #define MAX_SIZE 4096
571
572 static int wav_read_packet(AVFormatContext *s,
573                            AVPacket *pkt)
574 {
575     int ret, size;
576     int64_t left;
577     AVStream *st;
578     WAVContext *wav = s->priv_data;
579
580     if (wav->smv_data_ofs > 0) {
581         int64_t audio_dts, video_dts;
582 smv_retry:
583         audio_dts = s->streams[0]->cur_dts;
584         video_dts = s->streams[1]->cur_dts;
585         if (audio_dts != AV_NOPTS_VALUE && video_dts != AV_NOPTS_VALUE) {
586             audio_dts = av_rescale_q(audio_dts, s->streams[0]->time_base, AV_TIME_BASE_Q);
587             video_dts = av_rescale_q(video_dts, s->streams[1]->time_base, AV_TIME_BASE_Q);
588             wav->smv_last_stream = video_dts >= audio_dts;
589         }
590         wav->smv_last_stream = !wav->smv_last_stream;
591         wav->smv_last_stream |= wav->audio_eof;
592         wav->smv_last_stream &= !wav->smv_eof;
593         if (wav->smv_last_stream) {
594             uint64_t old_pos = avio_tell(s->pb);
595             uint64_t new_pos = wav->smv_data_ofs +
596                 wav->smv_block * wav->smv_block_size;
597             if (avio_seek(s->pb, new_pos, SEEK_SET) < 0) {
598                 ret = AVERROR_EOF;
599                 goto smv_out;
600             }
601             size = avio_rl24(s->pb);
602             ret  = av_get_packet(s->pb, pkt, size);
603             if (ret < 0)
604                 goto smv_out;
605             pkt->pos -= 3;
606             pkt->pts = wav->smv_block * wav->smv_frames_per_jpeg;
607             wav->smv_block++;
608             pkt->stream_index = 1;
609 smv_out:
610             avio_seek(s->pb, old_pos, SEEK_SET);
611             if (ret == AVERROR_EOF) {
612                 wav->smv_eof = 1;
613                 goto smv_retry;
614             }
615             return ret;
616         }
617     }
618
619     st = s->streams[0];
620
621     left = wav->data_end - avio_tell(s->pb);
622     if (wav->ignore_length)
623         left= INT_MAX;
624     if (left <= 0){
625         if (CONFIG_W64_DEMUXER && wav->w64)
626             left = find_guid(s->pb, guid_data) - 24;
627         else
628             left = find_tag(s->pb, MKTAG('d', 'a', 't', 'a'));
629         if (left < 0) {
630             wav->audio_eof = 1;
631             if (wav->smv_data_ofs > 0 && !wav->smv_eof)
632                 goto smv_retry;
633             return AVERROR_EOF;
634         }
635         wav->data_end= avio_tell(s->pb) + left;
636     }
637
638     size = MAX_SIZE;
639     if (st->codec->block_align > 1) {
640         if (size < st->codec->block_align)
641             size = st->codec->block_align;
642         size = (size / st->codec->block_align) * st->codec->block_align;
643     }
644     size = FFMIN(size, left);
645     ret  = av_get_packet(s->pb, pkt, size);
646     if (ret < 0)
647         return ret;
648     pkt->stream_index = 0;
649
650     return ret;
651 }
652
653 static int wav_read_seek(AVFormatContext *s,
654                          int stream_index, int64_t timestamp, int flags)
655 {
656     WAVContext *wav = s->priv_data;
657     AVStream *st;
658     wav->smv_eof = 0;
659     wav->audio_eof = 0;
660     if (wav->smv_data_ofs > 0) {
661         int64_t smv_timestamp = timestamp;
662         if (stream_index == 0)
663             smv_timestamp = av_rescale_q(timestamp, s->streams[0]->time_base, s->streams[1]->time_base);
664         else
665             timestamp = av_rescale_q(smv_timestamp, s->streams[1]->time_base, s->streams[0]->time_base);
666         wav->smv_block = smv_timestamp / wav->smv_frames_per_jpeg;
667     }
668
669     st = s->streams[0];
670     switch (st->codec->codec_id) {
671     case CODEC_ID_MP2:
672     case CODEC_ID_MP3:
673     case CODEC_ID_AC3:
674     case CODEC_ID_DTS:
675         /* use generic seeking with dynamically generated indexes */
676         return -1;
677     default:
678         break;
679     }
680     return pcm_read_seek(s, stream_index, timestamp, flags);
681 }
682
683 #define OFFSET(x) offsetof(WAVContext, x)
684 #define DEC AV_OPT_FLAG_DECODING_PARAM
685 static const AVOption demux_options[] = {
686     { "ignore_length", "Ignore length", OFFSET(ignore_length), AV_OPT_TYPE_INT, { 0 }, 0, 1, DEC },
687     { NULL },
688 };
689
690 static const AVClass wav_demuxer_class = {
691     .class_name = "WAV demuxer",
692     .item_name  = av_default_item_name,
693     .option     = demux_options,
694     .version    = LIBAVUTIL_VERSION_INT,
695 };
696 AVInputFormat ff_wav_demuxer = {
697     .name           = "wav",
698     .long_name      = NULL_IF_CONFIG_SMALL("WAV format"),
699     .priv_data_size = sizeof(WAVContext),
700     .read_probe     = wav_probe,
701     .read_header    = wav_read_header,
702     .read_packet    = wav_read_packet,
703     .read_seek      = wav_read_seek,
704     .flags= AVFMT_GENERIC_INDEX,
705     .codec_tag= (const AVCodecTag* const []){ff_codec_wav_tags, 0},
706     .priv_class     = &wav_demuxer_class,
707 };
708 #endif /* CONFIG_WAV_DEMUXER */
709
710
711 #if CONFIG_W64_DEMUXER
712 static const uint8_t guid_riff[16] = { 'r', 'i', 'f', 'f',
713     0x2E, 0x91, 0xCF, 0x11, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00 };
714
715 static const uint8_t guid_wave[16] = { 'w', 'a', 'v', 'e',
716     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
717
718 static const uint8_t guid_fmt [16] = { 'f', 'm', 't', ' ',
719     0xF3, 0xAC, 0xD3, 0x11, 0x8C, 0xD1, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A };
720
721 static int w64_probe(AVProbeData *p)
722 {
723     if (p->buf_size <= 40)
724         return 0;
725     if (!memcmp(p->buf,      guid_riff, 16) &&
726         !memcmp(p->buf + 24, guid_wave, 16))
727         return AVPROBE_SCORE_MAX;
728     else
729         return 0;
730 }
731
732 static int w64_read_header(AVFormatContext *s, AVFormatParameters *ap)
733 {
734     int64_t size;
735     AVIOContext *pb  = s->pb;
736     WAVContext    *wav = s->priv_data;
737     AVStream *st;
738     uint8_t guid[16];
739     int ret;
740
741     avio_read(pb, guid, 16);
742     if (memcmp(guid, guid_riff, 16))
743         return -1;
744
745     if (avio_rl64(pb) < 16 + 8 + 16 + 8 + 16 + 8) /* riff + wave + fmt + sizes */
746         return -1;
747
748     avio_read(pb, guid, 16);
749     if (memcmp(guid, guid_wave, 16)) {
750         av_log(s, AV_LOG_ERROR, "could not find wave guid\n");
751         return -1;
752     }
753
754     size = find_guid(pb, guid_fmt);
755     if (size < 0) {
756         av_log(s, AV_LOG_ERROR, "could not find fmt guid\n");
757         return -1;
758     }
759
760     st = avformat_new_stream(s, NULL);
761     if (!st)
762         return AVERROR(ENOMEM);
763
764     /* subtract chunk header size - normal wav file doesn't count it */
765     ret = ff_get_wav_header(pb, st->codec, size - 24);
766     if (ret < 0)
767         return ret;
768     avio_skip(pb, FFALIGN(size, INT64_C(8)) - size);
769
770     st->need_parsing = AVSTREAM_PARSE_FULL;
771
772     avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
773
774     size = find_guid(pb, guid_data);
775     if (size < 0) {
776         av_log(s, AV_LOG_ERROR, "could not find data guid\n");
777         return -1;
778     }
779     wav->data_end = avio_tell(pb) + size - 24;
780     wav->w64      = 1;
781
782     return 0;
783 }
784
785 AVInputFormat ff_w64_demuxer = {
786     .name           = "w64",
787     .long_name      = NULL_IF_CONFIG_SMALL("Sony Wave64 format"),
788     .priv_data_size = sizeof(WAVContext),
789     .read_probe     = w64_probe,
790     .read_header    = w64_read_header,
791     .read_packet    = wav_read_packet,
792     .read_seek      = wav_read_seek,
793     .flags = AVFMT_GENERIC_INDEX,
794     .codec_tag = (const AVCodecTag* const []){ff_codec_wav_tags, 0},
795 };
796 #endif /* CONFIG_W64_DEMUXER */