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.

262 lines
8.4KB

  1. /*
  2. * RIFF demuxing functions and data
  3. * Copyright (c) 2000 Fabrice Bellard
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/dict.h"
  22. #include "libavutil/error.h"
  23. #include "libavutil/log.h"
  24. #include "libavutil/mathematics.h"
  25. #include "libavcodec/avcodec.h"
  26. #include "libavcodec/bytestream.h"
  27. #include "avformat.h"
  28. #include "avio_internal.h"
  29. #include "riff.h"
  30. const AVCodecGuid ff_codec_wav_guids[] = {
  31. { AV_CODEC_ID_AC3, { 0x2C, 0x80, 0x6D, 0xE0, 0x46, 0xDB, 0xCF, 0x11, 0xB4, 0xD1, 0x00, 0x80, 0x5F, 0x6C, 0xBB, 0xEA } },
  32. { AV_CODEC_ID_ATRAC3P, { 0xBF, 0xAA, 0x23, 0xE9, 0x58, 0xCB, 0x71, 0x44, 0xA1, 0x19, 0xFF, 0xFA, 0x01, 0xE4, 0xCE, 0x62 } },
  33. { AV_CODEC_ID_EAC3, { 0xAF, 0x87, 0xFB, 0xA7, 0x02, 0x2D, 0xFB, 0x42, 0xA4, 0xD4, 0x05, 0xCD, 0x93, 0x84, 0x3B, 0xDD } },
  34. { AV_CODEC_ID_MP2, { 0x2B, 0x80, 0x6D, 0xE0, 0x46, 0xDB, 0xCF, 0x11, 0xB4, 0xD1, 0x00, 0x80, 0x5F, 0x6C, 0xBB, 0xEA } },
  35. { AV_CODEC_ID_NONE }
  36. };
  37. enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid)
  38. {
  39. int i;
  40. for (i = 0; guids[i].id != AV_CODEC_ID_NONE; i++)
  41. if (!ff_guidcmp(guids[i].guid, guid))
  42. return guids[i].id;
  43. return AV_CODEC_ID_NONE;
  44. }
  45. /* We could be given one of the three possible structures here:
  46. * WAVEFORMAT, PCMWAVEFORMAT or WAVEFORMATEX. Each structure
  47. * is an expansion of the previous one with the fields added
  48. * at the bottom. PCMWAVEFORMAT adds 'WORD wBitsPerSample' and
  49. * WAVEFORMATEX adds 'WORD cbSize' and basically makes itself
  50. * an openended structure.
  51. */
  52. static void parse_waveformatex(AVIOContext *pb, AVCodecParameters *par)
  53. {
  54. ff_asf_guid subformat;
  55. int bps;
  56. bps = avio_rl16(pb);
  57. if (bps)
  58. par->bits_per_coded_sample = bps;
  59. par->channel_layout = avio_rl32(pb); /* dwChannelMask */
  60. ff_get_guid(pb, &subformat);
  61. if (!memcmp(subformat + 4,
  62. (const uint8_t[]){ FF_MEDIASUBTYPE_BASE_GUID }, 12)) {
  63. par->codec_tag = AV_RL32(subformat);
  64. par->codec_id = ff_wav_codec_get_id(par->codec_tag,
  65. par->bits_per_coded_sample);
  66. } else {
  67. par->codec_id = ff_codec_guid_get_id(ff_codec_wav_guids, subformat);
  68. if (!par->codec_id)
  69. av_log(pb, AV_LOG_WARNING,
  70. "unknown subformat:"FF_PRI_GUID"\n",
  71. FF_ARG_GUID(subformat));
  72. }
  73. }
  74. int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb,
  75. AVCodecParameters *par, int size)
  76. {
  77. int id;
  78. uint64_t bitrate;
  79. if (size < 14)
  80. return AVERROR_INVALIDDATA;
  81. id = avio_rl16(pb);
  82. par->codec_type = AVMEDIA_TYPE_AUDIO;
  83. par->channels = avio_rl16(pb);
  84. par->sample_rate = avio_rl32(pb);
  85. bitrate = avio_rl32(pb) * 8;
  86. par->block_align = avio_rl16(pb);
  87. if (size == 14) { /* We're dealing with plain vanilla WAVEFORMAT */
  88. par->bits_per_coded_sample = 8;
  89. } else
  90. par->bits_per_coded_sample = avio_rl16(pb);
  91. if (id == 0xFFFE) {
  92. par->codec_tag = 0;
  93. } else {
  94. par->codec_tag = id;
  95. par->codec_id = ff_wav_codec_get_id(id, par->bits_per_coded_sample);
  96. }
  97. if (size >= 18) { /* We're obviously dealing with WAVEFORMATEX */
  98. int cbSize = avio_rl16(pb); /* cbSize */
  99. size -= 18;
  100. cbSize = FFMIN(size, cbSize);
  101. if (cbSize >= 22 && id == 0xfffe) { /* WAVEFORMATEXTENSIBLE */
  102. parse_waveformatex(pb, par);
  103. cbSize -= 22;
  104. size -= 22;
  105. }
  106. par->extradata_size = cbSize;
  107. if (cbSize > 0) {
  108. av_free(par->extradata);
  109. par->extradata = av_mallocz(par->extradata_size +
  110. AV_INPUT_BUFFER_PADDING_SIZE);
  111. if (!par->extradata)
  112. return AVERROR(ENOMEM);
  113. avio_read(pb, par->extradata, par->extradata_size);
  114. size -= cbSize;
  115. }
  116. /* It is possible for the chunk to contain garbage at the end */
  117. if (size > 0)
  118. avio_skip(pb, size);
  119. }
  120. if (bitrate > INT_MAX) {
  121. if (s->error_recognition & AV_EF_EXPLODE) {
  122. av_log(s, AV_LOG_ERROR,
  123. "The bitrate %"PRIu64" is too large.\n",
  124. bitrate);
  125. return AVERROR_INVALIDDATA;
  126. } else {
  127. av_log(s, AV_LOG_WARNING,
  128. "The bitrate %"PRIu64" is too large, resetting to 0.",
  129. bitrate);
  130. par->bit_rate = 0;
  131. }
  132. } else {
  133. par->bit_rate = bitrate;
  134. }
  135. if (par->sample_rate <= 0) {
  136. av_log(s, AV_LOG_ERROR,
  137. "Invalid sample rate: %d\n", par->sample_rate);
  138. return AVERROR_INVALIDDATA;
  139. }
  140. if (par->codec_id == AV_CODEC_ID_AAC_LATM) {
  141. /* Channels and sample_rate values are those prior to applying SBR
  142. * and/or PS. */
  143. par->channels = 0;
  144. par->sample_rate = 0;
  145. }
  146. /* override bits_per_coded_sample for G.726 */
  147. if (par->codec_id == AV_CODEC_ID_ADPCM_G726)
  148. par->bits_per_coded_sample = par->bit_rate / par->sample_rate;
  149. return 0;
  150. }
  151. enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps)
  152. {
  153. enum AVCodecID id;
  154. id = ff_codec_get_id(ff_codec_wav_tags, tag);
  155. if (id <= 0)
  156. return id;
  157. if (id == AV_CODEC_ID_PCM_S16LE)
  158. id = ff_get_pcm_codec_id(bps, 0, 0, ~1);
  159. else if (id == AV_CODEC_ID_PCM_F32LE)
  160. id = ff_get_pcm_codec_id(bps, 1, 0, 0);
  161. if (id == AV_CODEC_ID_ADPCM_IMA_WAV && bps == 8)
  162. id = AV_CODEC_ID_PCM_ZORK;
  163. return id;
  164. }
  165. int ff_get_bmp_header(AVIOContext *pb, AVStream *st, uint32_t *size)
  166. {
  167. int tag1;
  168. uint32_t size_ = avio_rl32(pb);
  169. if (size)
  170. *size = size_;
  171. st->codecpar->width = avio_rl32(pb);
  172. st->codecpar->height = (int32_t)avio_rl32(pb);
  173. avio_rl16(pb); /* planes */
  174. st->codecpar->bits_per_coded_sample = avio_rl16(pb); /* depth */
  175. tag1 = avio_rl32(pb);
  176. avio_rl32(pb); /* ImageSize */
  177. avio_rl32(pb); /* XPelsPerMeter */
  178. avio_rl32(pb); /* YPelsPerMeter */
  179. avio_rl32(pb); /* ClrUsed */
  180. avio_rl32(pb); /* ClrImportant */
  181. return tag1;
  182. }
  183. int ff_read_riff_info(AVFormatContext *s, int64_t size)
  184. {
  185. int64_t start, end, cur;
  186. AVIOContext *pb = s->pb;
  187. start = avio_tell(pb);
  188. end = start + size;
  189. while ((cur = avio_tell(pb)) >= 0 &&
  190. cur <= end - 8 /* = tag + size */) {
  191. uint32_t chunk_code;
  192. int64_t chunk_size;
  193. char key[5] = { 0 };
  194. char *value;
  195. chunk_code = avio_rl32(pb);
  196. chunk_size = avio_rl32(pb);
  197. if (chunk_size > end ||
  198. end - chunk_size < cur ||
  199. chunk_size == UINT_MAX) {
  200. av_log(s, AV_LOG_WARNING, "too big INFO subchunk\n");
  201. break;
  202. }
  203. chunk_size += (chunk_size & 1);
  204. if (!chunk_code) {
  205. if (chunk_size)
  206. avio_skip(pb, chunk_size);
  207. else if (pb->eof_reached) {
  208. av_log(s, AV_LOG_WARNING, "truncated file\n");
  209. return AVERROR_EOF;
  210. }
  211. continue;
  212. }
  213. value = av_malloc(chunk_size + 1);
  214. if (!value) {
  215. av_log(s, AV_LOG_ERROR,
  216. "out of memory, unable to read INFO tag\n");
  217. return AVERROR(ENOMEM);
  218. }
  219. AV_WL32(key, chunk_code);
  220. if (avio_read(pb, value, chunk_size) != chunk_size) {
  221. av_free(value);
  222. av_log(s, AV_LOG_WARNING,
  223. "premature end of file while reading INFO tag\n");
  224. break;
  225. }
  226. value[chunk_size] = 0;
  227. av_dict_set(&s->metadata, key, value, AV_DICT_DONT_STRDUP_VAL);
  228. }
  229. return 0;
  230. }