]> git.vomp.tv Git - vompclient.git/blob - staticartwork.h
Fix resuming recording directly after stopping it
[vompclient.git] / staticartwork.h
1 /*
2     Copyright 2014 Marten Richter
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef STATIC_ARTWORK_H
22 #define STATIC_ARTWORK_H
23
24 #define EXTERNAL_PICTS \
25                 EXTERNALPICTURE(vdrlogo, vdrhires, png) \
26                 EXTERNALPICTURE(wallpaper, wallpaper720p, jpg) \
27                 EXTERNALPICTURE(properties, properties, png) \
28                 EXTERNALPICTURE(radio, radio, png) \
29                 EXTERNALPICTURE(recordings, recordings, png) \
30                 EXTERNALPICTURE(restart, restart, png) \
31                 EXTERNALPICTURE(timers, timers, png) \
32                 EXTERNALPICTURE(hd1080i, hd1080i, png) \
33                 EXTERNALPICTURE(hd720p, hd720p, png) \
34                 EXTERNALPICTURE(sd576i,sd576i, png) \
35                 EXTERNALPICTURE(txtoff,txtoff, png) \
36                 EXTERNALPICTURE(txton, txton, png) \
37                 EXTERNALPICTURE(dolbyoff,dolbyoff, png) \
38                 EXTERNALPICTURE(dolbyon, dolbyon, png) \
39                 EXTERNALPICTURE(recording,recording, png) \
40                 EXTERNALPICTURE(recfolder, recfolder, png) \
41                 EXTERNALPICTURE(defposter, defposter, png) \
42                 EXTERNALPICTURE(tv, tv, png)
43
44
45 #define EXTERNALPICTURE(name, fname, fileextension)  sa_ ## name,
46
47
48 typedef enum tStaticArtwork
49 {
50         sa_None,
51         EXTERNAL_PICTS
52         sa_MAX
53 } StaticArtwork;
54
55 #undef EXTERNALPICTURE
56
57
58 #endif