summaryrefslogtreecommitdiffstats
path: root/src/itdb_artwork.c
diff options
context:
space:
mode:
authorChristophe Fergeau <teuf@gnome.org>2007-10-29 21:59:49 +0000
committerChristophe Fergeau <teuf@gnome.org>2007-10-29 21:59:49 +0000
commit40f5237ecc9add8fc5262deee82bfbbf1d2aa458 (patch)
treea23dc20472e23af7f7c479d6a82f2a5ed299f072 /src/itdb_artwork.c
parentcf6afdbe7ad9e2458c2602efe13049e6b6ba1f9a (diff)
downloadlibgpod-40f5237ecc9add8fc5262deee82bfbbf1d2aa458.tar.gz
libgpod-40f5237ecc9add8fc5262deee82bfbbf1d2aa458.tar.xz
libgpod-40f5237ecc9add8fc5262deee82bfbbf1d2aa458.zip
* 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
Diffstat (limited to 'src/itdb_artwork.c')
-rw-r--r--src/itdb_artwork.c4
1 files changed, 2 insertions, 2 deletions
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];