From c3c35cc2c5d85f4d84468c8454a1a648fea5fac5 Mon Sep 17 00:00:00 2001 From: teuf Date: Mon, 29 Oct 2007 21:59:49 +0000 Subject: * src/itdb_artwork.c: * src/ithumb-writer.c: replace // comments with /* */ pairs, fixes compilation on my machine git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1747 f01d2545-417e-4e96-918e-98f8d0dbbcb6 --- ChangeLog | 6 ++++++ src/itdb_artwork.c | 4 ++-- src/ithumb-writer.c | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5e112e2..af4e25d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-10-29 Christophe Fergeau + + * src/itdb_artwork.c: + * src/ithumb-writer.c: replace // comments with /* */ pairs, fixes + compilation on my machine + 2007-10-29 Christophe Fergeau Patch from Filippo Giunchedi diff --git a/src/itdb_artwork.c b/src/itdb_artwork.c index c3ec898..69dc38c 100644 --- a/src/itdb_artwork.c +++ b/src/itdb_artwork.c @@ -665,7 +665,7 @@ static gint limit8bit (float x) return x; } -// swapping U and V planes this unpacks YV12 +/* swapping U and V planes this unpacks YV12 */ static guchar * unpack_I420 (guchar *yuvdata, gint bytes_len, guint byte_order, gint width, gint height) @@ -685,7 +685,7 @@ unpack_I420 (guchar *yuvdata, gint bytes_len, guint byte_order, rgbdata = g_malloc(imgsize); - // FIXME could be faster + /* FIXME could be faster */ while(h < yuvdim){ y = yuvdata[h]; diff --git a/src/ithumb-writer.c b/src/ithumb-writer.c index 5763634..24f1566 100644 --- a/src/ithumb-writer.c +++ b/src/ithumb-writer.c @@ -302,7 +302,7 @@ pack_I420 (GdkPixbuf *orig_pixbuf, const Itdb_ArtworkFormat *img_info, gint horizontal_padding, gint vertical_padding, guint32 *thumb_size) { - // FIXME do something + /* FIXME do something */ g_return_val_if_fail (img_info, NULL); return NULL; } -- cgit