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.

427 lines
12KB

  1. /*
  2. * WAV encoder and decoder
  3. * Copyright (c) 2001, 2002 Fabrice Bellard.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. #include "avformat.h"
  20. #include "avi.h"
  21. const CodecTag codec_wav_tags[] = {
  22. { CODEC_ID_MP2, 0x50 },
  23. { CODEC_ID_MP3, 0x55 },
  24. { CODEC_ID_AC3, 0x2000 },
  25. { CODEC_ID_DTS, 0x2001 },
  26. { CODEC_ID_PCM_S16LE, 0x01 },
  27. { CODEC_ID_PCM_U8, 0x01 }, /* must come after s16le in this list */
  28. { CODEC_ID_PCM_S24LE, 0x01 },
  29. { CODEC_ID_PCM_S32LE, 0x01 },
  30. { CODEC_ID_PCM_ALAW, 0x06 },
  31. { CODEC_ID_PCM_MULAW, 0x07 },
  32. { CODEC_ID_ADPCM_MS, 0x02 },
  33. { CODEC_ID_ADPCM_IMA_WAV, 0x11 },
  34. { CODEC_ID_ADPCM_YAMAHA, 0x20 },
  35. { CODEC_ID_ADPCM_G726, 0x45 },
  36. { CODEC_ID_ADPCM_IMA_DK4, 0x61 }, /* rogue format number */
  37. { CODEC_ID_ADPCM_IMA_DK3, 0x62 }, /* rogue format number */
  38. { CODEC_ID_WMAV1, 0x160 },
  39. { CODEC_ID_WMAV2, 0x161 },
  40. { CODEC_ID_AAC, 0x706d },
  41. { CODEC_ID_VORBIS, ('V'<<8)+'o' }, //HACK/FIXME, does vorbis in WAV/AVI have an (in)official id?
  42. { CODEC_ID_SONIC, 0x2048 },
  43. { CODEC_ID_SONIC_LS, 0x2048 },
  44. { CODEC_ID_ADPCM_CT, 0x200 },
  45. { CODEC_ID_ADPCM_SWF, ('S'<<8)+'F' },
  46. { CODEC_ID_TRUESPEECH, 0x22 },
  47. // for NuppelVideo (nuv.c)
  48. { CODEC_ID_PCM_S16LE, MKTAG('R', 'A', 'W', 'A') },
  49. { CODEC_ID_MP3, MKTAG('L', 'A', 'M', 'E') },
  50. { 0, 0 },
  51. };
  52. #ifdef CONFIG_MUXERS
  53. /* WAVEFORMATEX header */
  54. /* returns the size or -1 on error */
  55. int put_wav_header(ByteIOContext *pb, AVCodecContext *enc)
  56. {
  57. int bps, blkalign, bytespersec;
  58. int hdrsize = 18;
  59. if(!enc->codec_tag)
  60. enc->codec_tag = codec_get_tag(codec_wav_tags, enc->codec_id);
  61. if(!enc->codec_tag)
  62. return -1;
  63. put_le16(pb, enc->codec_tag);
  64. put_le16(pb, enc->channels);
  65. put_le32(pb, enc->sample_rate);
  66. if (enc->codec_id == CODEC_ID_PCM_U8 ||
  67. enc->codec_id == CODEC_ID_PCM_ALAW ||
  68. enc->codec_id == CODEC_ID_PCM_MULAW) {
  69. bps = 8;
  70. } else if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) {
  71. bps = 0;
  72. } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV || enc->codec_id == CODEC_ID_ADPCM_MS || enc->codec_id == CODEC_ID_ADPCM_G726 || enc->codec_id == CODEC_ID_ADPCM_YAMAHA) { //
  73. bps = 4;
  74. } else if (enc->codec_id == CODEC_ID_PCM_S24LE) {
  75. bps = 24;
  76. } else if (enc->codec_id == CODEC_ID_PCM_S32LE) {
  77. bps = 32;
  78. } else {
  79. bps = 16;
  80. }
  81. if (enc->codec_id == CODEC_ID_MP2 || enc->codec_id == CODEC_ID_MP3) {
  82. blkalign = enc->frame_size; //this is wrong, but seems many demuxers dont work if this is set correctly
  83. //blkalign = 144 * enc->bit_rate/enc->sample_rate;
  84. } else if (enc->codec_id == CODEC_ID_ADPCM_G726) { //
  85. blkalign = 1;
  86. } else if (enc->block_align != 0) { /* specified by the codec */
  87. blkalign = enc->block_align;
  88. } else
  89. blkalign = enc->channels*bps >> 3;
  90. if (enc->codec_id == CODEC_ID_PCM_U8 ||
  91. enc->codec_id == CODEC_ID_PCM_S24LE ||
  92. enc->codec_id == CODEC_ID_PCM_S32LE ||
  93. enc->codec_id == CODEC_ID_PCM_S16LE) {
  94. bytespersec = enc->sample_rate * blkalign;
  95. } else {
  96. bytespersec = enc->bit_rate / 8;
  97. }
  98. put_le32(pb, bytespersec); /* bytes per second */
  99. put_le16(pb, blkalign); /* block align */
  100. put_le16(pb, bps); /* bits per sample */
  101. if (enc->codec_id == CODEC_ID_MP3) {
  102. put_le16(pb, 12); /* wav_extra_size */
  103. hdrsize += 12;
  104. put_le16(pb, 1); /* wID */
  105. put_le32(pb, 2); /* fdwFlags */
  106. put_le16(pb, 1152); /* nBlockSize */
  107. put_le16(pb, 1); /* nFramesPerBlock */
  108. put_le16(pb, 1393); /* nCodecDelay */
  109. } else if (enc->codec_id == CODEC_ID_MP2) {
  110. put_le16(pb, 22); /* wav_extra_size */
  111. hdrsize += 22;
  112. put_le16(pb, 2); /* fwHeadLayer */
  113. put_le32(pb, enc->bit_rate); /* dwHeadBitrate */
  114. put_le16(pb, enc->channels == 2 ? 1 : 8); /* fwHeadMode */
  115. put_le16(pb, 0); /* fwHeadModeExt */
  116. put_le16(pb, 1); /* wHeadEmphasis */
  117. put_le16(pb, 16); /* fwHeadFlags */
  118. put_le32(pb, 0); /* dwPTSLow */
  119. put_le32(pb, 0); /* dwPTSHigh */
  120. } else if (enc->codec_id == CODEC_ID_ADPCM_IMA_WAV) {
  121. put_le16(pb, 2); /* wav_extra_size */
  122. hdrsize += 2;
  123. put_le16(pb, ((enc->block_align - 4 * enc->channels) / (4 * enc->channels)) * 8 + 1); /* wSamplesPerBlock */
  124. } else if(enc->extradata_size){
  125. put_le16(pb, enc->extradata_size);
  126. put_buffer(pb, enc->extradata, enc->extradata_size);
  127. hdrsize += enc->extradata_size;
  128. if(hdrsize&1){
  129. hdrsize++;
  130. put_byte(pb, 0);
  131. }
  132. } else {
  133. hdrsize -= 2;
  134. }
  135. return hdrsize;
  136. }
  137. #endif //CONFIG_MUXERS
  138. /* We could be given one of the three possible structures here:
  139. * WAVEFORMAT, PCMWAVEFORMAT or WAVEFORMATEX. Each structure
  140. * is an expansion of the previous one with the fields added
  141. * at the bottom. PCMWAVEFORMAT adds 'WORD wBitsPerSample' and
  142. * WAVEFORMATEX adds 'WORD cbSize' and basically makes itself
  143. * an openended structure.
  144. */
  145. void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size)
  146. {
  147. int id;
  148. id = get_le16(pb);
  149. codec->codec_type = CODEC_TYPE_AUDIO;
  150. codec->codec_tag = id;
  151. codec->channels = get_le16(pb);
  152. codec->sample_rate = get_le32(pb);
  153. codec->bit_rate = get_le32(pb) * 8;
  154. codec->block_align = get_le16(pb);
  155. if (size == 14) { /* We're dealing with plain vanilla WAVEFORMAT */
  156. codec->bits_per_sample = 8;
  157. }else
  158. codec->bits_per_sample = get_le16(pb);
  159. codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample);
  160. if (size > 16) { /* We're obviously dealing with WAVEFORMATEX */
  161. codec->extradata_size = get_le16(pb);
  162. if (codec->extradata_size > 0) {
  163. if (codec->extradata_size > size - 18)
  164. codec->extradata_size = size - 18;
  165. codec->extradata = av_mallocz(codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
  166. get_buffer(pb, codec->extradata, codec->extradata_size);
  167. } else
  168. codec->extradata_size = 0;
  169. /* It is possible for the chunk to contain garbage at the end */
  170. if (size - codec->extradata_size - 18 > 0)
  171. url_fskip(pb, size - codec->extradata_size - 18);
  172. }
  173. }
  174. int wav_codec_get_id(unsigned int tag, int bps)
  175. {
  176. int id;
  177. id = codec_get_id(codec_wav_tags, tag);
  178. if (id <= 0)
  179. return id;
  180. /* handle specific u8 codec */
  181. if (id == CODEC_ID_PCM_S16LE && bps == 8)
  182. id = CODEC_ID_PCM_U8;
  183. if (id == CODEC_ID_PCM_S16LE && bps == 24)
  184. id = CODEC_ID_PCM_S24LE;
  185. if (id == CODEC_ID_PCM_S16LE && bps == 32)
  186. id = CODEC_ID_PCM_S32LE;
  187. return id;
  188. }
  189. #ifdef CONFIG_MUXERS
  190. typedef struct {
  191. offset_t data;
  192. } WAVContext;
  193. static int wav_write_header(AVFormatContext *s)
  194. {
  195. WAVContext *wav = s->priv_data;
  196. ByteIOContext *pb = &s->pb;
  197. offset_t fmt;
  198. put_tag(pb, "RIFF");
  199. put_le32(pb, 0); /* file length */
  200. put_tag(pb, "WAVE");
  201. /* format header */
  202. fmt = start_tag(pb, "fmt ");
  203. if (put_wav_header(pb, s->streams[0]->codec) < 0) {
  204. av_free(wav);
  205. return -1;
  206. }
  207. end_tag(pb, fmt);
  208. av_set_pts_info(s->streams[0], 64, 1, s->streams[0]->codec->sample_rate);
  209. /* data header */
  210. wav->data = start_tag(pb, "data");
  211. put_flush_packet(pb);
  212. return 0;
  213. }
  214. static int wav_write_packet(AVFormatContext *s, AVPacket *pkt)
  215. {
  216. ByteIOContext *pb = &s->pb;
  217. put_buffer(pb, pkt->data, pkt->size);
  218. return 0;
  219. }
  220. static int wav_write_trailer(AVFormatContext *s)
  221. {
  222. ByteIOContext *pb = &s->pb;
  223. WAVContext *wav = s->priv_data;
  224. offset_t file_size;
  225. if (!url_is_streamed(&s->pb)) {
  226. end_tag(pb, wav->data);
  227. /* update file size */
  228. file_size = url_ftell(pb);
  229. url_fseek(pb, 4, SEEK_SET);
  230. put_le32(pb, (uint32_t)(file_size - 8));
  231. url_fseek(pb, file_size, SEEK_SET);
  232. put_flush_packet(pb);
  233. }
  234. return 0;
  235. }
  236. #endif //CONFIG_MUXERS
  237. /* return the size of the found tag */
  238. /* XXX: > 2GB ? */
  239. static int find_tag(ByteIOContext *pb, uint32_t tag1)
  240. {
  241. unsigned int tag;
  242. int size;
  243. for(;;) {
  244. if (url_feof(pb))
  245. return -1;
  246. tag = get_le32(pb);
  247. size = get_le32(pb);
  248. if (tag == tag1)
  249. break;
  250. url_fseek(pb, size, SEEK_CUR);
  251. }
  252. if (size < 0)
  253. size = 0x7fffffff;
  254. return size;
  255. }
  256. static int wav_probe(AVProbeData *p)
  257. {
  258. /* check file header */
  259. if (p->buf_size <= 32)
  260. return 0;
  261. if (p->buf[0] == 'R' && p->buf[1] == 'I' &&
  262. p->buf[2] == 'F' && p->buf[3] == 'F' &&
  263. p->buf[8] == 'W' && p->buf[9] == 'A' &&
  264. p->buf[10] == 'V' && p->buf[11] == 'E')
  265. return AVPROBE_SCORE_MAX;
  266. else
  267. return 0;
  268. }
  269. /* wav input */
  270. static int wav_read_header(AVFormatContext *s,
  271. AVFormatParameters *ap)
  272. {
  273. int size;
  274. unsigned int tag;
  275. ByteIOContext *pb = &s->pb;
  276. AVStream *st;
  277. /* check RIFF header */
  278. tag = get_le32(pb);
  279. if (tag != MKTAG('R', 'I', 'F', 'F'))
  280. return -1;
  281. get_le32(pb); /* file size */
  282. tag = get_le32(pb);
  283. if (tag != MKTAG('W', 'A', 'V', 'E'))
  284. return -1;
  285. /* parse fmt header */
  286. size = find_tag(pb, MKTAG('f', 'm', 't', ' '));
  287. if (size < 0)
  288. return -1;
  289. st = av_new_stream(s, 0);
  290. if (!st)
  291. return AVERROR_NOMEM;
  292. get_wav_header(pb, st->codec, size);
  293. st->need_parsing = 1;
  294. av_set_pts_info(st, 64, 1, st->codec->sample_rate);
  295. size = find_tag(pb, MKTAG('d', 'a', 't', 'a'));
  296. if (size < 0)
  297. return -1;
  298. return 0;
  299. }
  300. #define MAX_SIZE 4096
  301. static int wav_read_packet(AVFormatContext *s,
  302. AVPacket *pkt)
  303. {
  304. int ret, size;
  305. AVStream *st;
  306. if (url_feof(&s->pb))
  307. return AVERROR_IO;
  308. st = s->streams[0];
  309. size = MAX_SIZE;
  310. if (st->codec->block_align > 1) {
  311. if (size < st->codec->block_align)
  312. size = st->codec->block_align;
  313. size = (size / st->codec->block_align) * st->codec->block_align;
  314. }
  315. if (av_new_packet(pkt, size))
  316. return AVERROR_IO;
  317. pkt->stream_index = 0;
  318. ret = get_buffer(&s->pb, pkt->data, pkt->size);
  319. if (ret < 0)
  320. av_free_packet(pkt);
  321. /* note: we need to modify the packet size here to handle the last
  322. packet */
  323. pkt->size = ret;
  324. return ret;
  325. }
  326. static int wav_read_close(AVFormatContext *s)
  327. {
  328. return 0;
  329. }
  330. static int wav_read_seek(AVFormatContext *s,
  331. int stream_index, int64_t timestamp, int flags)
  332. {
  333. AVStream *st;
  334. st = s->streams[0];
  335. switch(st->codec->codec_id) {
  336. case CODEC_ID_MP2:
  337. case CODEC_ID_MP3:
  338. case CODEC_ID_AC3:
  339. case CODEC_ID_DTS:
  340. /* use generic seeking with dynamically generated indexes */
  341. return -1;
  342. default:
  343. break;
  344. }
  345. return pcm_read_seek(s, stream_index, timestamp, flags);
  346. }
  347. static AVInputFormat wav_iformat = {
  348. "wav",
  349. "wav format",
  350. 0,
  351. wav_probe,
  352. wav_read_header,
  353. wav_read_packet,
  354. wav_read_close,
  355. wav_read_seek,
  356. };
  357. #ifdef CONFIG_MUXERS
  358. static AVOutputFormat wav_oformat = {
  359. "wav",
  360. "wav format",
  361. "audio/x-wav",
  362. "wav",
  363. sizeof(WAVContext),
  364. CODEC_ID_PCM_S16LE,
  365. CODEC_ID_NONE,
  366. wav_write_header,
  367. wav_write_packet,
  368. wav_write_trailer,
  369. };
  370. #endif //CONFIG_MUXERS
  371. int ff_wav_init(void)
  372. {
  373. av_register_input_format(&wav_iformat);
  374. #ifdef CONFIG_MUXERS
  375. av_register_output_format(&wav_oformat);
  376. #endif //CONFIG_MUXERS
  377. return 0;
  378. }