[tracker] tracker-extract: Codestyle and indentation fixes for MP3 extractor
- From: Philip Van Hoof <pvanhoof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker] tracker-extract: Codestyle and indentation fixes for MP3 extractor
- Date: Mon, 14 Feb 2011 17:12:15 +0000 (UTC)
commit 0c30ad3967e5b16525d417343cc6c57a3da461e0
Author: Philip Van Hoof <philip codeminded be>
Date: Mon Feb 14 18:10:05 2011 +0100
tracker-extract: Codestyle and indentation fixes for MP3 extractor
src/tracker-extract/tracker-extract-mp3.c | 30 ++++++++++++++--------------
1 files changed, 15 insertions(+), 15 deletions(-)
---
diff --git a/src/tracker-extract/tracker-extract-mp3.c b/src/tracker-extract/tracker-extract-mp3.c
index 9053ce2..4577a3b 100644
--- a/src/tracker-extract/tracker-extract-mp3.c
+++ b/src/tracker-extract/tracker-extract-mp3.c
@@ -1119,11 +1119,11 @@ id3v2_text_to_utf8 (const gchar encoding,
"Windows-1252",
NULL, NULL, NULL);
case 0x01 :
- /* return g_convert (text, */
- /* len, */
- /* "UTF-8", */
- /* "UCS-2", */
- /* NULL, NULL, NULL); */
+ /* return g_convert (text, */
+ /* len, */
+ /* "UTF-8", */
+ /* "UCS-2", */
+ /* NULL, NULL, NULL); */
return ucs2_to_utf8 (text, len - len%2);
default:
@@ -1153,10 +1153,10 @@ id3v24_get_frame (const gchar *name)
do {
m = (l + r) / 2;
if (strncmp (name, id3v24_frames[m].name, 4) < 0) {
- // left half
+ /* left half */
r = m - 1;
} else {
- // right half
+ /* right half */
l = m + 1;
}
} while (l <= r && strncmp (id3v24_frames[m].name, name, 4) != 0);
@@ -1182,10 +1182,10 @@ id3v2_get_frame (const gchar *name)
do {
m = (l + r) / 2;
if (strncmp (name, id3v2_frames[m].name, 4) < 0) {
- // left half
+ /* left half */
r = m - 1;
} else {
- // right half
+ /* right half */
l = m + 1;
}
} while (l <= r && strncmp (id3v2_frames[m].name, name, 4) != 0);
@@ -1850,10 +1850,10 @@ parse_id3v23 (const gchar *data,
((unsigned char)(data[12]) << 8) |
((unsigned char)(data[12]) << 0));
- padding = (((unsigned char)(data[15]) << 24) |
- ((unsigned char)(data[16]) << 16) |
- ((unsigned char)(data[17]) << 8) |
- ((unsigned char)(data[18]) << 0));
+ padding = (((unsigned char)(data[15]) << 24) |
+ ((unsigned char)(data[16]) << 16) |
+ ((unsigned char)(data[17]) << 8) |
+ ((unsigned char)(data[18]) << 0));
pos += 4 + ext_header_size;
@@ -2176,8 +2176,8 @@ extract_mp3 (const gchar *uri,
md.id3v1.comment);
md.encoded_by = tracker_coalesce_strip (3, md.id3v24.encoded_by,
- md.id3v23.encoded_by,
- md.id3v22.encoded_by);
+ md.id3v23.encoded_by,
+ md.id3v22.encoded_by);
if (md.id3v24.track_number != 0) {
md.track_number = md.id3v24.track_number;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]