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.

241 lines
7.6KB

  1. /*
  2. * RIFF demuxing functions and data
  3. * Copyright (c) 2000 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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. void ff_get_guid(AVIOContext *s, ff_asf_guid *g)
  31. {
  32. av_assert0(sizeof(*g) == 16); //compiler will optimize this out
  33. if (avio_read(s, *g, sizeof(*g)) < (int)sizeof(*g))
  34. memset(*g, 0, sizeof(*g));
  35. }
  36. enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid)
  37. {
  38. int i;
  39. for (i = 0; guids[i].id != AV_CODEC_ID_NONE; i++)
  40. if (!ff_guidcmp(guids[i].guid, guid))
  41. return guids[i].id;
  42. return AV_CODEC_ID_NONE;
  43. }
  44. /* We could be given one of the three possible structures here:
  45. * WAVEFORMAT, PCMWAVEFORMAT or WAVEFORMATEX. Each structure
  46. * is an expansion of the previous one with the fields added
  47. * at the bottom. PCMWAVEFORMAT adds 'WORD wBitsPerSample' and
  48. * WAVEFORMATEX adds 'WORD cbSize' and basically makes itself
  49. * an openended structure.
  50. */
  51. static void parse_waveformatex(AVIOContext *pb, AVCodecContext *c)
  52. {
  53. ff_asf_guid subformat;
  54. int bps = avio_rl16(pb);
  55. if (bps)
  56. c->bits_per_coded_sample = bps;
  57. c->channel_layout = avio_rl32(pb); /* dwChannelMask */
  58. ff_get_guid(pb, &subformat);
  59. if (!memcmp(subformat + 4,
  60. (const uint8_t[]){ FF_MEDIASUBTYPE_BASE_GUID }, 12)) {
  61. c->codec_tag = AV_RL32(subformat);
  62. c->codec_id = ff_wav_codec_get_id(c->codec_tag,
  63. c->bits_per_coded_sample);
  64. } else {
  65. c->codec_id = ff_codec_guid_get_id(ff_codec_wav_guids, subformat);
  66. if (!c->codec_id)
  67. av_log(c, AV_LOG_WARNING,
  68. "unknown subformat:"FF_PRI_GUID"\n",
  69. FF_ARG_GUID(subformat));
  70. }
  71. }
  72. int ff_get_wav_header(AVIOContext *pb, AVCodecContext *codec, int size)
  73. {
  74. int id;
  75. id = avio_rl16(pb);
  76. codec->codec_type = AVMEDIA_TYPE_AUDIO;
  77. codec->channels = avio_rl16(pb);
  78. codec->sample_rate = avio_rl32(pb);
  79. codec->bit_rate = avio_rl32(pb) * 8;
  80. codec->block_align = avio_rl16(pb);
  81. if (size == 14) { /* We're dealing with plain vanilla WAVEFORMAT */
  82. codec->bits_per_coded_sample = 8;
  83. } else
  84. codec->bits_per_coded_sample = avio_rl16(pb);
  85. if (id == 0xFFFE) {
  86. codec->codec_tag = 0;
  87. } else {
  88. codec->codec_tag = id;
  89. codec->codec_id = ff_wav_codec_get_id(id,
  90. codec->bits_per_coded_sample);
  91. }
  92. if (size >= 18) { /* We're obviously dealing with WAVEFORMATEX */
  93. int cbSize = avio_rl16(pb); /* cbSize */
  94. size -= 18;
  95. cbSize = FFMIN(size, cbSize);
  96. if (cbSize >= 22 && id == 0xfffe) { /* WAVEFORMATEXTENSIBLE */
  97. parse_waveformatex(pb, codec);
  98. cbSize -= 22;
  99. size -= 22;
  100. }
  101. if (cbSize > 0) {
  102. av_free(codec->extradata);
  103. if (ff_get_extradata(codec, pb, cbSize) < 0)
  104. return AVERROR(ENOMEM);
  105. size -= cbSize;
  106. }
  107. /* It is possible for the chunk to contain garbage at the end */
  108. if (size > 0)
  109. avio_skip(pb, size);
  110. }
  111. if (codec->sample_rate <= 0) {
  112. av_log(NULL, AV_LOG_ERROR,
  113. "Invalid sample rate: %d\n", codec->sample_rate);
  114. return AVERROR_INVALIDDATA;
  115. }
  116. if (codec->codec_id == AV_CODEC_ID_AAC_LATM) {
  117. /* Channels and sample_rate values are those prior to applying SBR
  118. * and/or PS. */
  119. codec->channels = 0;
  120. codec->sample_rate = 0;
  121. }
  122. /* override bits_per_coded_sample for G.726 */
  123. if (codec->codec_id == AV_CODEC_ID_ADPCM_G726 && codec->sample_rate)
  124. codec->bits_per_coded_sample = codec->bit_rate / codec->sample_rate;
  125. return 0;
  126. }
  127. enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps)
  128. {
  129. enum AVCodecID id;
  130. id = ff_codec_get_id(ff_codec_wav_tags, tag);
  131. if (id <= 0)
  132. return id;
  133. if (id == AV_CODEC_ID_PCM_S16LE)
  134. id = ff_get_pcm_codec_id(bps, 0, 0, ~1);
  135. else if (id == AV_CODEC_ID_PCM_F32LE)
  136. id = ff_get_pcm_codec_id(bps, 1, 0, 0);
  137. if (id == AV_CODEC_ID_ADPCM_IMA_WAV && bps == 8)
  138. id = AV_CODEC_ID_PCM_ZORK;
  139. return id;
  140. }
  141. int ff_get_bmp_header(AVIOContext *pb, AVStream *st, unsigned *esize)
  142. {
  143. int tag1;
  144. if(esize) *esize = avio_rl32(pb);
  145. else avio_rl32(pb);
  146. st->codec->width = avio_rl32(pb);
  147. st->codec->height = (int32_t)avio_rl32(pb);
  148. avio_rl16(pb); /* planes */
  149. st->codec->bits_per_coded_sample = avio_rl16(pb); /* depth */
  150. tag1 = avio_rl32(pb);
  151. avio_rl32(pb); /* ImageSize */
  152. avio_rl32(pb); /* XPelsPerMeter */
  153. avio_rl32(pb); /* YPelsPerMeter */
  154. avio_rl32(pb); /* ClrUsed */
  155. avio_rl32(pb); /* ClrImportant */
  156. return tag1;
  157. }
  158. int ff_read_riff_info(AVFormatContext *s, int64_t size)
  159. {
  160. int64_t start, end, cur;
  161. AVIOContext *pb = s->pb;
  162. start = avio_tell(pb);
  163. end = start + size;
  164. while ((cur = avio_tell(pb)) >= 0 &&
  165. cur <= end - 8 /* = tag + size */) {
  166. uint32_t chunk_code;
  167. int64_t chunk_size;
  168. char key[5] = { 0 };
  169. char *value;
  170. chunk_code = avio_rl32(pb);
  171. chunk_size = avio_rl32(pb);
  172. if (url_feof(pb)) {
  173. if (chunk_code || chunk_size) {
  174. av_log(s, AV_LOG_WARNING, "INFO subchunk truncated\n");
  175. return AVERROR_INVALIDDATA;
  176. }
  177. return AVERROR_EOF;
  178. }
  179. if (chunk_size > end ||
  180. end - chunk_size < cur ||
  181. chunk_size == UINT_MAX) {
  182. avio_seek(pb, -9, SEEK_CUR);
  183. chunk_code = avio_rl32(pb);
  184. chunk_size = avio_rl32(pb);
  185. if (chunk_size > end || end - chunk_size < cur || chunk_size == UINT_MAX) {
  186. av_log(s, AV_LOG_WARNING, "too big INFO subchunk\n");
  187. return AVERROR_INVALIDDATA;
  188. }
  189. }
  190. chunk_size += (chunk_size & 1);
  191. if (!chunk_code) {
  192. if (chunk_size)
  193. avio_skip(pb, chunk_size);
  194. else if (pb->eof_reached) {
  195. av_log(s, AV_LOG_WARNING, "truncated file\n");
  196. return AVERROR_EOF;
  197. }
  198. continue;
  199. }
  200. value = av_mallocz(chunk_size + 1);
  201. if (!value) {
  202. av_log(s, AV_LOG_ERROR,
  203. "out of memory, unable to read INFO tag\n");
  204. return AVERROR(ENOMEM);
  205. }
  206. AV_WL32(key, chunk_code);
  207. if (avio_read(pb, value, chunk_size) != chunk_size) {
  208. av_log(s, AV_LOG_WARNING,
  209. "premature end of file while reading INFO tag\n");
  210. }
  211. av_dict_set(&s->metadata, key, value, AV_DICT_DONT_STRDUP_VAL);
  212. }
  213. return 0;
  214. }