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.

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