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.

397 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 {
  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. }
  114. return hdrsize;
  115. }
  116. #endif //CONFIG_ENCODERS
  117. /* We could be given one of the three possible structures here:
  118. * WAVEFORMAT, PCMWAVEFORMAT or WAVEFORMATEX. Each structure
  119. * is an expansion of the previous one with the fields added
  120. * at the bottom. PCMWAVEFORMAT adds 'WORD wBitsPerSample' and
  121. * WAVEFORMATEX adds 'WORD cbSize' and basically makes itself
  122. * an openended structure.
  123. */
  124. void get_wav_header(ByteIOContext *pb, AVCodecContext *codec, int size)
  125. {
  126. int id;
  127. id = get_le16(pb);
  128. codec->codec_type = CODEC_TYPE_AUDIO;
  129. codec->codec_tag = id;
  130. codec->channels = get_le16(pb);
  131. codec->sample_rate = get_le32(pb);
  132. codec->bit_rate = get_le32(pb) * 8;
  133. codec->block_align = get_le16(pb);
  134. if (size == 14) { /* We're dealing with plain vanilla WAVEFORMAT */
  135. codec->bits_per_sample = 8;
  136. }else
  137. codec->bits_per_sample = get_le16(pb);
  138. codec->codec_id = wav_codec_get_id(id, codec->bits_per_sample);
  139. if (size > 16) { /* We're obviously dealing with WAVEFORMATEX */
  140. codec->extradata_size = get_le16(pb);
  141. if (codec->extradata_size > 0) {
  142. if (codec->extradata_size > size - 18)
  143. codec->extradata_size = size - 18;
  144. codec->extradata = av_mallocz(codec->extradata_size);
  145. get_buffer(pb, codec->extradata, codec->extradata_size);
  146. } else
  147. codec->extradata_size = 0;
  148. /* It is possible for the chunk to contain garbage at the end */
  149. if (size - codec->extradata_size - 18 > 0)
  150. url_fskip(pb, size - codec->extradata_size - 18);
  151. }
  152. }
  153. int wav_codec_get_id(unsigned int tag, int bps)
  154. {
  155. int id;
  156. id = codec_get_id(codec_wav_tags, tag);
  157. if (id <= 0)
  158. return id;
  159. /* handle specific u8 codec */
  160. if (id == CODEC_ID_PCM_S16LE && bps == 8)
  161. id = CODEC_ID_PCM_U8;
  162. return id;
  163. }
  164. #ifdef CONFIG_ENCODERS
  165. typedef struct {
  166. offset_t data;
  167. } WAVContext;
  168. static int wav_write_header(AVFormatContext *s)
  169. {
  170. WAVContext *wav = s->priv_data;
  171. ByteIOContext *pb = &s->pb;
  172. offset_t fmt;
  173. put_tag(pb, "RIFF");
  174. put_le32(pb, 0); /* file length */
  175. put_tag(pb, "WAVE");
  176. /* format header */
  177. fmt = start_tag(pb, "fmt ");
  178. if (put_wav_header(pb, &s->streams[0]->codec) < 0) {
  179. av_free(wav);
  180. return -1;
  181. }
  182. end_tag(pb, fmt);
  183. /* data header */
  184. wav->data = start_tag(pb, "data");
  185. put_flush_packet(pb);
  186. return 0;
  187. }
  188. static int wav_write_packet(AVFormatContext *s, AVPacket *pkt)
  189. {
  190. ByteIOContext *pb = &s->pb;
  191. put_buffer(pb, pkt->data, pkt->size);
  192. return 0;
  193. }
  194. static int wav_write_trailer(AVFormatContext *s)
  195. {
  196. ByteIOContext *pb = &s->pb;
  197. WAVContext *wav = s->priv_data;
  198. offset_t file_size;
  199. if (!url_is_streamed(&s->pb)) {
  200. end_tag(pb, wav->data);
  201. /* update file size */
  202. file_size = url_ftell(pb);
  203. url_fseek(pb, 4, SEEK_SET);
  204. put_le32(pb, (uint32_t)(file_size - 8));
  205. url_fseek(pb, file_size, SEEK_SET);
  206. put_flush_packet(pb);
  207. }
  208. return 0;
  209. }
  210. #endif //CONFIG_ENCODERS
  211. /* return the size of the found tag */
  212. /* XXX: > 2GB ? */
  213. static int find_tag(ByteIOContext *pb, uint32_t tag1)
  214. {
  215. unsigned int tag;
  216. int size;
  217. for(;;) {
  218. if (url_feof(pb))
  219. return -1;
  220. tag = get_le32(pb);
  221. size = get_le32(pb);
  222. if (tag == tag1)
  223. break;
  224. url_fseek(pb, size, SEEK_CUR);
  225. }
  226. if (size < 0)
  227. size = 0x7fffffff;
  228. return size;
  229. }
  230. static int wav_probe(AVProbeData *p)
  231. {
  232. /* check file header */
  233. if (p->buf_size <= 32)
  234. return 0;
  235. if (p->buf[0] == 'R' && p->buf[1] == 'I' &&
  236. p->buf[2] == 'F' && p->buf[3] == 'F' &&
  237. p->buf[8] == 'W' && p->buf[9] == 'A' &&
  238. p->buf[10] == 'V' && p->buf[11] == 'E')
  239. return AVPROBE_SCORE_MAX;
  240. else
  241. return 0;
  242. }
  243. /* wav input */
  244. static int wav_read_header(AVFormatContext *s,
  245. AVFormatParameters *ap)
  246. {
  247. int size;
  248. unsigned int tag;
  249. ByteIOContext *pb = &s->pb;
  250. AVStream *st;
  251. /* check RIFF header */
  252. tag = get_le32(pb);
  253. if (tag != MKTAG('R', 'I', 'F', 'F'))
  254. return -1;
  255. get_le32(pb); /* file size */
  256. tag = get_le32(pb);
  257. if (tag != MKTAG('W', 'A', 'V', 'E'))
  258. return -1;
  259. /* parse fmt header */
  260. size = find_tag(pb, MKTAG('f', 'm', 't', ' '));
  261. if (size < 0)
  262. return -1;
  263. st = av_new_stream(s, 0);
  264. if (!st)
  265. return AVERROR_NOMEM;
  266. get_wav_header(pb, &st->codec, size);
  267. st->need_parsing = 1;
  268. size = find_tag(pb, MKTAG('d', 'a', 't', 'a'));
  269. if (size < 0)
  270. return -1;
  271. return 0;
  272. }
  273. #define MAX_SIZE 4096
  274. static int wav_read_packet(AVFormatContext *s,
  275. AVPacket *pkt)
  276. {
  277. int ret, size;
  278. AVStream *st;
  279. if (url_feof(&s->pb))
  280. return AVERROR_IO;
  281. st = s->streams[0];
  282. size = MAX_SIZE;
  283. if (st->codec.block_align > 1) {
  284. if (size < st->codec.block_align)
  285. size = st->codec.block_align;
  286. size = (size / st->codec.block_align) * st->codec.block_align;
  287. }
  288. if (av_new_packet(pkt, size))
  289. return AVERROR_IO;
  290. pkt->stream_index = 0;
  291. ret = get_buffer(&s->pb, pkt->data, pkt->size);
  292. if (ret < 0)
  293. av_free_packet(pkt);
  294. /* note: we need to modify the packet size here to handle the last
  295. packet */
  296. pkt->size = ret;
  297. return ret;
  298. }
  299. static int wav_read_close(AVFormatContext *s)
  300. {
  301. return 0;
  302. }
  303. static int wav_read_seek(AVFormatContext *s,
  304. int stream_index, int64_t timestamp)
  305. {
  306. AVStream *st;
  307. st = s->streams[0];
  308. switch(st->codec.codec_id) {
  309. case CODEC_ID_MP2:
  310. case CODEC_ID_MP3:
  311. case CODEC_ID_AC3:
  312. case CODEC_ID_DTS:
  313. /* use generic seeking with dynamically generated indexes */
  314. return -1;
  315. default:
  316. break;
  317. }
  318. return pcm_read_seek(s, stream_index, timestamp);
  319. }
  320. static AVInputFormat wav_iformat = {
  321. "wav",
  322. "wav format",
  323. 0,
  324. wav_probe,
  325. wav_read_header,
  326. wav_read_packet,
  327. wav_read_close,
  328. wav_read_seek,
  329. };
  330. #ifdef CONFIG_ENCODERS
  331. static AVOutputFormat wav_oformat = {
  332. "wav",
  333. "wav format",
  334. "audio/x-wav",
  335. "wav",
  336. sizeof(WAVContext),
  337. CODEC_ID_PCM_S16LE,
  338. CODEC_ID_NONE,
  339. wav_write_header,
  340. wav_write_packet,
  341. wav_write_trailer,
  342. };
  343. #endif //CONFIG_ENCODERS
  344. int ff_wav_init(void)
  345. {
  346. av_register_input_format(&wav_iformat);
  347. #ifdef CONFIG_ENCODERS
  348. av_register_output_format(&wav_oformat);
  349. #endif //CONFIG_ENCODERS
  350. return 0;
  351. }