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.

235 lines
7.7KB

  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, AVCodecContext *c)
  53. {
  54. ff_asf_guid subformat;
  55. c->bits_per_coded_sample = avio_rl16(pb);
  56. c->channel_layout = avio_rl32(pb); /* dwChannelMask */
  57. ff_get_guid(pb, &subformat);
  58. if (!memcmp(subformat + 4,
  59. (const uint8_t[]){ FF_MEDIASUBTYPE_BASE_GUID }, 12)) {
  60. c->codec_tag = AV_RL32(subformat);
  61. c->codec_id = ff_wav_codec_get_id(c->codec_tag,
  62. c->bits_per_coded_sample);
  63. } else {
  64. c->codec_id = ff_codec_guid_get_id(ff_codec_wav_guids, subformat);
  65. if (!c->codec_id)
  66. av_log(c, AV_LOG_WARNING,
  67. "unknown subformat:"FF_PRI_GUID"\n",
  68. FF_ARG_GUID(subformat));
  69. }
  70. }
  71. int ff_get_wav_header(AVIOContext *pb, AVCodecContext *codec, int size)
  72. {
  73. int id;
  74. id = avio_rl16(pb);
  75. codec->codec_type = AVMEDIA_TYPE_AUDIO;
  76. codec->channels = avio_rl16(pb);
  77. codec->sample_rate = avio_rl32(pb);
  78. codec->bit_rate = avio_rl32(pb) * 8;
  79. codec->block_align = avio_rl16(pb);
  80. if (size == 14) { /* We're dealing with plain vanilla WAVEFORMAT */
  81. codec->bits_per_coded_sample = 8;
  82. } else
  83. codec->bits_per_coded_sample = avio_rl16(pb);
  84. if (id == 0xFFFE) {
  85. codec->codec_tag = 0;
  86. } else {
  87. codec->codec_tag = id;
  88. codec->codec_id = ff_wav_codec_get_id(id,
  89. codec->bits_per_coded_sample);
  90. }
  91. if (size >= 18) { /* We're obviously dealing with WAVEFORMATEX */
  92. int cbSize = avio_rl16(pb); /* cbSize */
  93. size -= 18;
  94. cbSize = FFMIN(size, cbSize);
  95. if (cbSize >= 22 && id == 0xfffe) { /* WAVEFORMATEXTENSIBLE */
  96. parse_waveformatex(pb, codec);
  97. cbSize -= 22;
  98. size -= 22;
  99. }
  100. codec->extradata_size = cbSize;
  101. if (cbSize > 0) {
  102. av_free(codec->extradata);
  103. codec->extradata = av_mallocz(codec->extradata_size +
  104. FF_INPUT_BUFFER_PADDING_SIZE);
  105. if (!codec->extradata)
  106. return AVERROR(ENOMEM);
  107. avio_read(pb, codec->extradata, codec->extradata_size);
  108. size -= cbSize;
  109. }
  110. /* It is possible for the chunk to contain garbage at the end */
  111. if (size > 0)
  112. avio_skip(pb, size);
  113. }
  114. if (codec->sample_rate <= 0) {
  115. av_log(NULL, AV_LOG_ERROR,
  116. "Invalid sample rate: %d\n", codec->sample_rate);
  117. return AVERROR_INVALIDDATA;
  118. }
  119. if (codec->codec_id == AV_CODEC_ID_AAC_LATM) {
  120. /* Channels and sample_rate values are those prior to applying SBR
  121. * and/or PS. */
  122. codec->channels = 0;
  123. codec->sample_rate = 0;
  124. }
  125. /* override bits_per_coded_sample for G.726 */
  126. if (codec->codec_id == AV_CODEC_ID_ADPCM_G726)
  127. codec->bits_per_coded_sample = codec->bit_rate / codec->sample_rate;
  128. return 0;
  129. }
  130. enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps)
  131. {
  132. enum AVCodecID id;
  133. id = ff_codec_get_id(ff_codec_wav_tags, tag);
  134. if (id <= 0)
  135. return id;
  136. if (id == AV_CODEC_ID_PCM_S16LE)
  137. id = ff_get_pcm_codec_id(bps, 0, 0, ~1);
  138. else if (id == AV_CODEC_ID_PCM_F32LE)
  139. id = ff_get_pcm_codec_id(bps, 1, 0, 0);
  140. if (id == AV_CODEC_ID_ADPCM_IMA_WAV && bps == 8)
  141. id = AV_CODEC_ID_PCM_ZORK;
  142. return id;
  143. }
  144. int ff_get_bmp_header(AVIOContext *pb, AVStream *st)
  145. {
  146. int tag1;
  147. avio_rl32(pb); /* size */
  148. st->codec->width = avio_rl32(pb);
  149. st->codec->height = (int32_t)avio_rl32(pb);
  150. avio_rl16(pb); /* planes */
  151. st->codec->bits_per_coded_sample = avio_rl16(pb); /* depth */
  152. tag1 = avio_rl32(pb);
  153. avio_rl32(pb); /* ImageSize */
  154. avio_rl32(pb); /* XPelsPerMeter */
  155. avio_rl32(pb); /* YPelsPerMeter */
  156. avio_rl32(pb); /* ClrUsed */
  157. avio_rl32(pb); /* ClrImportant */
  158. return tag1;
  159. }
  160. int ff_read_riff_info(AVFormatContext *s, int64_t size)
  161. {
  162. int64_t start, end, cur;
  163. AVIOContext *pb = s->pb;
  164. start = avio_tell(pb);
  165. end = start + size;
  166. while ((cur = avio_tell(pb)) >= 0 &&
  167. cur <= end - 8 /* = tag + size */) {
  168. uint32_t chunk_code;
  169. int64_t chunk_size;
  170. char key[5] = { 0 };
  171. char *value;
  172. chunk_code = avio_rl32(pb);
  173. chunk_size = avio_rl32(pb);
  174. if (chunk_size > end ||
  175. end - chunk_size < cur ||
  176. chunk_size == UINT_MAX) {
  177. av_log(s, AV_LOG_WARNING, "too big INFO subchunk\n");
  178. break;
  179. }
  180. chunk_size += (chunk_size & 1);
  181. if (!chunk_code) {
  182. if (chunk_size)
  183. avio_skip(pb, chunk_size);
  184. else if (pb->eof_reached) {
  185. av_log(s, AV_LOG_WARNING, "truncated file\n");
  186. return AVERROR_EOF;
  187. }
  188. continue;
  189. }
  190. value = av_malloc(chunk_size + 1);
  191. if (!value) {
  192. av_log(s, AV_LOG_ERROR,
  193. "out of memory, unable to read INFO tag\n");
  194. return AVERROR(ENOMEM);
  195. }
  196. AV_WL32(key, chunk_code);
  197. if (avio_read(pb, value, chunk_size) != chunk_size) {
  198. av_free(value);
  199. av_log(s, AV_LOG_WARNING,
  200. "premature end of file while reading INFO tag\n");
  201. break;
  202. }
  203. value[chunk_size] = 0;
  204. av_dict_set(&s->metadata, key, value, AV_DICT_DONT_STRDUP_VAL);
  205. }
  206. return 0;
  207. }