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.

265 lines
8.4KB

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