You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

224 lines
6.5KB

  1. /*
  2. * AU muxer and demuxer
  3. * Copyright (c) 2001 Fabrice Bellard
  4. *
  5. * first version by Francois Revol <revol@free.fr>
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /*
  24. * Reference documents:
  25. * http://www.opengroup.org/public/pubs/external/auformat.html
  26. * http://www.goice.co.jp/member/mo/formats/au.html
  27. */
  28. #include "avformat.h"
  29. #include "internal.h"
  30. #include "avio_internal.h"
  31. #include "pcm.h"
  32. /* if we don't know the size in advance */
  33. #define AU_UNKNOWN_SIZE ((uint32_t)(~0))
  34. /* the specification requires an annotation field of at least eight bytes */
  35. #define AU_HEADER_SIZE (24+8)
  36. static const AVCodecTag codec_au_tags[] = {
  37. { AV_CODEC_ID_PCM_MULAW, 1 },
  38. { AV_CODEC_ID_PCM_S8, 2 },
  39. { AV_CODEC_ID_PCM_S16BE, 3 },
  40. { AV_CODEC_ID_PCM_S24BE, 4 },
  41. { AV_CODEC_ID_PCM_S32BE, 5 },
  42. { AV_CODEC_ID_PCM_F32BE, 6 },
  43. { AV_CODEC_ID_PCM_F64BE, 7 },
  44. { AV_CODEC_ID_ADPCM_G726LE, 23 },
  45. { AV_CODEC_ID_ADPCM_G722,24 },
  46. { AV_CODEC_ID_ADPCM_G726LE, 25 },
  47. { AV_CODEC_ID_ADPCM_G726LE, 26 },
  48. { AV_CODEC_ID_PCM_ALAW, 27 },
  49. { AV_CODEC_ID_ADPCM_G726LE, MKBETAG('7','2','6','2') },
  50. { AV_CODEC_ID_NONE, 0 },
  51. };
  52. #if CONFIG_AU_DEMUXER
  53. static int au_probe(AVProbeData *p)
  54. {
  55. if (p->buf[0] == '.' && p->buf[1] == 's' &&
  56. p->buf[2] == 'n' && p->buf[3] == 'd')
  57. return AVPROBE_SCORE_MAX;
  58. else
  59. return 0;
  60. }
  61. #define BLOCK_SIZE 1024
  62. static int au_read_header(AVFormatContext *s)
  63. {
  64. int size, data_size = 0;
  65. unsigned int tag;
  66. AVIOContext *pb = s->pb;
  67. unsigned int id, channels, rate;
  68. int bps;
  69. enum AVCodecID codec;
  70. AVStream *st;
  71. tag = avio_rl32(pb);
  72. if (tag != MKTAG('.', 's', 'n', 'd'))
  73. return AVERROR_INVALIDDATA;
  74. size = avio_rb32(pb); /* header size */
  75. data_size = avio_rb32(pb); /* data size in bytes */
  76. if (data_size < 0 && data_size != AU_UNKNOWN_SIZE) {
  77. av_log(s, AV_LOG_ERROR, "Invalid negative data size '%d' found\n", data_size);
  78. return AVERROR_INVALIDDATA;
  79. }
  80. id = avio_rb32(pb);
  81. rate = avio_rb32(pb);
  82. channels = avio_rb32(pb);
  83. if (size > 24) {
  84. /* skip unused data */
  85. avio_skip(pb, size - 24);
  86. }
  87. codec = ff_codec_get_id(codec_au_tags, id);
  88. if (codec == AV_CODEC_ID_NONE) {
  89. avpriv_request_sample(s, "unknown or unsupported codec tag: %u", id);
  90. return AVERROR_PATCHWELCOME;
  91. }
  92. bps = av_get_bits_per_sample(codec);
  93. if (codec == AV_CODEC_ID_ADPCM_G726LE) {
  94. if (id == MKBETAG('7','2','6','2')) {
  95. bps = 2;
  96. } else {
  97. const uint8_t bpcss[] = {4, 0, 3, 5};
  98. bps = bpcss[id - 23];
  99. }
  100. } else if (!bps) {
  101. avpriv_request_sample(s, "Unknown bits per sample");
  102. return AVERROR_PATCHWELCOME;
  103. }
  104. if (channels == 0 || channels >= INT_MAX / (BLOCK_SIZE * bps >> 3)) {
  105. av_log(s, AV_LOG_ERROR, "Invalid number of channels %u\n", channels);
  106. return AVERROR_INVALIDDATA;
  107. }
  108. if (rate == 0 || rate > INT_MAX) {
  109. av_log(s, AV_LOG_ERROR, "Invalid sample rate: %u\n", rate);
  110. return AVERROR_INVALIDDATA;
  111. }
  112. st = avformat_new_stream(s, NULL);
  113. if (!st)
  114. return AVERROR(ENOMEM);
  115. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  116. st->codec->codec_tag = id;
  117. st->codec->codec_id = codec;
  118. st->codec->channels = channels;
  119. st->codec->sample_rate = rate;
  120. st->codec->bits_per_coded_sample = bps;
  121. st->codec->bit_rate = channels * rate * bps;
  122. st->codec->block_align = FFMAX(bps * st->codec->channels / 8, 1);
  123. if (data_size != AU_UNKNOWN_SIZE)
  124. st->duration = (((int64_t)data_size)<<3) / (st->codec->channels * (int64_t)bps);
  125. st->start_time = 0;
  126. avpriv_set_pts_info(st, 64, 1, rate);
  127. return 0;
  128. }
  129. AVInputFormat ff_au_demuxer = {
  130. .name = "au",
  131. .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
  132. .read_probe = au_probe,
  133. .read_header = au_read_header,
  134. .read_packet = ff_pcm_read_packet,
  135. .read_seek = ff_pcm_read_seek,
  136. .codec_tag = (const AVCodecTag* const []) { codec_au_tags, 0 },
  137. };
  138. #endif /* CONFIG_AU_DEMUXER */
  139. #if CONFIG_AU_MUXER
  140. #include "rawenc.h"
  141. static int au_write_header(AVFormatContext *s)
  142. {
  143. AVIOContext *pb = s->pb;
  144. AVCodecContext *enc = s->streams[0]->codec;
  145. if (s->nb_streams != 1) {
  146. av_log(s, AV_LOG_ERROR, "only one stream is supported\n");
  147. return AVERROR(EINVAL);
  148. }
  149. enc->codec_tag = ff_codec_get_tag(codec_au_tags, enc->codec_id);
  150. if (!enc->codec_tag) {
  151. av_log(s, AV_LOG_ERROR, "unsupported codec\n");
  152. return AVERROR(EINVAL);
  153. }
  154. ffio_wfourcc(pb, ".snd"); /* magic number */
  155. avio_wb32(pb, AU_HEADER_SIZE); /* header size */
  156. avio_wb32(pb, AU_UNKNOWN_SIZE); /* data size */
  157. avio_wb32(pb, enc->codec_tag); /* codec ID */
  158. avio_wb32(pb, enc->sample_rate);
  159. avio_wb32(pb, enc->channels);
  160. avio_wb64(pb, 0); /* annotation field */
  161. avio_flush(pb);
  162. return 0;
  163. }
  164. static int au_write_trailer(AVFormatContext *s)
  165. {
  166. AVIOContext *pb = s->pb;
  167. int64_t file_size = avio_tell(pb);
  168. if (s->pb->seekable && file_size < INT32_MAX) {
  169. /* update file size */
  170. avio_seek(pb, 8, SEEK_SET);
  171. avio_wb32(pb, (uint32_t)(file_size - AU_HEADER_SIZE));
  172. avio_seek(pb, file_size, SEEK_SET);
  173. avio_flush(pb);
  174. }
  175. return 0;
  176. }
  177. AVOutputFormat ff_au_muxer = {
  178. .name = "au",
  179. .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
  180. .mime_type = "audio/basic",
  181. .extensions = "au",
  182. .audio_codec = AV_CODEC_ID_PCM_S16BE,
  183. .video_codec = AV_CODEC_ID_NONE,
  184. .write_header = au_write_header,
  185. .write_packet = ff_raw_write_packet,
  186. .write_trailer = au_write_trailer,
  187. .codec_tag = (const AVCodecTag* const []) { codec_au_tags, 0 },
  188. };
  189. #endif /* CONFIG_AU_MUXER */