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.

190 lines
5.4KB

  1. /*
  2. * Core Audio Format muxer
  3. * Copyright (c) 2011 Carl Eugen Hoyos
  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. #include "avformat.h"
  22. #include "caf.h"
  23. #include "riff.h"
  24. #include "isom.h"
  25. #include "avio_internal.h"
  26. #include "libavutil/intfloat_readwrite.h"
  27. typedef struct {
  28. int64_t data;
  29. } CAFContext;
  30. static uint32_t codec_flags(enum CodecID codec_id) {
  31. switch (codec_id) {
  32. case CODEC_ID_PCM_F32BE:
  33. case CODEC_ID_PCM_F64BE:
  34. return 1; //< kCAFLinearPCMFormatFlagIsFloat
  35. case CODEC_ID_PCM_S16LE:
  36. case CODEC_ID_PCM_S24LE:
  37. case CODEC_ID_PCM_S32LE:
  38. return 2; //< kCAFLinearPCMFormatFlagIsLittleEndian
  39. case CODEC_ID_PCM_F32LE:
  40. case CODEC_ID_PCM_F64LE:
  41. return 3; //< kCAFLinearPCMFormatFlagIsFloat | kCAFLinearPCMFormatFlagIsLittleEndian
  42. default:
  43. return 0;
  44. }
  45. }
  46. static uint32_t samples_per_packet(enum CodecID codec_id) {
  47. switch (codec_id) {
  48. case CODEC_ID_PCM_S8:
  49. case CODEC_ID_PCM_S16LE:
  50. case CODEC_ID_PCM_S16BE:
  51. case CODEC_ID_PCM_S24LE:
  52. case CODEC_ID_PCM_S24BE:
  53. case CODEC_ID_PCM_S32LE:
  54. case CODEC_ID_PCM_S32BE:
  55. case CODEC_ID_PCM_F32LE:
  56. case CODEC_ID_PCM_F32BE:
  57. case CODEC_ID_PCM_F64LE:
  58. case CODEC_ID_PCM_F64BE:
  59. case CODEC_ID_PCM_ALAW:
  60. case CODEC_ID_PCM_MULAW:
  61. return 1;
  62. case CODEC_ID_MACE3:
  63. case CODEC_ID_MACE6:
  64. return 6;
  65. case CODEC_ID_ADPCM_IMA_QT:
  66. return 64;
  67. case CODEC_ID_AMR_NB:
  68. case CODEC_ID_GSM:
  69. case CODEC_ID_QCELP:
  70. return 160;
  71. case CODEC_ID_GSM_MS:
  72. return 320;
  73. case CODEC_ID_MP1:
  74. return 384;
  75. case CODEC_ID_MP2:
  76. case CODEC_ID_MP3:
  77. return 1152;
  78. case CODEC_ID_AC3:
  79. return 1536;
  80. case CODEC_ID_ALAC:
  81. case CODEC_ID_QDM2:
  82. return 4096;
  83. default:
  84. return 0;
  85. }
  86. }
  87. static int caf_write_header(AVFormatContext *s)
  88. {
  89. AVIOContext *pb = s->pb;
  90. AVCodecContext *enc = s->streams[0]->codec;
  91. CAFContext *caf = s->priv_data;
  92. unsigned int codec_tag = ff_codec_get_tag(ff_codec_caf_tags, enc->codec_id);
  93. switch (enc->codec_id) {
  94. case CODEC_ID_PCM_S8:
  95. case CODEC_ID_PCM_S16LE:
  96. case CODEC_ID_PCM_S16BE:
  97. case CODEC_ID_PCM_S24LE:
  98. case CODEC_ID_PCM_S24BE:
  99. case CODEC_ID_PCM_S32LE:
  100. case CODEC_ID_PCM_S32BE:
  101. case CODEC_ID_PCM_F32LE:
  102. case CODEC_ID_PCM_F32BE:
  103. case CODEC_ID_PCM_F64LE:
  104. case CODEC_ID_PCM_F64BE:
  105. case CODEC_ID_PCM_ALAW:
  106. case CODEC_ID_PCM_MULAW:
  107. codec_tag = MKBETAG('l','p','c','m');
  108. }
  109. if (!codec_tag) {
  110. av_log(s, AV_LOG_ERROR, "unsupported codec\n");
  111. return AVERROR_INVALIDDATA;
  112. }
  113. if (!enc->block_align) {
  114. av_log(s, AV_LOG_ERROR, "muxing with unknown or variable packet size not yet supported\n");
  115. return AVERROR_PATCHWELCOME;
  116. }
  117. ffio_wfourcc(pb, "caff"); //< mFileType
  118. avio_wb16(pb, 1); //< mFileVersion
  119. avio_wb16(pb, 0); //< mFileFlags
  120. ffio_wfourcc(pb, "desc"); //< Audio Description chunk
  121. avio_wb64(pb, 32); //< mChunkSize
  122. avio_wb64(pb, av_dbl2int(enc->sample_rate)); //< mSampleRate
  123. avio_wb32(pb, codec_tag); //< mFormatID
  124. avio_wb32(pb, codec_flags(enc->codec_id)); //< mFormatFlags
  125. avio_wb32(pb, enc->block_align); //< mBytesPerPacket
  126. avio_wb32(pb, samples_per_packet(enc->codec_id)); //< mFramesPerPacket
  127. avio_wb32(pb, enc->channels); //< mChannelsPerFrame
  128. avio_wb32(pb, enc->bits_per_coded_sample); //< mBitsPerChannel
  129. if (enc->channel_layout) {
  130. ffio_wfourcc(pb, "chan");
  131. avio_wb64(pb, 12);
  132. ff_mov_write_chan(pb, enc->channel_layout);
  133. }
  134. ffio_wfourcc(pb, "data"); //< Audio Data chunk
  135. caf->data = avio_tell(pb);
  136. avio_wb64(pb, -1); //< mChunkSize
  137. avio_wb32(pb, 0); //< mEditCount
  138. avio_flush(pb);
  139. return 0;
  140. }
  141. static int caf_write_packet(AVFormatContext *s, AVPacket *pkt)
  142. {
  143. avio_write(s->pb, pkt->data, pkt->size);
  144. return 0;
  145. }
  146. static int caf_write_trailer(AVFormatContext *s)
  147. {
  148. AVIOContext *pb = s->pb;
  149. if (pb->seekable) {
  150. CAFContext *caf = s->priv_data;
  151. int64_t file_size = avio_tell(pb);
  152. avio_seek(pb, caf->data, SEEK_SET);
  153. avio_wb64(pb, file_size - caf->data - 8);
  154. avio_seek(pb, file_size, SEEK_SET);
  155. avio_flush(pb);
  156. }
  157. return 0;
  158. }
  159. AVOutputFormat ff_caf_muxer = {
  160. "caf",
  161. NULL_IF_CONFIG_SMALL("Apple Core Audio Format"),
  162. "audio/x-caf",
  163. "caf",
  164. sizeof(CAFContext),
  165. CODEC_ID_PCM_S16BE,
  166. CODEC_ID_NONE,
  167. caf_write_header,
  168. caf_write_packet,
  169. caf_write_trailer,
  170. .codec_tag= (const AVCodecTag* const []){ff_codec_caf_tags, 0},
  171. };