FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
wavenc.c
Go to the documentation of this file.
1 /*
2  * WAV muxer
3  * Copyright (c) 2001, 2002 Fabrice Bellard
4  *
5  * Sony Wave64 muxer
6  * Copyright (c) 2012 Paul B Mahol
7  *
8  * WAV muxer RF64 support
9  * Copyright (c) 2013 Daniel Verkamp <daniel@drv.nu>
10  *
11  * EBU Tech 3285 - Supplement 3 - Peak Envelope Chunk encoder
12  * Copyright (c) 2014 Georg Lippitsch <georg.lippitsch@gmx.at>
13  *
14  * This file is part of FFmpeg.
15  *
16  * FFmpeg is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU Lesser General Public
18  * License as published by the Free Software Foundation; either
19  * version 2.1 of the License, or (at your option) any later version.
20  *
21  * FFmpeg is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24  * Lesser General Public License for more details.
25  *
26  * You should have received a copy of the GNU Lesser General Public
27  * License along with FFmpeg; if not, write to the Free Software
28  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
29  */
30 
31 #include <stdint.h>
32 #include <string.h>
33 
34 #include "libavutil/avstring.h"
35 #include "libavutil/dict.h"
36 #include "libavutil/common.h"
37 #include "libavutil/intreadwrite.h"
38 #include "libavutil/mathematics.h"
39 #include "libavutil/opt.h"
40 #include "libavutil/time.h"
42 
43 #include "avformat.h"
44 #include "avio.h"
45 #include "avio_internal.h"
46 #include "internal.h"
47 #include "riff.h"
48 
49 #define RF64_AUTO (-1)
50 #define RF64_NEVER 0
51 #define RF64_ALWAYS 1
52 
53 #define PEAK_BUFFER_SIZE 1024
54 
55 typedef enum {
56  PEAK_OFF = 0,
59 } PeakType;
60 
61 typedef enum {
64 } PeakFormat;
65 
66 typedef struct WAVMuxContext {
67  const AVClass *class;
68  int64_t data;
69  int64_t fact_pos;
70  int64_t ds64;
71  int64_t minpts;
72  int64_t maxpts;
74  uint32_t peak_num_frames;
75  uint32_t peak_outbuf_size;
77  uint32_t peak_pos_pop;
78  uint16_t peak_pop;
83  int rf64;
87  int peak_ppv;
88  int peak_bps;
90 
91 #if CONFIG_WAV_MUXER
92 static inline void bwf_write_bext_string(AVFormatContext *s, const char *key, int maxlen)
93 {
95  size_t len = 0;
96 
97  if (tag = av_dict_get(s->metadata, key, NULL, 0)) {
98  len = strlen(tag->value);
99  len = FFMIN(len, maxlen);
100  avio_write(s->pb, tag->value, len);
101  }
102 
103  ffio_fill(s->pb, 0, maxlen - len);
104 }
105 
106 static void bwf_write_bext_chunk(AVFormatContext *s)
107 {
108  AVDictionaryEntry *tmp_tag;
109  uint64_t time_reference = 0;
110  int64_t bext = ff_start_tag(s->pb, "bext");
111 
112  bwf_write_bext_string(s, "description", 256);
113  bwf_write_bext_string(s, "originator", 32);
114  bwf_write_bext_string(s, "originator_reference", 32);
115  bwf_write_bext_string(s, "origination_date", 10);
116  bwf_write_bext_string(s, "origination_time", 8);
117 
118  if (tmp_tag = av_dict_get(s->metadata, "time_reference", NULL, 0))
119  time_reference = strtoll(tmp_tag->value, NULL, 10);
120  avio_wl64(s->pb, time_reference);
121  avio_wl16(s->pb, 1); // set version to 1
122 
123  if ((tmp_tag = av_dict_get(s->metadata, "umid", NULL, 0)) && strlen(tmp_tag->value) > 2) {
124  unsigned char umidpart_str[17] = {0};
125  int64_t i;
126  uint64_t umidpart;
127  size_t len = strlen(tmp_tag->value+2);
128 
129  for (i = 0; i < len/16; i++) {
130  memcpy(umidpart_str, tmp_tag->value + 2 + (i*16), 16);
131  umidpart = strtoll(umidpart_str, NULL, 16);
132  avio_wb64(s->pb, umidpart);
133  }
134  ffio_fill(s->pb, 0, 64 - i*8);
135  } else
136  ffio_fill(s->pb, 0, 64); // zero UMID
137 
138  ffio_fill(s->pb, 0, 190); // Reserved
139 
140  if (tmp_tag = av_dict_get(s->metadata, "coding_history", NULL, 0))
141  avio_put_str(s->pb, tmp_tag->value);
142 
143  ff_end_tag(s->pb, bext);
144 }
145 
146 static av_cold void peak_free_buffers(AVFormatContext *s)
147 {
148  WAVMuxContext *wav = s->priv_data;
149 
150  av_freep(&wav->peak_maxpos);
151  av_freep(&wav->peak_maxneg);
152  av_freep(&wav->peak_output);
153 }
154 
155 static av_cold int peak_init_writer(AVFormatContext *s)
156 {
157  WAVMuxContext *wav = s->priv_data;
158  AVCodecContext *enc = s->streams[0]->codec;
159 
160  if (enc->codec_id != AV_CODEC_ID_PCM_S8 &&
162  enc->codec_id != AV_CODEC_ID_PCM_U8 &&
164  av_log(s, AV_LOG_ERROR, "%s codec not supported for Peak Chunk\n",
165  s->streams[0]->codec->codec ? s->streams[0]->codec->codec->name : "NONE");
166  return -1;
167  }
168 
169  wav->peak_bps = av_get_bits_per_sample(enc->codec_id) / 8;
170 
171  if (wav->peak_bps == 1 && wav->peak_format == PEAK_FORMAT_UINT16) {
172  av_log(s, AV_LOG_ERROR,
173  "Writing 16 bit peak for 8 bit audio does not make sense\n");
174  return AVERROR(EINVAL);
175  }
176 
177  wav->peak_maxpos = av_mallocz_array(enc->channels, sizeof(*wav->peak_maxpos));
178  wav->peak_maxneg = av_mallocz_array(enc->channels, sizeof(*wav->peak_maxneg));
180  if (!wav->peak_maxpos || !wav->peak_maxneg || !wav->peak_output)
181  goto nomem;
182 
184 
185  return 0;
186 
187 nomem:
188  av_log(s, AV_LOG_ERROR, "Out of memory\n");
189  peak_free_buffers(s);
190  return AVERROR(ENOMEM);
191 }
192 
193 static void peak_write_frame(AVFormatContext *s)
194 {
195  WAVMuxContext *wav = s->priv_data;
196  AVCodecContext *enc = s->streams[0]->codec;
197  int peak_of_peaks;
198  int c;
199 
200  if (!wav->peak_output)
201  return;
202 
203  for (c = 0; c < enc->channels; c++) {
204  wav->peak_maxneg[c] = -wav->peak_maxneg[c];
205 
206  if (wav->peak_bps == 2 && wav->peak_format == PEAK_FORMAT_UINT8) {
207  wav->peak_maxpos[c] = wav->peak_maxpos[c] / 256;
208  wav->peak_maxneg[c] = wav->peak_maxneg[c] / 256;
209  }
210 
211  if (wav->peak_ppv == 1)
212  wav->peak_maxpos[c] =
213  FFMAX(wav->peak_maxpos[c], wav->peak_maxneg[c]);
214 
215  peak_of_peaks = FFMAX3(wav->peak_maxpos[c], wav->peak_maxneg[c],
216  wav->peak_pop);
217  if (peak_of_peaks > wav->peak_pop)
218  wav->peak_pos_pop = wav->peak_num_frames;
219  wav->peak_pop = peak_of_peaks;
220 
221  if (wav->peak_outbuf_size - wav->peak_outbuf_bytes <
222  wav->peak_format * wav->peak_ppv) {
224  wav->peak_output = av_realloc(wav->peak_output,
225  wav->peak_outbuf_size);
226  if (!wav->peak_output) {
227  av_log(s, AV_LOG_ERROR, "No memory for peak data\n");
228  return;
229  }
230  }
231 
232  if (wav->peak_format == PEAK_FORMAT_UINT8) {
233  wav->peak_output[wav->peak_outbuf_bytes++] =
234  wav->peak_maxpos[c];
235  if (wav->peak_ppv == 2) {
236  wav->peak_output[wav->peak_outbuf_bytes++] =
237  wav->peak_maxneg[c];
238  }
239  } else {
241  wav->peak_maxpos[c]);
242  wav->peak_outbuf_bytes += 2;
243  if (wav->peak_ppv == 2) {
245  wav->peak_maxneg[c]);
246  wav->peak_outbuf_bytes += 2;
247  }
248  }
249  wav->peak_maxpos[c] = 0;
250  wav->peak_maxneg[c] = 0;
251  }
252  wav->peak_num_frames++;
253 }
254 
255 static int peak_write_chunk(AVFormatContext *s)
256 {
257  WAVMuxContext *wav = s->priv_data;
258  AVIOContext *pb = s->pb;
259  AVCodecContext *enc = s->streams[0]->codec;
260  int64_t peak = ff_start_tag(s->pb, "levl");
261  int64_t now0;
262  time_t now_secs;
263  char timestamp[28];
264 
265  /* Peak frame of incomplete block at end */
266  if (wav->peak_block_pos)
267  peak_write_frame(s);
268 
269  memset(timestamp, 0, sizeof(timestamp));
270  if (!(s->flags & AVFMT_FLAG_BITEXACT)) {
271  struct tm tmpbuf;
272  av_log(s, AV_LOG_INFO, "Writing local time and date to Peak Envelope Chunk\n");
273  now0 = av_gettime();
274  now_secs = now0 / 1000000;
275  if (strftime(timestamp, sizeof(timestamp), "%Y:%m:%d:%H:%M:%S:", localtime_r(&now_secs, &tmpbuf))) {
276  av_strlcatf(timestamp, sizeof(timestamp), "%03d", (int)((now0 / 1000) % 1000));
277  } else {
278  av_log(s, AV_LOG_ERROR, "Failed to write timestamp\n");
279  return -1;
280  }
281  }
282 
283  avio_wl32(pb, 1); /* version */
284  avio_wl32(pb, wav->peak_format); /* 8 or 16 bit */
285  avio_wl32(pb, wav->peak_ppv); /* positive and negative */
286  avio_wl32(pb, wav->peak_block_size); /* frames per value */
287  avio_wl32(pb, enc->channels); /* number of channels */
288  avio_wl32(pb, wav->peak_num_frames); /* number of peak frames */
289  avio_wl32(pb, wav->peak_pos_pop); /* audio sample frame index */
290  avio_wl32(pb, 128); /* equal to size of header */
291  avio_write(pb, timestamp, 28); /* ASCII time stamp */
292  ffio_fill(pb, 0, 60);
293 
294  avio_write(pb, wav->peak_output, wav->peak_outbuf_bytes);
295 
296  ff_end_tag(pb, peak);
297 
298  if (!wav->data)
299  wav->data = peak;
300 
301  return 0;
302 }
303 
304 static int wav_write_header(AVFormatContext *s)
305 {
306  WAVMuxContext *wav = s->priv_data;
307  AVIOContext *pb = s->pb;
308  int64_t fmt;
309 
310  if (s->nb_streams != 1) {
311  av_log(s, AV_LOG_ERROR, "WAVE files have exactly one stream\n");
312  return AVERROR(EINVAL);
313  }
314 
315  if (wav->rf64 == RF64_ALWAYS) {
316  ffio_wfourcc(pb, "RF64");
317  avio_wl32(pb, -1); /* RF64 chunk size: use size in ds64 */
318  } else {
319  ffio_wfourcc(pb, "RIFF");
320  avio_wl32(pb, -1); /* file length */
321  }
322 
323  ffio_wfourcc(pb, "WAVE");
324 
325  if (wav->rf64 != RF64_NEVER) {
326  /* write empty ds64 chunk or JUNK chunk to reserve space for ds64 */
327  ffio_wfourcc(pb, wav->rf64 == RF64_ALWAYS ? "ds64" : "JUNK");
328  avio_wl32(pb, 28); /* chunk size */
329  wav->ds64 = avio_tell(pb);
330  ffio_fill(pb, 0, 28);
331  }
332 
333  if (wav->write_peak != 2) {
334  /* format header */
335  fmt = ff_start_tag(pb, "fmt ");
336  if (ff_put_wav_header(pb, s->streams[0]->codec, 0) < 0) {
338  av_log(s, AV_LOG_ERROR, "%s codec not supported in WAVE format\n",
339  desc ? desc->name : "unknown");
340  return AVERROR(ENOSYS);
341  }
342  ff_end_tag(pb, fmt);
343  }
344 
345  if (s->streams[0]->codec->codec_tag != 0x01 /* hence for all other than PCM */
346  && s->pb->seekable) {
347  wav->fact_pos = ff_start_tag(pb, "fact");
348  avio_wl32(pb, 0);
349  ff_end_tag(pb, wav->fact_pos);
350  }
351 
352  if (wav->write_bext)
353  bwf_write_bext_chunk(s);
354 
355  if (wav->write_peak) {
356  int ret;
357  if ((ret = peak_init_writer(s)) < 0)
358  return ret;
359  }
360 
361  avpriv_set_pts_info(s->streams[0], 64, 1, s->streams[0]->codec->sample_rate);
362  wav->maxpts = wav->last_duration = 0;
363  wav->minpts = INT64_MAX;
364 
365  if (wav->write_peak != 2) {
366  /* info header */
368 
369  /* data header */
370  wav->data = ff_start_tag(pb, "data");
371  }
372 
373  avio_flush(pb);
374 
375  return 0;
376 }
377 
378 static int wav_write_packet(AVFormatContext *s, AVPacket *pkt)
379 {
380  AVIOContext *pb = s->pb;
381  WAVMuxContext *wav = s->priv_data;
382 
383  if (wav->write_peak != 2)
384  avio_write(pb, pkt->data, pkt->size);
385 
386  if (wav->write_peak) {
387  int c = 0;
388  int i;
389  for (i = 0; i < pkt->size; i += wav->peak_bps) {
390  if (wav->peak_bps == 1) {
391  wav->peak_maxpos[c] = FFMAX(wav->peak_maxpos[c], *(int8_t*)(pkt->data + i));
392  wav->peak_maxneg[c] = FFMIN(wav->peak_maxneg[c], *(int8_t*)(pkt->data + i));
393  } else {
394  wav->peak_maxpos[c] = FFMAX(wav->peak_maxpos[c], (int16_t)AV_RL16(pkt->data + i));
395  wav->peak_maxneg[c] = FFMIN(wav->peak_maxneg[c], (int16_t)AV_RL16(pkt->data + i));
396  }
397  if (++c == s->streams[0]->codec->channels) {
398  c = 0;
399  if (++wav->peak_block_pos == wav->peak_block_size) {
400  peak_write_frame(s);
401  wav->peak_block_pos = 0;
402  }
403  }
404  }
405  }
406 
407  if(pkt->pts != AV_NOPTS_VALUE) {
408  wav->minpts = FFMIN(wav->minpts, pkt->pts);
409  wav->maxpts = FFMAX(wav->maxpts, pkt->pts);
410  wav->last_duration = pkt->duration;
411  } else
412  av_log(s, AV_LOG_ERROR, "wav_write_packet: NOPTS\n");
413  return 0;
414 }
415 
416 static int wav_write_trailer(AVFormatContext *s)
417 {
418  AVIOContext *pb = s->pb;
419  WAVMuxContext *wav = s->priv_data;
420  int64_t file_size, data_size;
421  int64_t number_of_samples = 0;
422  int rf64 = 0;
423  int ret = 0;
424 
425  avio_flush(pb);
426 
427  if (s->pb->seekable) {
428  if (wav->write_peak != 2 && avio_tell(pb) - wav->data < UINT32_MAX) {
429  ff_end_tag(pb, wav->data);
430  avio_flush(pb);
431  }
432 
433  if (wav->write_peak && wav->peak_output) {
434  ret = peak_write_chunk(s);
435  avio_flush(pb);
436  }
437 
438  /* update file size */
439  file_size = avio_tell(pb);
440  data_size = file_size - wav->data;
441  if (wav->rf64 == RF64_ALWAYS || (wav->rf64 == RF64_AUTO && file_size - 8 > UINT32_MAX)) {
442  rf64 = 1;
443  } else if (file_size - 8 <= UINT32_MAX) {
444  avio_seek(pb, 4, SEEK_SET);
445  avio_wl32(pb, (uint32_t)(file_size - 8));
446  avio_seek(pb, file_size, SEEK_SET);
447 
448  avio_flush(pb);
449  } else {
450  av_log(s, AV_LOG_ERROR,
451  "Filesize %"PRId64" invalid for wav, output file will be broken\n",
452  file_size);
453  }
454 
455  number_of_samples = av_rescale(wav->maxpts - wav->minpts + wav->last_duration,
456  s->streams[0]->codec->sample_rate * (int64_t)s->streams[0]->time_base.num,
457  s->streams[0]->time_base.den);
458 
459  if(s->streams[0]->codec->codec_tag != 0x01) {
460  /* Update num_samps in fact chunk */
461  avio_seek(pb, wav->fact_pos, SEEK_SET);
462  if (rf64 || (wav->rf64 == RF64_AUTO && number_of_samples > UINT32_MAX)) {
463  rf64 = 1;
464  avio_wl32(pb, -1);
465  } else {
466  avio_wl32(pb, number_of_samples);
467  avio_seek(pb, file_size, SEEK_SET);
468  avio_flush(pb);
469  }
470  }
471 
472  if (rf64) {
473  /* overwrite RIFF with RF64 */
474  avio_seek(pb, 0, SEEK_SET);
475  ffio_wfourcc(pb, "RF64");
476  avio_wl32(pb, -1);
477 
478  /* write ds64 chunk (overwrite JUNK if rf64 == RF64_AUTO) */
479  avio_seek(pb, wav->ds64 - 8, SEEK_SET);
480  ffio_wfourcc(pb, "ds64");
481  avio_wl32(pb, 28); /* ds64 chunk size */
482  avio_wl64(pb, file_size - 8); /* RF64 chunk size */
483  avio_wl64(pb, data_size); /* data chunk size */
484  avio_wl64(pb, number_of_samples); /* fact chunk number of samples */
485  avio_wl32(pb, 0); /* number of table entries for non-'data' chunks */
486 
487  /* write -1 in data chunk size */
488  avio_seek(pb, wav->data - 4, SEEK_SET);
489  avio_wl32(pb, -1);
490 
491  avio_seek(pb, file_size, SEEK_SET);
492  avio_flush(pb);
493  }
494  }
495 
496  if (wav->write_peak)
497  peak_free_buffers(s);
498 
499  return ret;
500 }
501 
502 #define OFFSET(x) offsetof(WAVMuxContext, x)
503 #define ENC AV_OPT_FLAG_ENCODING_PARAM
504 static const AVOption options[] = {
505  { "write_bext", "Write BEXT chunk.", OFFSET(write_bext), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, ENC },
506  { "write_peak", "Write Peak Envelope chunk.", OFFSET(write_peak), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 2, ENC, "peak" },
507  { "off", "Do not write peak chunk.", 0, AV_OPT_TYPE_CONST, { .i64 = PEAK_OFF }, 0, 0, ENC, "peak" },
508  { "on", "Append peak chunk after wav data.", 0, AV_OPT_TYPE_CONST, { .i64 = PEAK_ON }, 0, 0, ENC, "peak" },
509  { "only", "Write only peak chunk, omit wav data.", 0, AV_OPT_TYPE_CONST, { .i64 = PEAK_ONLY }, 0, 0, ENC, "peak" },
510  { "rf64", "Use RF64 header rather than RIFF for large files.", OFFSET(rf64), AV_OPT_TYPE_INT, { .i64 = RF64_NEVER },-1, 1, ENC, "rf64" },
511  { "auto", "Write RF64 header if file grows large enough.", 0, AV_OPT_TYPE_CONST, { .i64 = RF64_AUTO }, 0, 0, ENC, "rf64" },
512  { "always", "Always write RF64 header regardless of file size.", 0, AV_OPT_TYPE_CONST, { .i64 = RF64_ALWAYS }, 0, 0, ENC, "rf64" },
513  { "never", "Never write RF64 header regardless of file size.", 0, AV_OPT_TYPE_CONST, { .i64 = RF64_NEVER }, 0, 0, ENC, "rf64" },
514  { "peak_block_size", "Number of audio samples used to generate each peak frame.", OFFSET(peak_block_size), AV_OPT_TYPE_INT, { .i64 = 256 }, 0, 65536, ENC },
515  { "peak_format", "The format of the peak envelope data (1: uint8, 2: uint16).", OFFSET(peak_format), AV_OPT_TYPE_INT, { .i64 = PEAK_FORMAT_UINT16 }, PEAK_FORMAT_UINT8, PEAK_FORMAT_UINT16, ENC },
516  { "peak_ppv", "Number of peak points per peak value (1 or 2).", OFFSET(peak_ppv), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, 2, ENC },
517  { NULL },
518 };
519 
520 static const AVClass wav_muxer_class = {
521  .class_name = "WAV muxer",
522  .item_name = av_default_item_name,
523  .option = options,
524  .version = LIBAVUTIL_VERSION_INT,
525 };
526 
527 AVOutputFormat ff_wav_muxer = {
528  .name = "wav",
529  .long_name = NULL_IF_CONFIG_SMALL("WAV / WAVE (Waveform Audio)"),
530  .mime_type = "audio/x-wav",
531  .extensions = "wav",
532  .priv_data_size = sizeof(WAVMuxContext),
533  .audio_codec = AV_CODEC_ID_PCM_S16LE,
534  .video_codec = AV_CODEC_ID_NONE,
535  .write_header = wav_write_header,
536  .write_packet = wav_write_packet,
537  .write_trailer = wav_write_trailer,
539  .codec_tag = (const AVCodecTag* const []){ ff_codec_wav_tags, 0 },
540  .priv_class = &wav_muxer_class,
541 };
542 #endif /* CONFIG_WAV_MUXER */
543 
544 #if CONFIG_W64_MUXER
545 #include "w64.h"
546 
547 static void start_guid(AVIOContext *pb, const uint8_t *guid, int64_t *pos)
548 {
549  *pos = avio_tell(pb);
550 
551  avio_write(pb, guid, 16);
552  avio_wl64(pb, INT64_MAX);
553 }
554 
555 static void end_guid(AVIOContext *pb, int64_t start)
556 {
557  int64_t end, pos = avio_tell(pb);
558 
559  end = FFALIGN(pos, 8);
560  ffio_fill(pb, 0, end - pos);
561  avio_seek(pb, start + 16, SEEK_SET);
562  avio_wl64(pb, end - start);
563  avio_seek(pb, end, SEEK_SET);
564 }
565 
566 static int w64_write_header(AVFormatContext *s)
567 {
568  WAVMuxContext *wav = s->priv_data;
569  AVIOContext *pb = s->pb;
570  int64_t start;
571  int ret;
572 
574  avio_wl64(pb, -1);
576  start_guid(pb, ff_w64_guid_fmt, &start);
577  if ((ret = ff_put_wav_header(pb, s->streams[0]->codec, 0)) < 0) {
578  av_log(s, AV_LOG_ERROR, "%s codec not supported\n",
579  s->streams[0]->codec->codec ? s->streams[0]->codec->codec->name : "NONE");
580  return ret;
581  }
582  end_guid(pb, start);
583 
584  if (s->streams[0]->codec->codec_tag != 0x01 /* hence for all other than PCM */
585  && s->pb->seekable) {
586  start_guid(pb, ff_w64_guid_fact, &wav->fact_pos);
587  avio_wl64(pb, 0);
588  end_guid(pb, wav->fact_pos);
589  }
590 
591  start_guid(pb, ff_w64_guid_data, &wav->data);
592 
593  return 0;
594 }
595 
596 static int w64_write_trailer(AVFormatContext *s)
597 {
598  AVIOContext *pb = s->pb;
599  WAVMuxContext *wav = s->priv_data;
600  int64_t file_size;
601 
602  if (pb->seekable) {
603  end_guid(pb, wav->data);
604 
605  file_size = avio_tell(pb);
606  avio_seek(pb, 16, SEEK_SET);
607  avio_wl64(pb, file_size);
608 
609  if (s->streams[0]->codec->codec_tag != 0x01) {
610  int64_t number_of_samples;
611 
612  number_of_samples = av_rescale(wav->maxpts - wav->minpts + wav->last_duration,
613  s->streams[0]->codec->sample_rate * (int64_t)s->streams[0]->time_base.num,
614  s->streams[0]->time_base.den);
615  avio_seek(pb, wav->fact_pos + 24, SEEK_SET);
616  avio_wl64(pb, number_of_samples);
617  }
618 
619  avio_seek(pb, file_size, SEEK_SET);
620  avio_flush(pb);
621  }
622 
623  return 0;
624 }
625 
626 AVOutputFormat ff_w64_muxer = {
627  .name = "w64",
628  .long_name = NULL_IF_CONFIG_SMALL("Sony Wave64"),
629  .extensions = "w64",
630  .priv_data_size = sizeof(WAVMuxContext),
631  .audio_codec = AV_CODEC_ID_PCM_S16LE,
632  .video_codec = AV_CODEC_ID_NONE,
633  .write_header = w64_write_header,
634  .write_packet = wav_write_packet,
635  .write_trailer = w64_write_trailer,
637  .codec_tag = (const AVCodecTag* const []){ ff_codec_wav_tags, 0 },
638 };
639 #endif /* CONFIG_W64_MUXER */
Definition: wavenc.c:57
void avio_wb64(AVIOContext *s, uint64_t val)
Definition: aviobuf.c:418
#define NULL
Definition: coverity.c:32
const struct AVCodec * codec
Definition: avcodec.h:1541
void avio_wl16(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:424
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:111
const uint8_t ff_w64_guid_wave[16]
Definition: w64.c:28
Buffered I/O operations.
int16_t * peak_maxpos
Definition: wavenc.c:73
void ff_end_tag(AVIOContext *pb, int64_t start)
Definition: riffenc.c:38
int64_t ff_start_tag(AVIOContext *pb, const char *tag)
Definition: riffenc.c:31
#define RF64_ALWAYS
Definition: wavenc.c:51
AVOption.
Definition: opt.h:245
int64_t minpts
Definition: wavenc.c:71
const uint8_t ff_w64_guid_fact[16]
Definition: w64.c:38
const char * fmt
Definition: avisynth_c.h:632
int peak_format
Definition: wavenc.c:85
#define LIBAVUTIL_VERSION_INT
Definition: version.h:70
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4149
int write_peak
Definition: wavenc.c:82
int num
numerator
Definition: rational.h:44
int size
Definition: avcodec.h:1468
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:208
static AVPacket pkt
int64_t ds64
Definition: wavenc.c:70
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
Definition: bytestream.h:87
#define AVFMT_TS_NONSTRICT
Format does not require strictly increasing timestamps, but they must still be monotonic.
Definition: avformat.h:495
int64_t fact_pos
Definition: wavenc.c:69
int peak_block_pos
Definition: wavenc.c:86
Format I/O context.
Definition: avformat.h:1314
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
Public dictionary API.
void avio_wl32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:324
uint8_t
#define av_cold
Definition: attributes.h:82
#define av_malloc(s)
AVOptions.
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1485
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1382
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:39
int flags
Flags modifying the (de)muxer behaviour.
Definition: avformat.h:1425
uint8_t * data
Definition: avcodec.h:1467
uint32_t tag
Definition: movenc.c:1348
PeakFormat
Definition: wavenc.c:61
int64_t data
Definition: wavenc.c:68
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:442
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:182
static av_always_inline void ffio_wfourcc(AVIOContext *pb, const uint8_t *s)
Definition: avio_internal.h:67
#define AVFMT_FLAG_BITEXACT
When muxing, try to avoid writing any random/volatile data to the output.
Definition: avformat.h:1442
const OptionDef options[]
Definition: ffserver.c:3962
#define FFALIGN(x, a)
Definition: macros.h:48
#define av_log(a,...)
void avio_wl64(AVIOContext *s, uint64_t val)
Definition: aviobuf.c:412
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition: utils.c:3006
AVDictionary * metadata
Metadata that applies to the whole file.
Definition: avformat.h:1528
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
PeakType
Definition: wavenc.c:55
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
const char * name
Name of the codec implementation.
Definition: avcodec.h:3399
const AVCodecTag ff_codec_wav_tags[]
Definition: riff.c:420
#define FFMAX(a, b)
Definition: common.h:94
int16_t * peak_maxneg
Definition: wavenc.c:73
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
Definition: codec_desc.c:2900
int write_bext
Definition: wavenc.c:81
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:896
int peak_block_size
Definition: wavenc.c:84
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1370
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:207
int void avio_flush(AVIOContext *s)
Force flushing of buffered data.
Definition: aviobuf.c:202
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
Definition: mathematics.c:129
void ffio_fill(AVIOContext *s, int b, int count)
Definition: aviobuf.c:168
#define FFMIN(a, b)
Definition: common.h:96
static struct tm * localtime_r(const time_t *clock, struct tm *result)
Definition: time_internal.h:37
static int write_trailer(AVFormatContext *s1)
Definition: v4l2enc.c:94
const uint8_t ff_w64_guid_data[16]
Definition: w64.c:42
const char * name
Definition: avformat.h:523
internal header for RIFF based (de)muxers do NOT include this in end user applications ...
uint32_t peak_pos_pop
Definition: wavenc.c:77
const uint8_t ff_w64_guid_riff[16]
Definition: w64.c:23
int avio_put_str(AVIOContext *s, const char *str)
Write a NULL-terminated string.
Definition: aviobuf.c:340
int64_t av_gettime(void)
Get the current time in microseconds.
Definition: time.c:39
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
#define RF64_AUTO
Definition: wavenc.c:49
enum AVCodecID codec_id
Definition: avcodec.h:1549
int sample_rate
samples per second
Definition: avcodec.h:2287
AVIOContext * pb
I/O context.
Definition: avformat.h:1356
main external API structure.
Definition: avcodec.h:1532
int64_t maxpts
Definition: wavenc.c:72
#define ENC
Definition: caca.c:203
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1564
uint32_t peak_num_frames
Definition: wavenc.c:74
void ff_riff_write_info(AVFormatContext *s)
Write all recognized RIFF tags from s->metadata.
Definition: riffenc.c:302
Describe the class of an AVClass context structure.
Definition: log.h:67
size_t av_strlcatf(char *dst, size_t size, const char *fmt,...)
Definition: avstring.c:101
#define RF64_NEVER
Definition: wavenc.c:50
const char * name
Name of the codec described by this descriptor.
Definition: avcodec.h:569
This struct describes the properties of a single codec described by an AVCodecID. ...
Definition: avcodec.h:561
int rf64
Definition: wavenc.c:83
static int flags
Definition: cpu.c:47
const uint8_t ff_w64_guid_fmt[16]
Definition: w64.c:33
#define OFFSET(x)
Definition: ffmpeg_opt.c:3106
Main libavformat public API header.
common internal and external API header
void * av_realloc(void *ptr, size_t size)
Allocate or reallocate a block of memory.
Definition: mem.c:145
uint32_t peak_outbuf_size
Definition: wavenc.c:75
static double c[64]
uint32_t peak_outbuf_bytes
Definition: wavenc.c:76
#define AV_WL16(p, v)
Definition: intreadwrite.h:412
uint8_t * peak_output
Definition: wavenc.c:79
int den
denominator
Definition: rational.h:45
char * value
Definition: dict.h:88
int len
int channels
number of audio channels
Definition: avcodec.h:2288
int peak_bps
Definition: wavenc.c:88
int ff_put_wav_header(AVIOContext *pb, AVCodecContext *enc, int flags)
Write WAVEFORMAT header structure.
Definition: riffenc.c:54
uint16_t peak_pop
Definition: wavenc.c:78
void * priv_data
Format private data.
Definition: avformat.h:1342
static void write_header(FFV1Context *f)
Definition: ffv1enc.c:497
#define PEAK_BUFFER_SIZE
Definition: wavenc.c:53
static void * av_mallocz_array(size_t nmemb, size_t size)
Definition: mem.h:229
#define av_freep(p)
void INT64 start
Definition: avisynth_c.h:553
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:919
This structure stores compressed data.
Definition: avcodec.h:1444
static int write_packet(AVFormatContext *s1, AVPacket *pkt)
Definition: v4l2enc.c:86
int peak_ppv
Definition: wavenc.c:87
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1460
#define FFMAX3(a, b, c)
Definition: common.h:95
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:240
int last_duration
Definition: wavenc.c:80