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.

199 lines
5.7KB

  1. /*
  2. * AU muxer and demuxer
  3. * Copyright (c) 2001 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  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
  20. */
  21. /*
  22. * First version by Francois Revol revol@free.fr
  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. /* The libavcodec codecs we support, and the IDs they have in the file */
  37. static const AVCodecTag codec_au_tags[] = {
  38. { AV_CODEC_ID_PCM_MULAW, 1 },
  39. { AV_CODEC_ID_PCM_S8, 2 },
  40. { AV_CODEC_ID_PCM_S16BE, 3 },
  41. { AV_CODEC_ID_PCM_S24BE, 4 },
  42. { AV_CODEC_ID_PCM_S32BE, 5 },
  43. { AV_CODEC_ID_PCM_F32BE, 6 },
  44. { AV_CODEC_ID_PCM_F64BE, 7 },
  45. { AV_CODEC_ID_ADPCM_G722, 24 },
  46. { AV_CODEC_ID_PCM_ALAW, 27 },
  47. { AV_CODEC_ID_NONE, 0 },
  48. };
  49. #if CONFIG_AU_DEMUXER
  50. static int au_probe(AVProbeData *p)
  51. {
  52. /* check file header */
  53. if (p->buf[0] == '.' && p->buf[1] == 's' &&
  54. p->buf[2] == 'n' && p->buf[3] == 'd')
  55. return AVPROBE_SCORE_MAX;
  56. else
  57. return 0;
  58. }
  59. /* au input */
  60. static int au_read_header(AVFormatContext *s)
  61. {
  62. int size, bps, data_size = 0;
  63. unsigned int tag;
  64. AVIOContext *pb = s->pb;
  65. unsigned int id, channels, rate;
  66. enum AVCodecID codec;
  67. AVStream *st;
  68. /* check ".snd" header */
  69. tag = avio_rl32(pb);
  70. if (tag != MKTAG('.', 's', 'n', 'd'))
  71. return AVERROR_INVALIDDATA;
  72. size = avio_rb32(pb); /* header size */
  73. data_size = avio_rb32(pb); /* data size in bytes */
  74. if (data_size < 0 && data_size != AU_UNKNOWN_SIZE) {
  75. av_log(s, AV_LOG_ERROR, "Invalid negative data size '%d' found\n", data_size);
  76. return AVERROR_INVALIDDATA;
  77. }
  78. id = avio_rb32(pb);
  79. rate = avio_rb32(pb);
  80. channels = avio_rb32(pb);
  81. codec = ff_codec_get_id(codec_au_tags, id);
  82. if (!(bps = av_get_bits_per_sample(codec))) {
  83. av_log_ask_for_sample(s, "could not determine bits per sample\n");
  84. return AVERROR_PATCHWELCOME;
  85. }
  86. if (channels == 0 || channels > 64) {
  87. av_log(s, AV_LOG_ERROR, "Invalid number of channels %d\n", channels);
  88. return AVERROR_INVALIDDATA;
  89. }
  90. if (size >= 24) {
  91. /* skip unused data */
  92. avio_skip(pb, size - 24);
  93. }
  94. /* now we are ready: build format streams */
  95. st = avformat_new_stream(s, NULL);
  96. if (!st)
  97. return AVERROR(ENOMEM);
  98. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  99. st->codec->codec_tag = id;
  100. st->codec->codec_id = codec;
  101. st->codec->channels = channels;
  102. st->codec->sample_rate = rate;
  103. st->codec->block_align = FFMAX(bps * st->codec->channels / 8, 1);
  104. if (data_size != AU_UNKNOWN_SIZE)
  105. st->duration = (((int64_t)data_size)<<3) / (st->codec->channels * (int64_t)bps);
  106. avpriv_set_pts_info(st, 64, 1, rate);
  107. return 0;
  108. }
  109. AVInputFormat ff_au_demuxer = {
  110. .name = "au",
  111. .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
  112. .read_probe = au_probe,
  113. .read_header = au_read_header,
  114. .read_packet = ff_pcm_read_packet,
  115. .read_seek = ff_pcm_read_seek,
  116. .codec_tag = (const AVCodecTag* const []){ codec_au_tags, 0 },
  117. };
  118. #endif /* CONFIG_AU_DEMUXER */
  119. #if CONFIG_AU_MUXER
  120. #include "rawenc.h"
  121. /* AUDIO_FILE header */
  122. static int put_au_header(AVIOContext *pb, AVCodecContext *enc)
  123. {
  124. if(!enc->codec_tag)
  125. return -1;
  126. ffio_wfourcc(pb, ".snd"); /* magic number */
  127. avio_wb32(pb, AU_HEADER_SIZE); /* header size */
  128. avio_wb32(pb, AU_UNKNOWN_SIZE); /* data size */
  129. avio_wb32(pb, (uint32_t)enc->codec_tag); /* codec ID */
  130. avio_wb32(pb, enc->sample_rate);
  131. avio_wb32(pb, (uint32_t)enc->channels);
  132. avio_wb64(pb, 0); /* annotation field */
  133. return 0;
  134. }
  135. static int au_write_header(AVFormatContext *s)
  136. {
  137. AVIOContext *pb = s->pb;
  138. /* format header */
  139. if (put_au_header(pb, s->streams[0]->codec) < 0) {
  140. return AVERROR(EINVAL);
  141. }
  142. avio_flush(pb);
  143. return 0;
  144. }
  145. static int au_write_trailer(AVFormatContext *s)
  146. {
  147. AVIOContext *pb = s->pb;
  148. int64_t file_size = avio_tell(pb);
  149. if (s->pb->seekable && file_size < INT32_MAX) {
  150. /* update file size */
  151. avio_seek(pb, 8, SEEK_SET);
  152. avio_wb32(pb, (uint32_t)(file_size - AU_HEADER_SIZE));
  153. avio_seek(pb, file_size, SEEK_SET);
  154. avio_flush(pb);
  155. }
  156. return 0;
  157. }
  158. AVOutputFormat ff_au_muxer = {
  159. .name = "au",
  160. .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
  161. .mime_type = "audio/basic",
  162. .extensions = "au",
  163. .audio_codec = AV_CODEC_ID_PCM_S16BE,
  164. .video_codec = AV_CODEC_ID_NONE,
  165. .write_header = au_write_header,
  166. .write_packet = ff_raw_write_packet,
  167. .write_trailer = au_write_trailer,
  168. .codec_tag = (const AVCodecTag* const []){ codec_au_tags, 0 },
  169. };
  170. #endif /* CONFIG_AU_MUXER */