aboutsummaryrefslogtreecommitdiff
path: root/src/idop.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2022-06-22 11:02:42 +0300
committerSergey Poznyakoff <gray@gnu.org>2022-06-22 11:02:42 +0300
commit34486393a5ac768064094b45dabeb45f7d47d3df (patch)
tree42f8473bd61f20d42d60ba08fa73bee17aa3985c /src/idop.c
parent25e58312538b34f674e31a6ff70fa7a452ab6b0e (diff)
downloadidest-master.tar.gz
idest-master.tar.bz2
In fixup mode, convert all frames to UTF-8HEADmaster
* src/idop.c (frame_encoding_is_8bit): Remove. (frame_recode_detect): New function. (idest_ucs4_cvt,fixup_charset): Use frame_recode_detect to decide whether to change frame's encoding and/or charset. * src/main.c: Bail out if --fixup is used together with --charset. * doc/idest.texi: Fix typo.
Diffstat (limited to 'src/idop.c')
-rw-r--r--src/idop.c68
1 files changed, 45 insertions, 23 deletions
diff --git a/src/idop.c b/src/idop.c
index bb9f1c3..01c6574 100644
--- a/src/idop.c
+++ b/src/idop.c
@@ -190,4 +190,10 @@ safe_id3_file_update_and_close(struct id3_file *file)
-static int
-frame_encoding_is_8bit(struct id3_frame const *frame)
+enum frame_recode_option {
+ FRAME_RECODE_NONE, /* Nothing to recode */
+ FRAME_RECODE_UTF8, /* Convert all frames to UTF-8 encoding */
+ FRAME_RECODE_BROKEN /* Convert broken 8-bit encodings */
+};
+
+enum frame_recode_option
+frame_recode_detect(struct id3_frame const *frame)
{
@@ -196,7 +202,20 @@ frame_encoding_is_8bit(struct id3_frame const *frame)
if (!frame)
- return 0;
+ return FRAME_RECODE_NONE;
field = id3_frame_field(frame, 0);
if (!field)
- return 0;
- return id3_field_gettextencoding(field) == ID3_FIELD_TEXTENCODING_ISO_8859_1;
+ return FRAME_RECODE_NONE;
+ switch (id3_field_gettextencoding(field)) {
+ case ID3_FIELD_TEXTENCODING_ISO_8859_1:
+ if (broken_8bit_charset)
+ return FRAME_RECODE_BROKEN;
+ /* fall through */
+ case ID3_FIELD_TEXTENCODING_UTF_16:
+ case ID3_FIELD_TEXTENCODING_UTF_16BE:
+ return FRAME_RECODE_UTF8;
+
+ case ID3_FIELD_TEXTENCODING_UTF_8:
+ default:
+ break;
+ }
+ return FRAME_RECODE_NONE;
}
@@ -214,3 +233,3 @@ idest_ucs4_cvt(id3_ucs4_t const *ucs4, struct id3_frame const *frame)
{
- if (broken_8bit_charset && frame_encoding_is_8bit(frame)) {
+ if (frame_recode_detect(frame) == FRAME_RECODE_BROKEN) {
char *tempval = (char*)id3_ucs4_latin1duplicate(ucs4);
@@ -557,5 +576,2 @@ fixup_charset(struct id3_tag *tag)
- if (!broken_8bit_charset)
- return;
-
for (i = 0; (frame = id3_tag_findframe(tag, NULL, i)); i++) {
@@ -573,17 +589,23 @@ fixup_charset(struct id3_tag *tag)
- if (!frame_encoding_is_8bit(frame))
- continue;
-
- ed_item_zero(&itm);
- itm.name = xstrdup(frame->id);
- memcpy(itm.id, frame->id, 4);
- if (ft->decode(&itm, frame)) {
- error(0, 0, "%s: decoding to %s failed",
- frame->id, charset);
- continue;
+ switch (frame_recode_detect(frame)) {
+ case FRAME_RECODE_NONE:
+ break;
+
+ case FRAME_RECODE_UTF8:
+ if (strcasecmp(charset, "UTF-8") != 0)
+ break;
+ case FRAME_RECODE_BROKEN:
+ ed_item_zero(&itm);
+ itm.name = xstrdup(frame->id);
+ memcpy(itm.id, frame->id, 4);
+ if (ft->decode(&itm, frame)) {
+ error(0, 0, "%s: decoding to %s failed",
+ frame->id, charset);
+ continue;
+ }
+ if (!input_list)
+ input_list = ed_list_create();
+ gl_list_add_last(input_list, ed_item_dup(&itm));
+ ed_item_free_content(&itm);
}
- if (!input_list)
- input_list = ed_list_create();
- gl_list_add_last(input_list, ed_item_dup(&itm));
- ed_item_free_content(&itm);
}

Return to:

Send suggestions and report system problems to the System administrator.