summaryrefslogtreecommitdiff
path: root/plugins/gtkui/converter.h
blob: d9cb3eed3876d6b7c9daeb4365dbd2dc8e2fe0fa (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
    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.
*/
#ifndef __CONVERTER_H
#define __CONVERTER_H

#include <stdint.h>
#include "../../deadbeef.h"

enum {
    DDB_ENCODER_METHOD_PIPE = 0,
    DDB_ENCODER_METHOD_FILE = 1,
};

enum {
    DDB_ENCODER_FMT_8BIT = 0x1,
    DDB_ENCODER_FMT_16BIT = 0x2,
    DDB_ENCODER_FMT_24BIT = 0x4,
    DDB_ENCODER_FMT_32BIT = 0x8,
    DDB_ENCODER_FMT_32BITFLOAT = 0x10,
};

typedef struct ddb_encoder_preset_s {
    char *title;
    char *fname;
    char *encoder;
    int method; // pipe or file
    uint32_t formats; // combination of supported flags (FMT_*)
    struct ddb_encoder_preset_s *next;
} ddb_encoder_preset_t;

typedef struct ddb_dsp_preset_s {
    char *title;
    DB_dsp_instance_t *chain;
    struct ddb_dsp_preset_s *next;
} ddb_dsp_preset_t;

ddb_encoder_preset_t *
ddb_encoder_preset_alloc (void);

void
ddb_encoder_preset_free (ddb_encoder_preset_t *p);

ddb_encoder_preset_t *
ddb_encoder_preset_load (const char *fname);

// @return -1 on path/write error, -2 if file already exists
int
ddb_encoder_preset_save (ddb_encoder_preset_t *p, int overwrite);

ddb_dsp_preset_t *
ddb_dsp_preset_alloc (void);

void
ddb_dsp_preset_free (ddb_dsp_preset_t *p);

ddb_dsp_preset_t *
ddb_dsp_preset_load (const char *fname);

// @return -1 on path/write error, -2 if file already exists
int
ddb_dsp_preset_save (ddb_dsp_preset_t *p, int overwrite);


// gtk stuff
void
converter_show (void);

#endif