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.

438 lines
14KB

  1. /*
  2. * Copyright (C) 2005 Michael Ahlberg, Måns Rullgård
  3. *
  4. * Permission is hereby granted, free of charge, to any person
  5. * obtaining a copy of this software and associated documentation
  6. * files (the "Software"), to deal in the Software without
  7. * restriction, including without limitation the rights to use, copy,
  8. * modify, merge, publish, distribute, sublicense, and/or sell copies
  9. * of the Software, and to permit persons to whom the Software is
  10. * furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be
  13. * included in all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  16. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  17. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  19. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  20. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  22. * DEALINGS IN THE SOFTWARE.
  23. */
  24. #include <stdlib.h>
  25. #include "libavutil/avstring.h"
  26. #include "libavutil/base64.h"
  27. #include "libavutil/bswap.h"
  28. #include "libavutil/dict.h"
  29. #include "libavcodec/bytestream.h"
  30. #include "libavcodec/get_bits.h"
  31. #include "libavcodec/vorbis_parser.h"
  32. #include "avformat.h"
  33. #include "flac_picture.h"
  34. #include "internal.h"
  35. #include "oggdec.h"
  36. #include "vorbiscomment.h"
  37. #include "replaygain.h"
  38. static int ogm_chapter(AVFormatContext *as, uint8_t *key, uint8_t *val)
  39. {
  40. int i, cnum, h, m, s, ms, keylen = strlen(key);
  41. AVChapter *chapter = NULL;
  42. if (keylen < 9 || sscanf(key, "CHAPTER%03d", &cnum) != 1)
  43. return 0;
  44. if (keylen <= 10) {
  45. if (sscanf(val, "%02d:%02d:%02d.%03d", &h, &m, &s, &ms) < 4)
  46. return 0;
  47. avpriv_new_chapter(as, cnum, (AVRational) { 1, 1000 },
  48. ms + 1000 * (s + 60 * (m + 60 * h)),
  49. AV_NOPTS_VALUE, NULL);
  50. av_free(val);
  51. } else if (!strcmp(key + keylen - 4, "NAME")) {
  52. for (i = 0; i < as->nb_chapters; i++)
  53. if (as->chapters[i]->id == cnum) {
  54. chapter = as->chapters[i];
  55. break;
  56. }
  57. if (!chapter)
  58. return 0;
  59. av_dict_set(&chapter->metadata, "title", val, AV_DICT_DONT_STRDUP_VAL);
  60. } else
  61. return 0;
  62. av_free(key);
  63. return 1;
  64. }
  65. int ff_vorbis_stream_comment(AVFormatContext *as, AVStream *st,
  66. const uint8_t *buf, int size)
  67. {
  68. int updates = ff_vorbis_comment(as, &st->metadata, buf, size, 1);
  69. if (updates > 0) {
  70. st->event_flags |= AVSTREAM_EVENT_FLAG_METADATA_UPDATED;
  71. }
  72. return updates;
  73. }
  74. int ff_vorbis_comment(AVFormatContext *as, AVDictionary **m,
  75. const uint8_t *buf, int size,
  76. int parse_picture)
  77. {
  78. const uint8_t *p = buf;
  79. const uint8_t *end = buf + size;
  80. int updates = 0;
  81. unsigned n, j;
  82. int s;
  83. /* must have vendor_length and user_comment_list_length */
  84. if (size < 8)
  85. return AVERROR_INVALIDDATA;
  86. s = bytestream_get_le32(&p);
  87. if (end - p - 4 < s || s < 0)
  88. return AVERROR_INVALIDDATA;
  89. p += s;
  90. n = bytestream_get_le32(&p);
  91. while (end - p >= 4 && n > 0) {
  92. const char *t, *v;
  93. int tl, vl;
  94. s = bytestream_get_le32(&p);
  95. if (end - p < s || s < 0)
  96. break;
  97. t = p;
  98. p += s;
  99. n--;
  100. v = memchr(t, '=', s);
  101. if (!v)
  102. continue;
  103. tl = v - t;
  104. vl = s - tl - 1;
  105. v++;
  106. if (tl && vl) {
  107. char *tt, *ct;
  108. tt = av_malloc(tl + 1);
  109. ct = av_malloc(vl + 1);
  110. if (!tt || !ct) {
  111. av_freep(&tt);
  112. av_freep(&ct);
  113. return AVERROR(ENOMEM);
  114. }
  115. for (j = 0; j < tl; j++)
  116. tt[j] = av_toupper(t[j]);
  117. tt[tl] = 0;
  118. memcpy(ct, v, vl);
  119. ct[vl] = 0;
  120. /* The format in which the pictures are stored is the FLAC format.
  121. * Xiph says: "The binary FLAC picture structure is base64 encoded
  122. * and placed within a VorbisComment with the tag name
  123. * 'METADATA_BLOCK_PICTURE'. This is the preferred and
  124. * recommended way of embedding cover art within VorbisComments."
  125. */
  126. if (!strcmp(tt, "METADATA_BLOCK_PICTURE") && parse_picture) {
  127. int ret;
  128. char *pict = av_malloc(vl);
  129. if (!pict) {
  130. av_freep(&tt);
  131. av_freep(&ct);
  132. return AVERROR(ENOMEM);
  133. }
  134. if ((ret = av_base64_decode(pict, ct, vl)) > 0)
  135. ret = ff_flac_parse_picture(as, pict, ret);
  136. av_freep(&tt);
  137. av_freep(&ct);
  138. av_freep(&pict);
  139. if (ret < 0) {
  140. av_log(as, AV_LOG_WARNING, "Failed to parse cover art block.\n");
  141. continue;
  142. }
  143. } else if (!ogm_chapter(as, tt, ct)) {
  144. updates++;
  145. av_dict_set(m, tt, ct,
  146. AV_DICT_DONT_STRDUP_KEY |
  147. AV_DICT_DONT_STRDUP_VAL);
  148. }
  149. }
  150. }
  151. if (p != end)
  152. av_log(as, AV_LOG_INFO,
  153. "%ti bytes of comment header remain\n", end - p);
  154. if (n > 0)
  155. av_log(as, AV_LOG_INFO,
  156. "truncated comment header, %i comments not found\n", n);
  157. ff_metadata_conv(m, NULL, ff_vorbiscomment_metadata_conv);
  158. return updates;
  159. }
  160. /*
  161. * Parse the vorbis header
  162. *
  163. * Vorbis Identification header from Vorbis_I_spec.html#vorbis-spec-codec
  164. * [vorbis_version] = read 32 bits as unsigned integer | Not used
  165. * [audio_channels] = read 8 bit integer as unsigned | Used
  166. * [audio_sample_rate] = read 32 bits as unsigned integer | Used
  167. * [bitrate_maximum] = read 32 bits as signed integer | Not used yet
  168. * [bitrate_nominal] = read 32 bits as signed integer | Not used yet
  169. * [bitrate_minimum] = read 32 bits as signed integer | Used as bitrate
  170. * [blocksize_0] = read 4 bits as unsigned integer | Not Used
  171. * [blocksize_1] = read 4 bits as unsigned integer | Not Used
  172. * [framing_flag] = read one bit | Not Used
  173. */
  174. struct oggvorbis_private {
  175. unsigned int len[3];
  176. unsigned char *packet[3];
  177. AVVorbisParseContext *vp;
  178. int64_t final_pts;
  179. int final_duration;
  180. };
  181. static int fixup_vorbis_headers(AVFormatContext *as,
  182. struct oggvorbis_private *priv,
  183. uint8_t **buf)
  184. {
  185. int i, offset, len, err;
  186. unsigned char *ptr;
  187. len = priv->len[0] + priv->len[1] + priv->len[2];
  188. ptr = *buf = av_mallocz(len + len / 255 + 64);
  189. if (!ptr)
  190. return AVERROR(ENOMEM);
  191. ptr[0] = 2;
  192. offset = 1;
  193. offset += av_xiphlacing(&ptr[offset], priv->len[0]);
  194. offset += av_xiphlacing(&ptr[offset], priv->len[1]);
  195. for (i = 0; i < 3; i++) {
  196. memcpy(&ptr[offset], priv->packet[i], priv->len[i]);
  197. offset += priv->len[i];
  198. av_freep(&priv->packet[i]);
  199. }
  200. if ((err = av_reallocp(buf, offset + FF_INPUT_BUFFER_PADDING_SIZE)) < 0)
  201. return err;
  202. return offset;
  203. }
  204. static void vorbis_cleanup(AVFormatContext *s, int idx)
  205. {
  206. struct ogg *ogg = s->priv_data;
  207. struct ogg_stream *os = ogg->streams + idx;
  208. struct oggvorbis_private *priv = os->private;
  209. int i;
  210. if (os->private) {
  211. av_vorbis_parse_free(&priv->vp);
  212. for (i = 0; i < 3; i++)
  213. av_freep(&priv->packet[i]);
  214. }
  215. }
  216. static int vorbis_header(AVFormatContext *s, int idx)
  217. {
  218. struct ogg *ogg = s->priv_data;
  219. AVStream *st = s->streams[idx];
  220. struct ogg_stream *os = ogg->streams + idx;
  221. struct oggvorbis_private *priv;
  222. int pkt_type = os->buf[os->pstart];
  223. if (!os->private) {
  224. os->private = av_mallocz(sizeof(struct oggvorbis_private));
  225. if (!os->private)
  226. return AVERROR(ENOMEM);
  227. }
  228. if (!(pkt_type & 1))
  229. return 0;
  230. if (os->psize < 1 || pkt_type > 5)
  231. return AVERROR_INVALIDDATA;
  232. priv = os->private;
  233. if (priv->packet[pkt_type >> 1])
  234. return AVERROR_INVALIDDATA;
  235. if (pkt_type > 1 && !priv->packet[0] || pkt_type > 3 && !priv->packet[1])
  236. return AVERROR_INVALIDDATA;
  237. priv->len[pkt_type >> 1] = os->psize;
  238. priv->packet[pkt_type >> 1] = av_mallocz(os->psize);
  239. if (!priv->packet[pkt_type >> 1])
  240. return AVERROR(ENOMEM);
  241. memcpy(priv->packet[pkt_type >> 1], os->buf + os->pstart, os->psize);
  242. if (os->buf[os->pstart] == 1) {
  243. const uint8_t *p = os->buf + os->pstart + 7; /* skip "\001vorbis" tag */
  244. unsigned blocksize, bs0, bs1;
  245. int srate;
  246. if (os->psize != 30)
  247. return AVERROR_INVALIDDATA;
  248. if (bytestream_get_le32(&p) != 0) /* vorbis_version */
  249. return AVERROR_INVALIDDATA;
  250. st->codec->channels = bytestream_get_byte(&p);
  251. srate = bytestream_get_le32(&p);
  252. p += 4; // skip maximum bitrate
  253. st->codec->bit_rate = bytestream_get_le32(&p); // nominal bitrate
  254. p += 4; // skip minimum bitrate
  255. blocksize = bytestream_get_byte(&p);
  256. bs0 = blocksize & 15;
  257. bs1 = blocksize >> 4;
  258. if (bs0 > bs1)
  259. return AVERROR_INVALIDDATA;
  260. if (bs0 < 6 || bs1 > 13)
  261. return AVERROR_INVALIDDATA;
  262. if (bytestream_get_byte(&p) != 1) /* framing_flag */
  263. return AVERROR_INVALIDDATA;
  264. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  265. st->codec->codec_id = AV_CODEC_ID_VORBIS;
  266. if (srate > 0) {
  267. st->codec->sample_rate = srate;
  268. avpriv_set_pts_info(st, 64, 1, srate);
  269. }
  270. } else if (os->buf[os->pstart] == 3) {
  271. if (os->psize > 8 &&
  272. ff_vorbis_stream_comment(s, st, os->buf + os->pstart + 7,
  273. os->psize - 8) >= 0) {
  274. unsigned new_len;
  275. int ret = ff_replaygain_export(st, st->metadata);
  276. if (ret < 0)
  277. return ret;
  278. // drop all metadata we parsed and which is not required by libvorbis
  279. new_len = 7 + 4 + AV_RL32(priv->packet[1] + 7) + 4 + 1;
  280. if (new_len >= 16 && new_len < os->psize) {
  281. AV_WL32(priv->packet[1] + new_len - 5, 0);
  282. priv->packet[1][new_len - 1] = 1;
  283. priv->len[1] = new_len;
  284. }
  285. }
  286. } else {
  287. int ret = fixup_vorbis_headers(s, priv, &st->codec->extradata);
  288. if (ret < 0) {
  289. st->codec->extradata_size = 0;
  290. return ret;
  291. }
  292. st->codec->extradata_size = ret;
  293. priv->vp = av_vorbis_parse_init(st->codec->extradata, st->codec->extradata_size);
  294. if (!priv->vp) {
  295. av_freep(&st->codec->extradata);
  296. st->codec->extradata_size = 0;
  297. return ret;
  298. }
  299. }
  300. return 1;
  301. }
  302. static int vorbis_packet(AVFormatContext *s, int idx)
  303. {
  304. struct ogg *ogg = s->priv_data;
  305. struct ogg_stream *os = ogg->streams + idx;
  306. struct oggvorbis_private *priv = os->private;
  307. int duration;
  308. /* first packet handling
  309. * here we parse the duration of each packet in the first page and compare
  310. * the total duration to the page granule to find the encoder delay and
  311. * set the first timestamp */
  312. if (!os->lastpts) {
  313. int seg;
  314. uint8_t *last_pkt = os->buf + os->pstart;
  315. uint8_t *next_pkt = last_pkt;
  316. int first_duration = 0;
  317. av_vorbis_parse_reset(priv->vp);
  318. duration = 0;
  319. for (seg = 0; seg < os->nsegs; seg++) {
  320. if (os->segments[seg] < 255) {
  321. int d = av_vorbis_parse_frame(priv->vp, last_pkt, 1);
  322. if (d < 0) {
  323. duration = os->granule;
  324. break;
  325. }
  326. if (!duration)
  327. first_duration = d;
  328. duration += d;
  329. last_pkt = next_pkt + os->segments[seg];
  330. }
  331. next_pkt += os->segments[seg];
  332. }
  333. os->lastpts =
  334. os->lastdts = os->granule - duration;
  335. s->streams[idx]->start_time = os->lastpts + first_duration;
  336. if (s->streams[idx]->duration)
  337. s->streams[idx]->duration -= s->streams[idx]->start_time;
  338. s->streams[idx]->cur_dts = AV_NOPTS_VALUE;
  339. priv->final_pts = AV_NOPTS_VALUE;
  340. av_vorbis_parse_reset(priv->vp);
  341. }
  342. /* parse packet duration */
  343. if (os->psize > 0) {
  344. duration = av_vorbis_parse_frame(priv->vp, os->buf + os->pstart, 1);
  345. if (duration <= 0) {
  346. os->pflags |= AV_PKT_FLAG_CORRUPT;
  347. return 0;
  348. }
  349. os->pduration = duration;
  350. }
  351. /* final packet handling
  352. * here we save the pts of the first packet in the final page, sum up all
  353. * packet durations in the final page except for the last one, and compare
  354. * to the page granule to find the duration of the final packet */
  355. if (os->flags & OGG_FLAG_EOS) {
  356. if (os->lastpts != AV_NOPTS_VALUE) {
  357. priv->final_pts = os->lastpts;
  358. priv->final_duration = 0;
  359. }
  360. if (os->segp == os->nsegs)
  361. os->pduration = os->granule - priv->final_pts - priv->final_duration;
  362. priv->final_duration += os->pduration;
  363. }
  364. return 0;
  365. }
  366. const struct ogg_codec ff_vorbis_codec = {
  367. .magic = "\001vorbis",
  368. .magicsize = 7,
  369. .header = vorbis_header,
  370. .packet = vorbis_packet,
  371. .cleanup = vorbis_cleanup,
  372. .nb_header = 3,
  373. };