summaryrefslogtreecommitdiff
path: root/libavformat/mp3enc.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-01-22 02:00:13 +0100
committerJanne Grunau <janne-ffmpeg@jannau.net>2011-01-22 02:04:13 +0100
commit8c3caf7fb1be2eb6eb4683b1a0383cba5c25ee19 (patch)
tree9449f301f73249eb41e709a03a2473e239edafea /libavformat/mp3enc.c
parent045b80e52df7ba9c97084c946b4929000d5f5bc7 (diff)
mp3enc: handle errors in id3v2_put_ttag
make the initialization of put clearer this are the differences between [FFmpeg-devel] [PATCH 1/3] mp3enc: add support for writing UTF-16 tags and the already applied 187e23478bc5c066ff8eef562925471ac179644e Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
Diffstat (limited to 'libavformat/mp3enc.c')
-rw-r--r--libavformat/mp3enc.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/libavformat/mp3enc.c b/libavformat/mp3enc.c
index e6dcf6aefc..db180d66e8 100644
--- a/libavformat/mp3enc.c
+++ b/libavformat/mp3enc.c
@@ -79,23 +79,25 @@ static void id3v2_put_size(AVFormatContext *s, int size)
/**
* Write a text frame with one (normal frames) or two (TXXX frames) strings
* according to encoding (only UTF-8 or UTF-16+BOM supported).
- * @return number of bytes written.
+ * @return number of bytes written or a negative error code.
*/
static int id3v2_put_ttag(AVFormatContext *s, const char *str1, const char *str2,
- uint32_t tag, enum ID3v2Encoding enc)
+ uint32_t tag, enum ID3v2Encoding enc)
{
int len;
uint8_t *pb;
- void (*put)(ByteIOContext*, const char*) = avio_put_str;
+ int (*put)(ByteIOContext*, const char*);
ByteIOContext *dyn_buf;
if (url_open_dyn_buf(&dyn_buf) < 0)
- return 0;
+ return AVERROR(ENOMEM);
put_byte(dyn_buf, enc);
if (enc == ID3v2_ENCODING_UTF16BOM) {
put_le16(dyn_buf, 0xFEFF); /* BOM */
put = avio_put_str16le;
- }
+ } else
+ put = avio_put_str;
+
put(dyn_buf, str1);
if (str2)
put(dyn_buf, str2);
@@ -167,20 +169,25 @@ static int mp3_write_header(struct AVFormatContext *s)
ff_metadata_conv(&s->metadata, ff_id3v2_metadata_conv, NULL);
while ((t = av_metadata_get(s->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) {
uint32_t tag = 0;
+ int ret;
if (t->key[0] == 'T' && strlen(t->key) == 4) {
int i;
for (i = 0; *ff_id3v2_tags[i]; i++)
if (AV_RB32(t->key) == AV_RB32(ff_id3v2_tags[i])) {
tag = AV_RB32(t->key);
- totlen += id3v2_put_ttag(s, t->value, NULL, tag, ID3v2_ENCODING_UTF8);
+ if ((ret = id3v2_put_ttag(s, t->value, NULL, tag, ID3v2_ENCODING_UTF8)) < 0)
+ return ret;
+ totlen += ret;
break;
}
}
if (!tag) { /* unknown tag, write as TXXX frame */
tag = MKBETAG('T', 'X', 'X', 'X');
- totlen += id3v2_put_ttag(s, t->key, t->value, tag, ID3v2_ENCODING_UTF8);
+ if ((ret = id3v2_put_ttag(s, t->key, t->value, tag, ID3v2_ENCODING_UTF8)) < 0)
+ return ret;
+ totlen += ret;
}
}