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.

399 lines
11KB

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