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.

228 lines
6.3KB

  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. #include "riff.h"
  33. /* if we don't know the size in advance */
  34. #define AU_UNKNOWN_SIZE ((uint32_t)(~0))
  35. /* the specification requires an annotation field of at least eight bytes */
  36. #define AU_HEADER_SIZE (24+8)
  37. /* The libavcodec codecs we support, and the IDs they have in the file */
  38. static const AVCodecTag codec_au_tags[] = {
  39. { AV_CODEC_ID_PCM_MULAW, 1 },
  40. { AV_CODEC_ID_PCM_S8, 2 },
  41. { AV_CODEC_ID_PCM_S16BE, 3 },
  42. { AV_CODEC_ID_PCM_S24BE, 4 },
  43. { AV_CODEC_ID_PCM_S32BE, 5 },
  44. { AV_CODEC_ID_PCM_F32BE, 6 },
  45. { AV_CODEC_ID_PCM_F64BE, 7 },
  46. { AV_CODEC_ID_ADPCM_G722, 24 },
  47. { AV_CODEC_ID_PCM_ALAW, 27 },
  48. { AV_CODEC_ID_NONE, 0 },
  49. };
  50. #if CONFIG_AU_MUXER
  51. /* AUDIO_FILE header */
  52. static int put_au_header(AVIOContext *pb, AVCodecContext *enc)
  53. {
  54. if(!enc->codec_tag)
  55. return -1;
  56. ffio_wfourcc(pb, ".snd"); /* magic number */
  57. avio_wb32(pb, AU_HEADER_SIZE); /* header size */
  58. avio_wb32(pb, AU_UNKNOWN_SIZE); /* data size */
  59. avio_wb32(pb, (uint32_t)enc->codec_tag); /* codec ID */
  60. avio_wb32(pb, enc->sample_rate);
  61. avio_wb32(pb, (uint32_t)enc->channels);
  62. avio_wb64(pb, 0); /* annotation field */
  63. return 0;
  64. }
  65. static int au_write_header(AVFormatContext *s)
  66. {
  67. AVIOContext *pb = s->pb;
  68. s->priv_data = NULL;
  69. /* format header */
  70. if (put_au_header(pb, s->streams[0]->codec) < 0) {
  71. return -1;
  72. }
  73. avio_flush(pb);
  74. return 0;
  75. }
  76. static int au_write_packet(AVFormatContext *s, AVPacket *pkt)
  77. {
  78. AVIOContext *pb = s->pb;
  79. avio_write(pb, pkt->data, pkt->size);
  80. return 0;
  81. }
  82. static int au_write_trailer(AVFormatContext *s)
  83. {
  84. AVIOContext *pb = s->pb;
  85. int64_t file_size;
  86. if (s->pb->seekable) {
  87. /* update file size */
  88. file_size = avio_tell(pb);
  89. avio_seek(pb, 8, SEEK_SET);
  90. avio_wb32(pb, (uint32_t)(file_size - AU_HEADER_SIZE));
  91. avio_seek(pb, file_size, SEEK_SET);
  92. avio_flush(pb);
  93. }
  94. return 0;
  95. }
  96. #endif /* CONFIG_AU_MUXER */
  97. static int au_probe(AVProbeData *p)
  98. {
  99. /* check file header */
  100. if (p->buf[0] == '.' && p->buf[1] == 's' &&
  101. p->buf[2] == 'n' && p->buf[3] == 'd')
  102. return AVPROBE_SCORE_MAX;
  103. else
  104. return 0;
  105. }
  106. /* au input */
  107. static int au_read_header(AVFormatContext *s)
  108. {
  109. int size, bps, data_size = 0;
  110. unsigned int tag;
  111. AVIOContext *pb = s->pb;
  112. unsigned int id, channels, rate;
  113. enum AVCodecID codec;
  114. AVStream *st;
  115. /* check ".snd" header */
  116. tag = avio_rl32(pb);
  117. if (tag != MKTAG('.', 's', 'n', 'd'))
  118. return -1;
  119. size = avio_rb32(pb); /* header size */
  120. data_size = avio_rb32(pb); /* data size in bytes */
  121. if (data_size < 0 && data_size != AU_UNKNOWN_SIZE) {
  122. av_log(s, AV_LOG_ERROR, "Invalid negative data size '%d' found\n", data_size);
  123. return AVERROR_INVALIDDATA;
  124. }
  125. id = avio_rb32(pb);
  126. rate = avio_rb32(pb);
  127. channels = avio_rb32(pb);
  128. codec = ff_codec_get_id(codec_au_tags, id);
  129. if (!(bps = av_get_bits_per_sample(codec))) {
  130. av_log_ask_for_sample(s, "could not determine bits per sample\n");
  131. return AVERROR_INVALIDDATA;
  132. }
  133. if (channels == 0 || channels > 64) {
  134. av_log(s, AV_LOG_ERROR, "Invalid number of channels %d\n", channels);
  135. return AVERROR_INVALIDDATA;
  136. }
  137. if (size >= 24) {
  138. /* skip unused data */
  139. avio_skip(pb, size - 24);
  140. }
  141. /* now we are ready: build format streams */
  142. st = avformat_new_stream(s, NULL);
  143. if (!st)
  144. return -1;
  145. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  146. st->codec->codec_tag = id;
  147. st->codec->codec_id = codec;
  148. st->codec->channels = channels;
  149. st->codec->sample_rate = rate;
  150. if (data_size != AU_UNKNOWN_SIZE)
  151. st->duration = (((int64_t)data_size)<<3) / (st->codec->channels * (int64_t)bps);
  152. avpriv_set_pts_info(st, 64, 1, rate);
  153. return 0;
  154. }
  155. #define BLOCK_SIZE 1024
  156. static int au_read_packet(AVFormatContext *s,
  157. AVPacket *pkt)
  158. {
  159. int ret;
  160. int bpcs = av_get_bits_per_sample(s->streams[0]->codec->codec_id);
  161. if (!bpcs)
  162. return AVERROR(EINVAL);
  163. ret= av_get_packet(s->pb, pkt, BLOCK_SIZE *
  164. s->streams[0]->codec->channels *
  165. bpcs >> 3);
  166. if (ret < 0)
  167. return ret;
  168. pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
  169. pkt->stream_index = 0;
  170. return 0;
  171. }
  172. #if CONFIG_AU_DEMUXER
  173. AVInputFormat ff_au_demuxer = {
  174. .name = "au",
  175. .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
  176. .read_probe = au_probe,
  177. .read_header = au_read_header,
  178. .read_packet = au_read_packet,
  179. .read_seek = ff_pcm_read_seek,
  180. .codec_tag = (const AVCodecTag* const []){ codec_au_tags, 0 },
  181. };
  182. #endif
  183. #if CONFIG_AU_MUXER
  184. AVOutputFormat ff_au_muxer = {
  185. .name = "au",
  186. .long_name = NULL_IF_CONFIG_SMALL("Sun AU"),
  187. .mime_type = "audio/basic",
  188. .extensions = "au",
  189. .audio_codec = AV_CODEC_ID_PCM_S16BE,
  190. .video_codec = AV_CODEC_ID_NONE,
  191. .write_header = au_write_header,
  192. .write_packet = au_write_packet,
  193. .write_trailer = au_write_trailer,
  194. .codec_tag = (const AVCodecTag* const []){ codec_au_tags, 0 },
  195. };
  196. #endif //CONFIG_AU_MUXER