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.

495 lines
16KB

  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_log(as, AV_LOG_WARNING, "out-of-memory error. Skipping cover art block.\n");
  131. av_freep(&tt);
  132. av_freep(&ct);
  133. continue;
  134. }
  135. if ((ret = av_base64_decode(pict, ct, vl)) > 0)
  136. ret = ff_flac_parse_picture(as, pict, ret);
  137. av_freep(&tt);
  138. av_freep(&ct);
  139. av_freep(&pict);
  140. if (ret < 0) {
  141. av_log(as, AV_LOG_WARNING, "Failed to parse cover art block.\n");
  142. continue;
  143. }
  144. } else if (!ogm_chapter(as, tt, ct)) {
  145. updates++;
  146. if (av_dict_get(*m, tt, NULL, 0)) {
  147. av_dict_set(m, tt, ";", AV_DICT_APPEND);
  148. }
  149. av_dict_set(m, tt, ct,
  150. AV_DICT_DONT_STRDUP_KEY |
  151. AV_DICT_APPEND);
  152. av_freep(&ct);
  153. }
  154. }
  155. }
  156. if (p != end)
  157. av_log(as, AV_LOG_INFO,
  158. "%"PTRDIFF_SPECIFIER" bytes of comment header remain\n", end - p);
  159. if (n > 0)
  160. av_log(as, AV_LOG_INFO,
  161. "truncated comment header, %i comments not found\n", n);
  162. ff_metadata_conv(m, NULL, ff_vorbiscomment_metadata_conv);
  163. return updates;
  164. }
  165. /*
  166. * Parse the vorbis header
  167. *
  168. * Vorbis Identification header from Vorbis_I_spec.html#vorbis-spec-codec
  169. * [vorbis_version] = read 32 bits as unsigned integer | Not used
  170. * [audio_channels] = read 8 bit integer as unsigned | Used
  171. * [audio_sample_rate] = read 32 bits as unsigned integer | Used
  172. * [bitrate_maximum] = read 32 bits as signed integer | Not used yet
  173. * [bitrate_nominal] = read 32 bits as signed integer | Not used yet
  174. * [bitrate_minimum] = read 32 bits as signed integer | Used as bitrate
  175. * [blocksize_0] = read 4 bits as unsigned integer | Not Used
  176. * [blocksize_1] = read 4 bits as unsigned integer | Not Used
  177. * [framing_flag] = read one bit | Not Used
  178. */
  179. struct oggvorbis_private {
  180. unsigned int len[3];
  181. unsigned char *packet[3];
  182. VorbisParseContext vp;
  183. int64_t final_pts;
  184. int final_duration;
  185. };
  186. static int fixup_vorbis_headers(AVFormatContext *as,
  187. struct oggvorbis_private *priv,
  188. uint8_t **buf)
  189. {
  190. int i, offset, len, err;
  191. int buf_len;
  192. unsigned char *ptr;
  193. len = priv->len[0] + priv->len[1] + priv->len[2];
  194. buf_len = len + len / 255 + 64;
  195. ptr = *buf = av_realloc(NULL, buf_len);
  196. if (!ptr)
  197. return AVERROR(ENOMEM);
  198. memset(*buf, '\0', buf_len);
  199. ptr[0] = 2;
  200. offset = 1;
  201. offset += av_xiphlacing(&ptr[offset], priv->len[0]);
  202. offset += av_xiphlacing(&ptr[offset], priv->len[1]);
  203. for (i = 0; i < 3; i++) {
  204. memcpy(&ptr[offset], priv->packet[i], priv->len[i]);
  205. offset += priv->len[i];
  206. av_freep(&priv->packet[i]);
  207. }
  208. if ((err = av_reallocp(buf, offset + FF_INPUT_BUFFER_PADDING_SIZE)) < 0)
  209. return err;
  210. return offset;
  211. }
  212. static void vorbis_cleanup(AVFormatContext *s, int idx)
  213. {
  214. struct ogg *ogg = s->priv_data;
  215. struct ogg_stream *os = ogg->streams + idx;
  216. struct oggvorbis_private *priv = os->private;
  217. int i;
  218. if (os->private)
  219. for (i = 0; i < 3; i++)
  220. av_freep(&priv->packet[i]);
  221. }
  222. static int vorbis_update_metadata(AVFormatContext *s, int idx)
  223. {
  224. struct ogg *ogg = s->priv_data;
  225. struct ogg_stream *os = ogg->streams + idx;
  226. AVStream *st = s->streams[idx];
  227. int ret;
  228. if (os->psize <= 8)
  229. return 0;
  230. /* New metadata packet; release old data. */
  231. av_dict_free(&st->metadata);
  232. ret = ff_vorbis_stream_comment(s, st, os->buf + os->pstart + 7,
  233. os->psize - 8);
  234. if (ret < 0)
  235. return ret;
  236. /* Update the metadata if possible. */
  237. av_freep(&os->new_metadata);
  238. if (st->metadata) {
  239. os->new_metadata = av_packet_pack_dictionary(st->metadata, &os->new_metadata_size);
  240. /* Send an empty dictionary to indicate that metadata has been cleared. */
  241. } else {
  242. os->new_metadata = av_malloc(1);
  243. os->new_metadata_size = 0;
  244. }
  245. return ret;
  246. }
  247. static int vorbis_header(AVFormatContext *s, int idx)
  248. {
  249. struct ogg *ogg = s->priv_data;
  250. AVStream *st = s->streams[idx];
  251. struct ogg_stream *os = ogg->streams + idx;
  252. struct oggvorbis_private *priv;
  253. int pkt_type = os->buf[os->pstart];
  254. if (!os->private) {
  255. os->private = av_mallocz(sizeof(struct oggvorbis_private));
  256. if (!os->private)
  257. return AVERROR(ENOMEM);
  258. }
  259. if (!(pkt_type & 1))
  260. return 0;
  261. if (os->psize < 1 || pkt_type > 5)
  262. return AVERROR_INVALIDDATA;
  263. priv = os->private;
  264. if (priv->packet[pkt_type >> 1])
  265. return AVERROR_INVALIDDATA;
  266. if (pkt_type > 1 && !priv->packet[0] || pkt_type > 3 && !priv->packet[1])
  267. return AVERROR_INVALIDDATA;
  268. priv->len[pkt_type >> 1] = os->psize;
  269. priv->packet[pkt_type >> 1] = av_mallocz(os->psize);
  270. if (!priv->packet[pkt_type >> 1])
  271. return AVERROR(ENOMEM);
  272. memcpy(priv->packet[pkt_type >> 1], os->buf + os->pstart, os->psize);
  273. if (os->buf[os->pstart] == 1) {
  274. const uint8_t *p = os->buf + os->pstart + 7; /* skip "\001vorbis" tag */
  275. unsigned blocksize, bs0, bs1;
  276. int srate;
  277. int channels;
  278. if (os->psize != 30)
  279. return AVERROR_INVALIDDATA;
  280. if (bytestream_get_le32(&p) != 0) /* vorbis_version */
  281. return AVERROR_INVALIDDATA;
  282. channels = bytestream_get_byte(&p);
  283. if (st->codec->channels && channels != st->codec->channels) {
  284. av_log(s, AV_LOG_ERROR, "Channel change is not supported\n");
  285. return AVERROR_PATCHWELCOME;
  286. }
  287. st->codec->channels = channels;
  288. srate = bytestream_get_le32(&p);
  289. p += 4; // skip maximum bitrate
  290. st->codec->bit_rate = bytestream_get_le32(&p); // nominal bitrate
  291. p += 4; // skip minimum bitrate
  292. blocksize = bytestream_get_byte(&p);
  293. bs0 = blocksize & 15;
  294. bs1 = blocksize >> 4;
  295. if (bs0 > bs1)
  296. return AVERROR_INVALIDDATA;
  297. if (bs0 < 6 || bs1 > 13)
  298. return AVERROR_INVALIDDATA;
  299. if (bytestream_get_byte(&p) != 1) /* framing_flag */
  300. return AVERROR_INVALIDDATA;
  301. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  302. st->codec->codec_id = AV_CODEC_ID_VORBIS;
  303. if (srate > 0) {
  304. st->codec->sample_rate = srate;
  305. avpriv_set_pts_info(st, 64, 1, srate);
  306. }
  307. } else if (os->buf[os->pstart] == 3) {
  308. if (vorbis_update_metadata(s, idx) >= 0 && priv->len[1] > 10) {
  309. unsigned new_len;
  310. int ret = ff_replaygain_export(st, st->metadata);
  311. if (ret < 0)
  312. return ret;
  313. // drop all metadata we parsed and which is not required by libvorbis
  314. new_len = 7 + 4 + AV_RL32(priv->packet[1] + 7) + 4 + 1;
  315. if (new_len >= 16 && new_len < os->psize) {
  316. AV_WL32(priv->packet[1] + new_len - 5, 0);
  317. priv->packet[1][new_len - 1] = 1;
  318. priv->len[1] = new_len;
  319. }
  320. }
  321. } else {
  322. int ret = fixup_vorbis_headers(s, priv, &st->codec->extradata);
  323. if (ret < 0) {
  324. st->codec->extradata_size = 0;
  325. return ret;
  326. }
  327. st->codec->extradata_size = ret;
  328. if ((ret = avpriv_vorbis_parse_extradata(st->codec, &priv->vp))) {
  329. av_freep(&st->codec->extradata);
  330. st->codec->extradata_size = 0;
  331. return ret;
  332. }
  333. }
  334. return 1;
  335. }
  336. static int vorbis_packet(AVFormatContext *s, int idx)
  337. {
  338. struct ogg *ogg = s->priv_data;
  339. struct ogg_stream *os = ogg->streams + idx;
  340. struct oggvorbis_private *priv = os->private;
  341. int duration, flags = 0;
  342. /* first packet handling
  343. * here we parse the duration of each packet in the first page and compare
  344. * the total duration to the page granule to find the encoder delay and
  345. * set the first timestamp */
  346. if ((!os->lastpts || os->lastpts == AV_NOPTS_VALUE) && !(os->flags & OGG_FLAG_EOS) && (int64_t)os->granule>=0) {
  347. int seg, d;
  348. uint8_t *last_pkt = os->buf + os->pstart;
  349. uint8_t *next_pkt = last_pkt;
  350. avpriv_vorbis_parse_reset(&priv->vp);
  351. duration = 0;
  352. seg = os->segp;
  353. d = avpriv_vorbis_parse_frame_flags(&priv->vp, last_pkt, 1, &flags);
  354. if (d < 0) {
  355. os->pflags |= AV_PKT_FLAG_CORRUPT;
  356. return 0;
  357. } else if (flags & VORBIS_FLAG_COMMENT) {
  358. vorbis_update_metadata(s, idx);
  359. flags = 0;
  360. }
  361. duration += d;
  362. last_pkt = next_pkt = next_pkt + os->psize;
  363. for (; seg < os->nsegs; seg++) {
  364. if (os->segments[seg] < 255) {
  365. int d = avpriv_vorbis_parse_frame_flags(&priv->vp, last_pkt, 1, &flags);
  366. if (d < 0) {
  367. duration = os->granule;
  368. break;
  369. } else if (flags & VORBIS_FLAG_COMMENT) {
  370. vorbis_update_metadata(s, idx);
  371. flags = 0;
  372. }
  373. duration += d;
  374. last_pkt = next_pkt + os->segments[seg];
  375. }
  376. next_pkt += os->segments[seg];
  377. }
  378. os->lastpts =
  379. os->lastdts = os->granule - duration;
  380. if (!os->granule && duration) //hack to deal with broken files (Ticket3710)
  381. os->lastpts = os->lastdts = AV_NOPTS_VALUE;
  382. if (s->streams[idx]->start_time == AV_NOPTS_VALUE) {
  383. s->streams[idx]->start_time = FFMAX(os->lastpts, 0);
  384. if (s->streams[idx]->duration != AV_NOPTS_VALUE)
  385. s->streams[idx]->duration -= s->streams[idx]->start_time;
  386. }
  387. priv->final_pts = AV_NOPTS_VALUE;
  388. avpriv_vorbis_parse_reset(&priv->vp);
  389. }
  390. /* parse packet duration */
  391. if (os->psize > 0) {
  392. duration = avpriv_vorbis_parse_frame_flags(&priv->vp, os->buf + os->pstart, 1, &flags);
  393. if (duration < 0) {
  394. os->pflags |= AV_PKT_FLAG_CORRUPT;
  395. return 0;
  396. } else if (flags & VORBIS_FLAG_COMMENT) {
  397. vorbis_update_metadata(s, idx);
  398. flags = 0;
  399. }
  400. os->pduration = duration;
  401. }
  402. /* final packet handling
  403. * here we save the pts of the first packet in the final page, sum up all
  404. * packet durations in the final page except for the last one, and compare
  405. * to the page granule to find the duration of the final packet */
  406. if (os->flags & OGG_FLAG_EOS) {
  407. if (os->lastpts != AV_NOPTS_VALUE) {
  408. priv->final_pts = os->lastpts;
  409. priv->final_duration = 0;
  410. }
  411. if (os->segp == os->nsegs)
  412. os->pduration = os->granule - priv->final_pts - priv->final_duration;
  413. priv->final_duration += os->pduration;
  414. }
  415. return 0;
  416. }
  417. const struct ogg_codec ff_vorbis_codec = {
  418. .magic = "\001vorbis",
  419. .magicsize = 7,
  420. .header = vorbis_header,
  421. .packet = vorbis_packet,
  422. .cleanup = vorbis_cleanup,
  423. .nb_header = 3,
  424. };