summaryrefslogtreecommitdiff
path: root/plugins/gtkui/coverart.c
blob: 7d042e5f0803c6da866ea9df6891a4d5a8b8c0a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
    DeaDBeeF - ultimate music player for GNU/Linux systems with X11
    Copyright (C) 2009-2010 Alexey Yakovenko <waker@users.sourceforge.net>

    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.
    
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/
#include <gtk/gtk.h>
#include "coverart.h"
#include "../artwork/artwork.h"

extern DB_artwork_plugin_t *coverart_plugin;

void
cover_avail_callback (const char *artist, const char *album) {
}

static GdkPixbuf *
get_pixbuf (const char *fname, int width) {
    GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file (fname, NULL);
    if (!pixbuf) {
        return NULL;
    }
    int w, h;
    w = gdk_pixbuf_get_width (pixbuf);
    h = gdk_pixbuf_get_height (pixbuf);
    if (w == width) {
        return pixbuf;
    }
    int height;
    if (w > h) {
        height = width * h / w;
    }
    else if (h > w) {
        height = width;
        width = height * w / h;
    }
    else {
        height = width;
    }
    printf ("width=%d/%d, height=%d/%d\n", width, w, height, h);

    GdkPixbuf *scaled = gdk_pixbuf_scale_simple (pixbuf, width, height, GDK_INTERP_BILINEAR);
    g_object_unref (pixbuf);
    return scaled;
}

GdkPixbuf *
get_cover_art (DB_playItem_t *it, int width) {
    if (!coverart_plugin) {
        return NULL;
    }
    const char *fname = coverart_plugin->get_album_art (it, cover_avail_callback);
    if (fname) {
        printf ("loading %s\n", fname);
        return get_pixbuf (fname, width);
    }
    return NULL;
}