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.

506 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. AVVorbisParseContext *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. if (*buf)
  196. return AVERROR_INVALIDDATA;
  197. ptr = *buf = av_realloc(NULL, buf_len);
  198. if (!ptr)
  199. return AVERROR(ENOMEM);
  200. memset(*buf, '\0', buf_len);
  201. ptr[0] = 2;
  202. offset = 1;
  203. offset += av_xiphlacing(&ptr[offset], priv->len[0]);
  204. offset += av_xiphlacing(&ptr[offset], priv->len[1]);
  205. for (i = 0; i < 3; i++) {
  206. memcpy(&ptr[offset], priv->packet[i], priv->len[i]);
  207. offset += priv->len[i];
  208. av_freep(&priv->packet[i]);
  209. }
  210. if ((err = av_reallocp(buf, offset + AV_INPUT_BUFFER_PADDING_SIZE)) < 0)
  211. return err;
  212. return offset;
  213. }
  214. static void vorbis_cleanup(AVFormatContext *s, int idx)
  215. {
  216. struct ogg *ogg = s->priv_data;
  217. struct ogg_stream *os = ogg->streams + idx;
  218. struct oggvorbis_private *priv = os->private;
  219. int i;
  220. if (os->private) {
  221. av_vorbis_parse_free(&priv->vp);
  222. for (i = 0; i < 3; i++)
  223. av_freep(&priv->packet[i]);
  224. }
  225. }
  226. static int vorbis_update_metadata(AVFormatContext *s, int idx)
  227. {
  228. struct ogg *ogg = s->priv_data;
  229. struct ogg_stream *os = ogg->streams + idx;
  230. AVStream *st = s->streams[idx];
  231. int ret;
  232. if (os->psize <= 8)
  233. return 0;
  234. /* New metadata packet; release old data. */
  235. av_dict_free(&st->metadata);
  236. ret = ff_vorbis_stream_comment(s, st, os->buf + os->pstart + 7,
  237. os->psize - 8);
  238. if (ret < 0)
  239. return ret;
  240. /* Update the metadata if possible. */
  241. av_freep(&os->new_metadata);
  242. if (st->metadata) {
  243. os->new_metadata = av_packet_pack_dictionary(st->metadata, &os->new_metadata_size);
  244. /* Send an empty dictionary to indicate that metadata has been cleared. */
  245. } else {
  246. os->new_metadata = av_malloc(1);
  247. os->new_metadata_size = 0;
  248. }
  249. return ret;
  250. }
  251. static int vorbis_header(AVFormatContext *s, int idx)
  252. {
  253. struct ogg *ogg = s->priv_data;
  254. AVStream *st = s->streams[idx];
  255. struct ogg_stream *os = ogg->streams + idx;
  256. struct oggvorbis_private *priv;
  257. int pkt_type = os->buf[os->pstart];
  258. if (!os->private) {
  259. os->private = av_mallocz(sizeof(struct oggvorbis_private));
  260. if (!os->private)
  261. return AVERROR(ENOMEM);
  262. }
  263. priv = os->private;
  264. if (!(pkt_type & 1))
  265. return priv->vp ? 0 : AVERROR_INVALIDDATA;
  266. if (os->psize < 1 || pkt_type > 5)
  267. return AVERROR_INVALIDDATA;
  268. if (priv->packet[pkt_type >> 1])
  269. return AVERROR_INVALIDDATA;
  270. if (pkt_type > 1 && !priv->packet[0] || pkt_type > 3 && !priv->packet[1])
  271. return AVERROR_INVALIDDATA;
  272. priv->len[pkt_type >> 1] = os->psize;
  273. priv->packet[pkt_type >> 1] = av_mallocz(os->psize);
  274. if (!priv->packet[pkt_type >> 1])
  275. return AVERROR(ENOMEM);
  276. memcpy(priv->packet[pkt_type >> 1], os->buf + os->pstart, os->psize);
  277. if (os->buf[os->pstart] == 1) {
  278. const uint8_t *p = os->buf + os->pstart + 7; /* skip "\001vorbis" tag */
  279. unsigned blocksize, bs0, bs1;
  280. int srate;
  281. int channels;
  282. if (os->psize != 30)
  283. return AVERROR_INVALIDDATA;
  284. if (bytestream_get_le32(&p) != 0) /* vorbis_version */
  285. return AVERROR_INVALIDDATA;
  286. channels = bytestream_get_byte(&p);
  287. if (st->codec->channels && channels != st->codec->channels) {
  288. av_log(s, AV_LOG_ERROR, "Channel change is not supported\n");
  289. return AVERROR_PATCHWELCOME;
  290. }
  291. st->codec->channels = channels;
  292. srate = bytestream_get_le32(&p);
  293. p += 4; // skip maximum bitrate
  294. st->codec->bit_rate = bytestream_get_le32(&p); // nominal bitrate
  295. p += 4; // skip minimum bitrate
  296. blocksize = bytestream_get_byte(&p);
  297. bs0 = blocksize & 15;
  298. bs1 = blocksize >> 4;
  299. if (bs0 > bs1)
  300. return AVERROR_INVALIDDATA;
  301. if (bs0 < 6 || bs1 > 13)
  302. return AVERROR_INVALIDDATA;
  303. if (bytestream_get_byte(&p) != 1) /* framing_flag */
  304. return AVERROR_INVALIDDATA;
  305. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  306. st->codec->codec_id = AV_CODEC_ID_VORBIS;
  307. if (srate > 0) {
  308. st->codec->sample_rate = srate;
  309. avpriv_set_pts_info(st, 64, 1, srate);
  310. }
  311. } else if (os->buf[os->pstart] == 3) {
  312. if (vorbis_update_metadata(s, idx) >= 0 && priv->len[1] > 10) {
  313. unsigned new_len;
  314. int ret = ff_replaygain_export(st, st->metadata);
  315. if (ret < 0)
  316. return ret;
  317. // drop all metadata we parsed and which is not required by libvorbis
  318. new_len = 7 + 4 + AV_RL32(priv->packet[1] + 7) + 4 + 1;
  319. if (new_len >= 16 && new_len < os->psize) {
  320. AV_WL32(priv->packet[1] + new_len - 5, 0);
  321. priv->packet[1][new_len - 1] = 1;
  322. priv->len[1] = new_len;
  323. }
  324. }
  325. } else {
  326. int ret = fixup_vorbis_headers(s, priv, &st->codec->extradata);
  327. if (ret < 0) {
  328. st->codec->extradata_size = 0;
  329. return ret;
  330. }
  331. st->codec->extradata_size = ret;
  332. priv->vp = av_vorbis_parse_init(st->codec->extradata, st->codec->extradata_size);
  333. if (!priv->vp) {
  334. av_freep(&st->codec->extradata);
  335. st->codec->extradata_size = 0;
  336. return AVERROR_UNKNOWN;
  337. }
  338. }
  339. return 1;
  340. }
  341. static int vorbis_packet(AVFormatContext *s, int idx)
  342. {
  343. struct ogg *ogg = s->priv_data;
  344. struct ogg_stream *os = ogg->streams + idx;
  345. struct oggvorbis_private *priv = os->private;
  346. int duration, flags = 0;
  347. if (!priv->vp)
  348. return AVERROR_INVALIDDATA;
  349. /* first packet handling
  350. * here we parse the duration of each packet in the first page and compare
  351. * the total duration to the page granule to find the encoder delay and
  352. * set the first timestamp */
  353. if ((!os->lastpts || os->lastpts == AV_NOPTS_VALUE) && !(os->flags & OGG_FLAG_EOS) && (int64_t)os->granule>=0) {
  354. int seg, d;
  355. uint8_t *last_pkt = os->buf + os->pstart;
  356. uint8_t *next_pkt = last_pkt;
  357. av_vorbis_parse_reset(priv->vp);
  358. duration = 0;
  359. seg = os->segp;
  360. d = av_vorbis_parse_frame_flags(priv->vp, last_pkt, 1, &flags);
  361. if (d < 0) {
  362. os->pflags |= AV_PKT_FLAG_CORRUPT;
  363. return 0;
  364. } else if (flags & VORBIS_FLAG_COMMENT) {
  365. vorbis_update_metadata(s, idx);
  366. flags = 0;
  367. }
  368. duration += d;
  369. last_pkt = next_pkt = next_pkt + os->psize;
  370. for (; seg < os->nsegs; seg++) {
  371. if (os->segments[seg] < 255) {
  372. int d = av_vorbis_parse_frame_flags(priv->vp, last_pkt, 1, &flags);
  373. if (d < 0) {
  374. duration = os->granule;
  375. break;
  376. } else if (flags & VORBIS_FLAG_COMMENT) {
  377. vorbis_update_metadata(s, idx);
  378. flags = 0;
  379. }
  380. duration += d;
  381. last_pkt = next_pkt + os->segments[seg];
  382. }
  383. next_pkt += os->segments[seg];
  384. }
  385. os->lastpts =
  386. os->lastdts = os->granule - duration;
  387. if (!os->granule && duration) //hack to deal with broken files (Ticket3710)
  388. os->lastpts = os->lastdts = AV_NOPTS_VALUE;
  389. if (s->streams[idx]->start_time == AV_NOPTS_VALUE) {
  390. s->streams[idx]->start_time = FFMAX(os->lastpts, 0);
  391. if (s->streams[idx]->duration != AV_NOPTS_VALUE)
  392. s->streams[idx]->duration -= s->streams[idx]->start_time;
  393. }
  394. priv->final_pts = AV_NOPTS_VALUE;
  395. av_vorbis_parse_reset(priv->vp);
  396. }
  397. /* parse packet duration */
  398. if (os->psize > 0) {
  399. duration = av_vorbis_parse_frame_flags(priv->vp, os->buf + os->pstart, 1, &flags);
  400. if (duration < 0) {
  401. os->pflags |= AV_PKT_FLAG_CORRUPT;
  402. return 0;
  403. } else if (flags & VORBIS_FLAG_COMMENT) {
  404. vorbis_update_metadata(s, idx);
  405. flags = 0;
  406. }
  407. os->pduration = duration;
  408. }
  409. /* final packet handling
  410. * here we save the pts of the first packet in the final page, sum up all
  411. * packet durations in the final page except for the last one, and compare
  412. * to the page granule to find the duration of the final packet */
  413. if (os->flags & OGG_FLAG_EOS) {
  414. if (os->lastpts != AV_NOPTS_VALUE) {
  415. priv->final_pts = os->lastpts;
  416. priv->final_duration = 0;
  417. }
  418. if (os->segp == os->nsegs)
  419. os->pduration = os->granule - priv->final_pts - priv->final_duration;
  420. priv->final_duration += os->pduration;
  421. }
  422. return 0;
  423. }
  424. const struct ogg_codec ff_vorbis_codec = {
  425. .magic = "\001vorbis",
  426. .magicsize = 7,
  427. .header = vorbis_header,
  428. .packet = vorbis_packet,
  429. .cleanup = vorbis_cleanup,
  430. .nb_header = 3,
  431. };