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.

245 lines
7.0KB

  1. /*
  2. * ID3v2 header writer
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <stdint.h>
  21. #include <string.h>
  22. #include "libavutil/avstring.h"
  23. #include "libavutil/dict.h"
  24. #include "libavutil/intreadwrite.h"
  25. #include "avformat.h"
  26. #include "avio.h"
  27. #include "id3v2.h"
  28. static void id3v2_put_size(AVIOContext *pb, int size)
  29. {
  30. avio_w8(pb, size >> 21 & 0x7f);
  31. avio_w8(pb, size >> 14 & 0x7f);
  32. avio_w8(pb, size >> 7 & 0x7f);
  33. avio_w8(pb, size & 0x7f);
  34. }
  35. static int string_is_ascii(const uint8_t *str)
  36. {
  37. while (*str && *str < 128) str++;
  38. return !*str;
  39. }
  40. static void id3v2_encode_string(AVIOContext *pb, const uint8_t *str,
  41. enum ID3v2Encoding enc)
  42. {
  43. int (*put)(AVIOContext*, const char*);
  44. if (enc == ID3v2_ENCODING_UTF16BOM) {
  45. avio_wl16(pb, 0xFEFF); /* BOM */
  46. put = avio_put_str16le;
  47. } else
  48. put = avio_put_str;
  49. put(pb, str);
  50. }
  51. /**
  52. * Write a text frame with one (normal frames) or two (TXXX frames) strings
  53. * according to encoding (only UTF-8 or UTF-16+BOM supported).
  54. * @return number of bytes written or a negative error code.
  55. */
  56. static int id3v2_put_ttag(ID3v2EncContext *id3, AVIOContext *avioc, const char *str1, const char *str2,
  57. uint32_t tag, enum ID3v2Encoding enc)
  58. {
  59. int len;
  60. uint8_t *pb;
  61. AVIOContext *dyn_buf;
  62. if (avio_open_dyn_buf(&dyn_buf) < 0)
  63. return AVERROR(ENOMEM);
  64. /* check if the strings are ASCII-only and use UTF16 only if
  65. * they're not */
  66. if (enc == ID3v2_ENCODING_UTF16BOM && string_is_ascii(str1) &&
  67. (!str2 || string_is_ascii(str2)))
  68. enc = ID3v2_ENCODING_ISO8859;
  69. avio_w8(dyn_buf, enc);
  70. id3v2_encode_string(dyn_buf, str1, enc);
  71. if (str2)
  72. id3v2_encode_string(dyn_buf, str2, enc);
  73. len = avio_close_dyn_buf(dyn_buf, &pb);
  74. avio_wb32(avioc, tag);
  75. /* ID3v2.3 frame size is not sync-safe */
  76. if (id3->version == 3)
  77. avio_wb32(avioc, len);
  78. else
  79. id3v2_put_size(avioc, len);
  80. avio_wb16(avioc, 0);
  81. avio_write(avioc, pb, len);
  82. av_freep(&pb);
  83. return len + ID3v2_HEADER_SIZE;
  84. }
  85. static int id3v2_check_write_tag(ID3v2EncContext *id3, AVIOContext *pb, AVDictionaryEntry *t,
  86. const char table[][4], enum ID3v2Encoding enc)
  87. {
  88. uint32_t tag;
  89. int i;
  90. if (t->key[0] != 'T' || strlen(t->key) != 4)
  91. return -1;
  92. tag = AV_RB32(t->key);
  93. for (i = 0; *table[i]; i++)
  94. if (tag == AV_RB32(table[i]))
  95. return id3v2_put_ttag(id3, pb, t->value, NULL, tag, enc);
  96. return -1;
  97. }
  98. void ff_id3v2_start(ID3v2EncContext *id3, AVIOContext *pb, int id3v2_version,
  99. const char *magic)
  100. {
  101. id3->version = id3v2_version;
  102. avio_wb32(pb, MKBETAG(magic[0], magic[1], magic[2], id3v2_version));
  103. avio_w8(pb, 0);
  104. avio_w8(pb, 0); /* flags */
  105. /* reserve space for size */
  106. id3->size_pos = avio_tell(pb);
  107. avio_wb32(pb, 0);
  108. }
  109. int ff_id3v2_write_metadata(AVFormatContext *s, ID3v2EncContext *id3)
  110. {
  111. AVDictionaryEntry *t = NULL;
  112. int enc = id3->version == 3 ? ID3v2_ENCODING_UTF16BOM :
  113. ID3v2_ENCODING_UTF8;
  114. ff_metadata_conv(&s->metadata, ff_id3v2_34_metadata_conv, NULL);
  115. if (id3->version == 4)
  116. ff_metadata_conv(&s->metadata, ff_id3v2_4_metadata_conv, NULL);
  117. while ((t = av_dict_get(s->metadata, "", t, AV_DICT_IGNORE_SUFFIX))) {
  118. int ret;
  119. if ((ret = id3v2_check_write_tag(id3, s->pb, t, ff_id3v2_tags, enc)) > 0) {
  120. id3->len += ret;
  121. continue;
  122. }
  123. if ((ret = id3v2_check_write_tag(id3, s->pb, t, id3->version == 3 ?
  124. ff_id3v2_3_tags : ff_id3v2_4_tags, enc)) > 0) {
  125. id3->len += ret;
  126. continue;
  127. }
  128. /* unknown tag, write as TXXX frame */
  129. if ((ret = id3v2_put_ttag(id3, s->pb, t->key, t->value, MKBETAG('T', 'X', 'X', 'X'), enc)) < 0)
  130. return ret;
  131. id3->len += ret;
  132. }
  133. return 0;
  134. }
  135. int ff_id3v2_write_apic(AVFormatContext *s, ID3v2EncContext *id3, AVPacket *pkt)
  136. {
  137. AVStream *st = s->streams[pkt->stream_index];
  138. AVDictionaryEntry *e;
  139. AVIOContext *dyn_buf;
  140. uint8_t *buf;
  141. const CodecMime *mime = ff_id3v2_mime_tags;
  142. const char *mimetype = NULL, *desc = "";
  143. int enc = id3->version == 3 ? ID3v2_ENCODING_UTF16BOM :
  144. ID3v2_ENCODING_UTF8;
  145. int i, len, type = 0;
  146. /* get the mimetype*/
  147. while (mime->id != AV_CODEC_ID_NONE) {
  148. if (mime->id == st->codecpar->codec_id) {
  149. mimetype = mime->str;
  150. break;
  151. }
  152. mime++;
  153. }
  154. if (!mimetype) {
  155. av_log(s, AV_LOG_ERROR, "No mimetype is known for stream %d, cannot "
  156. "write an attached picture.\n", st->index);
  157. return AVERROR(EINVAL);
  158. }
  159. /* get the picture type */
  160. e = av_dict_get(st->metadata, "comment", NULL, 0);
  161. for (i = 0; e && i < FF_ARRAY_ELEMS(ff_id3v2_picture_types); i++) {
  162. if (!av_strcasecmp(e->value, ff_id3v2_picture_types[i])) {
  163. type = i;
  164. break;
  165. }
  166. }
  167. /* get the description */
  168. if ((e = av_dict_get(st->metadata, "title", NULL, 0)))
  169. desc = e->value;
  170. /* start writing */
  171. if (avio_open_dyn_buf(&dyn_buf) < 0)
  172. return AVERROR(ENOMEM);
  173. avio_w8(dyn_buf, enc);
  174. avio_put_str(dyn_buf, mimetype);
  175. avio_w8(dyn_buf, type);
  176. id3v2_encode_string(dyn_buf, desc, enc);
  177. avio_write(dyn_buf, pkt->data, pkt->size);
  178. len = avio_close_dyn_buf(dyn_buf, &buf);
  179. avio_wb32(s->pb, MKBETAG('A', 'P', 'I', 'C'));
  180. if (id3->version == 3)
  181. avio_wb32(s->pb, len);
  182. else
  183. id3v2_put_size(s->pb, len);
  184. avio_wb16(s->pb, 0);
  185. avio_write(s->pb, buf, len);
  186. av_freep(&buf);
  187. id3->len += len + ID3v2_HEADER_SIZE;
  188. return 0;
  189. }
  190. void ff_id3v2_finish(ID3v2EncContext *id3, AVIOContext *pb)
  191. {
  192. int64_t cur_pos = avio_tell(pb);
  193. avio_seek(pb, id3->size_pos, SEEK_SET);
  194. id3v2_put_size(pb, id3->len);
  195. avio_seek(pb, cur_pos, SEEK_SET);
  196. }
  197. int ff_id3v2_write_simple(struct AVFormatContext *s, int id3v2_version,
  198. const char *magic)
  199. {
  200. ID3v2EncContext id3 = { 0 };
  201. int ret;
  202. ff_id3v2_start(&id3, s->pb, id3v2_version, magic);
  203. if ((ret = ff_id3v2_write_metadata(s, &id3)) < 0)
  204. return ret;
  205. ff_id3v2_finish(&id3, s->pb);
  206. return 0;
  207. }