annotate src/cdaudio-ng/cdaudio-ng.c @ 1510:3a252050736c

replace tuple_formatter_process_string() with tuple_formatter_make_title_string() except that for streamings.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Tue, 21 Aug 2007 17:11:59 +0900
parents a99d8f3b3e7c
children 349cae04e455
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1508
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
1 /*
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
2 * Audacious CD Digital Audio plugin
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
3 *
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
4 * Copyright (c) 2007 Calin Crisan <ccrisan@gmail.com>
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
5 *
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
6 * This program is free software; you can redistribute it and/or modify
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
7 * it under the terms of the GNU General Public License as published by
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
8 * the Free Software Foundation; under version 3 of the License.
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
9 *
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
10 * This program is distributed in the hope that it will be useful,
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
13 * GNU General Public License for more details.
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
14 *
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
15 * You should have received a copy of the GNU General Public License
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
16 * along with this program. If not, see <http://www.gnu.org/licenses>.
a99d8f3b3e7c Fixed some dos/windows eols
Calin Crisan ccrisan@gmail.com
parents: 1490
diff changeset
17 */
1490
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
18
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
19
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
20 #include <string.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
21 #include <stdlib.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
22 #include <unistd.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
23 #include <errno.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
24 #include <libgen.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
25
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
26 #include <cdio/cdio.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
27 #include <cdio/cdtext.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
28 #include <cdio/track.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
29 #include <cdio/cdda.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
30 #include <cdio/audio.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
31 #include <cdio/sector.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
32 #include <cdio/cd_types.h>
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
33 #include <cddb/cddb.h>
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
34
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
35 #include <glib.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
36
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
37 #include <audacious/i18n.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
38 #include <audacious/configdb.h>
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
39 #include <audacious/plugin.h>
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
40 #include <audacious/util.h>
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
41 #include <audacious/output.h>
1490
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
42 #include <audacious/ui_plugin_menu.h>
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
43 #include <audacious/playlist.h>
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
44 #include "config.h"
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
45
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
46 #include "cdaudio-ng.h"
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
47 #include "configure.h"
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
48
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
49
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
50 static int firsttrackno = -1;
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
51 static int lasttrackno = -1;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
52 static CdIo_t *pcdio = NULL;
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
53 static trackinfo_t *trackinfo = NULL;
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
54
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
55 static gboolean use_dae = TRUE;
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
56 static gboolean use_cdtext = TRUE;
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
57 static gboolean use_cddb = TRUE;
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
58 static char device[DEF_STRING_LEN];
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
59 static int limitspeed = 1;
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
60 static gboolean is_paused = FALSE;
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
61 static int playing_track = -1;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
62 static dae_params_t *pdae_params = NULL;
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
63 static gboolean debug = FALSE;
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
64 static char cddb_server[DEF_STRING_LEN];
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
65 static int cddb_port;
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
66 static InputPlayback *pglobalinputplayback = NULL;
1490
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
67 static GtkWidget *main_menu_item, *playlist_menu_item;
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
68
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
69 static void cdaudio_init();
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
70 static void cdaudio_about();
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
71 static void cdaudio_configure();
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
72 static gint cdaudio_is_our_file(gchar *filename);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
73 static GList *cdaudio_scan_dir(gchar *dirname);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
74 static void cdaudio_play_file(InputPlayback *pinputplayback);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
75 static void cdaudio_stop(InputPlayback *pinputplayback);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
76 static void cdaudio_pause(InputPlayback *pinputplayback, gshort paused);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
77 static void cdaudio_seek(InputPlayback *pinputplayback, gint time);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
78 static gint cdaudio_get_time(InputPlayback *pinputplayback);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
79 static gint cdaudio_get_volume(gint *l, gint *r);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
80 static gint cdaudio_set_volume(gint l, gint r);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
81 static void cdaudio_cleanup();
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
82 static void cdaudio_get_song_info(gchar *filename, gchar **title, gint *length);
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
83 static Tuple *cdaudio_get_song_tuple(gchar *filename);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
84
1490
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
85 static void menu_click();
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
86 static Tuple *create_tuple_from_trackinfo(char *filename);
1349
ab387ad5b88e Converted to new threading model
Calin Crisan ccrisan@gmail.com
parents: 1341
diff changeset
87 static void dae_play_loop(dae_params_t *pdae_params);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
88 static int calculate_track_length(int startlsn, int endlsn);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
89 static int find_trackno_from_filename(char *filename);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
90 static void cleanup_on_error();
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
91
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
92
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
93 static InputPlugin inputplugin = {
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
94 NULL,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
95 NULL,
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
96 "CD Audio Plugin NG",
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
97 cdaudio_init,
1377
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
98 cdaudio_about,
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
99 cdaudio_configure,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
100 cdaudio_is_our_file,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
101 cdaudio_scan_dir,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
102 cdaudio_play_file,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
103 cdaudio_stop,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
104 cdaudio_pause,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
105 cdaudio_seek,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
106 NULL,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
107 cdaudio_get_time,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
108 cdaudio_get_volume,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
109 cdaudio_set_volume,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
110 cdaudio_cleanup,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
111 NULL,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
112 NULL,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
113 NULL,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
114 NULL,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
115 cdaudio_get_song_info,
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
116 NULL,
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
117 NULL,
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
118 cdaudio_get_song_tuple
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
119 };
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
120
1098
334afe46961c [svn] - cdaudio-ng (aka Zither's CD Audio Plugin): convert to plugin API v2
nenolod
parents: 1048
diff changeset
121 InputPlugin *cdaudio_iplist[] = { &inputplugin, NULL };
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
122
1395
761e17b23e0c added Discovery plugin type
Cristi Magherusan <majeru@atheme-project.org>
parents: 1389
diff changeset
123 DECLARE_PLUGIN(cdaudio, NULL, NULL, cdaudio_iplist, NULL, NULL, NULL, NULL, NULL);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
124
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
125
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
126 void cdaudio_init()
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
127 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
128 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
129 printf("cdaudio-ng: cdaudio_init()\n");
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
130
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
131 if (!cdio_init()) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
132 fprintf(stderr, "cdaudio-ng: failed to initialize cdio subsystem\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
133 cleanup_on_error();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
134 return;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
135 }
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
136
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
137 libcddb_init();
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
138
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
139 ConfigDb *db = bmp_cfg_db_open();
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
140 gchar *string = NULL;
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
141
1339
83cbc6968a0b Set DAE the default and non-optional play method; Configuring the plugin no longer stops the playback;
Calin Crisan ccrisan@gmail.com
parents: 1314
diff changeset
142 /*
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
143 if (!bmp_cfg_db_get_bool(db, "CDDA", "use_dae", &use_dae))
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
144 use_dae = TRUE;
1339
83cbc6968a0b Set DAE the default and non-optional play method; Configuring the plugin no longer stops the playback;
Calin Crisan ccrisan@gmail.com
parents: 1314
diff changeset
145 */
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
146 if (!bmp_cfg_db_get_int(db, "CDDA", "limitspeed", &limitspeed))
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
147 limitspeed = 1;
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
148 if (!bmp_cfg_db_get_bool(db, "CDDA", "use_cdtext", &use_cdtext))
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
149 use_cdtext = TRUE;
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
150 if (!bmp_cfg_db_get_bool(db, "CDDA", "use_cddb", &use_cddb))
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
151 use_cddb = TRUE;
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
152 if (!bmp_cfg_db_get_string(db, "CDDA", "cddbserver", &string))
1340
7bb2692b3be9 Setting a sane default configuration for the plugin
Calin Crisan ccrisan@gmail.com
parents: 1339
diff changeset
153 strcpy(cddb_server, CDDA_DEFAULT_CDDB_SERVER);
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
154 else
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
155 strcpy(cddb_server, string);
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
156 if (!bmp_cfg_db_get_int(db, "CDDA", "cddbport", &cddb_port))
1340
7bb2692b3be9 Setting a sane default configuration for the plugin
Calin Crisan ccrisan@gmail.com
parents: 1339
diff changeset
157 cddb_port = CDDA_DEFAULT_CDDB_PORT;
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
158 if (!bmp_cfg_db_get_string(db, "CDDA", "device", &string))
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
159 strcpy(device, "");
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
160 else
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
161 strcpy(device, string);
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
162 if (!bmp_cfg_db_get_bool(db, "CDDA", "debug", &debug))
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
163 debug = FALSE;
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
164
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
165 bmp_cfg_db_close(db);
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
166
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
167 if (debug)
1339
83cbc6968a0b Set DAE the default and non-optional play method; Configuring the plugin no longer stops the playback;
Calin Crisan ccrisan@gmail.com
parents: 1314
diff changeset
168 printf("cdaudio-ng: configuration: "/*use_dae = %d, */"limitspeed = %d, use_cdtext = %d, use_cddb = %d, cddbserver = \"%s\", cddbport = %d, device = \"%s\", debug = %d\n", /*use_dae, */limitspeed, use_cdtext, use_cddb, cddb_server, cddb_port, device, debug);
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
169
1339
83cbc6968a0b Set DAE the default and non-optional play method; Configuring the plugin no longer stops the playback;
Calin Crisan ccrisan@gmail.com
parents: 1314
diff changeset
170 configure_set_variables(/*&use_dae, */&limitspeed, &use_cdtext, &use_cddb, device, &debug, cddb_server, &cddb_port);
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
171 configure_create_gui();
1490
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
172
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
173 main_menu_item = gtk_image_menu_item_new_with_label(MENU_ITEM_TEXT);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
174 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(main_menu_item), gtk_image_new_from_stock(GTK_STOCK_CDROM, GTK_ICON_SIZE_MENU));
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
175 gtk_widget_show(main_menu_item);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
176 audacious_menu_plugin_item_add(AUDACIOUS_MENU_MAIN, main_menu_item);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
177 g_signal_connect(G_OBJECT(main_menu_item), "button_press_event", G_CALLBACK(menu_click), NULL);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
178
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
179 playlist_menu_item = gtk_image_menu_item_new_with_label(MENU_ITEM_TEXT);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
180 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(playlist_menu_item), gtk_image_new_from_stock(GTK_STOCK_CDROM, GTK_ICON_SIZE_MENU));
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
181 gtk_widget_show(playlist_menu_item);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
182 audacious_menu_plugin_item_add(AUDACIOUS_MENU_PLAYLIST, playlist_menu_item);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
183 g_signal_connect(G_OBJECT(playlist_menu_item), "button_press_event", G_CALLBACK(menu_click), NULL);
1482
3b2a302fe43f Register cdda:// with uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents: 1473
diff changeset
184
3b2a302fe43f Register cdda:// with uri_set_plugin
Christian Birchinger <joker@netswarm.net>
parents: 1473
diff changeset
185 uri_set_plugin("cdda://", &inputplugin);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
186 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
187
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
188 void cdaudio_about()
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
189 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
190 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
191 printf("cdaudio-ng: cdaudio_about()\n");
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
192
1377
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
193 static GtkWidget* about_window = NULL;
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
194
1377
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
195 if (about_window) {
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
196 gdk_window_raise(about_window->window);
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
197 }
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
198
1377
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
199 char about_text[1000];
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
200 sprintf(about_text, _("Copyright (c) 2007, by Calin Crisan <ccrisan@gmail.com> and The Audacious Team.\n\n"
1377
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
201 "Many thanks to libcdio developers <http://www.gnu.org/software/libcdio/>\n\tand to libcddb developers <http://libcddb.sourceforge.net/>.\n\n"
1378
7a7f446bc87c Some changes to the about box
Calin Crisan ccrisan@gmail.com
parents: 1377
diff changeset
202 "Also thank you Tony Vroon for mentoring & guiding me.\n\n"
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
203 "This was a Google Summer of Code 2007 project."));
1377
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
204
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
205 about_window = xmms_show_message(_("About CD Audio Plugin NG"), about_text, _("OK"), FALSE, NULL, NULL);
1377
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
206
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
207 g_signal_connect(G_OBJECT(about_window), "destroy",
4eb2bacab83a Added an information box to cdaudio-ng
Calin Crisan ccrisan@gmail.com
parents: 1349
diff changeset
208 G_CALLBACK(gtk_widget_destroyed), &about_window);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
209 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
210
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
211 void cdaudio_configure()
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
212 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
213 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
214 printf("cdaudio-ng: cdaudio_configure()\n");
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
215
1339
83cbc6968a0b Set DAE the default and non-optional play method; Configuring the plugin no longer stops the playback;
Calin Crisan ccrisan@gmail.com
parents: 1314
diff changeset
216 /*
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
217 if (playing_track != -1)
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
218 playback_stop();
1339
83cbc6968a0b Set DAE the default and non-optional play method; Configuring the plugin no longer stops the playback;
Calin Crisan ccrisan@gmail.com
parents: 1314
diff changeset
219 */
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
220
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
221 configure_show_gui();
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
222 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
223
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
224 gint cdaudio_is_our_file(gchar *filename)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
225 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
226 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
227 printf("cdaudio-ng: cdaudio_is_our_file(\"%s\")\n", filename);
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
228
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
229 if ((filename != NULL) && strlen(filename) > 4 && (!strcasecmp(filename + strlen(filename) - 4, ".cda"))) {
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
230 /* no CD information yet */
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
231 if (pcdio == NULL) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
232 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
233 printf("cdaudio-ng: no cd information, scanning\n");
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
234 cdaudio_scan_dir(CDDA_DEFAULT);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
235 }
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
236
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
237 /* reload the cd information if the media has changed */
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
238 if (cdio_get_media_changed(pcdio) && pcdio != NULL) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
239 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
240 printf("cdaudio-ng: cd changed, rescanning\n");
1389
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
241 if (cdaudio_scan_dir(CDDA_DEFAULT) == NULL)
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
242 pcdio = NULL;
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
243 }
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
244
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
245 if (pcdio == NULL) {
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
246 if (debug)
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
247 printf("cdaudio-ng: \"%s\" is not our file\n", filename);
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
248 return FALSE;
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
249 }
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
250
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
251 /* check if the requested track actually exists on the current audio cd */
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
252 int trackno = find_trackno_from_filename(filename);
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
253 if (trackno < firsttrackno || trackno > lasttrackno) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
254 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
255 printf("cdaudio-ng: \"%s\" is not our file\n", filename);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
256 return FALSE;
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
257 }
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
258
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
259 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
260 printf("cdaudio-ng: \"%s\" is our file\n", filename);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
261 return TRUE;
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
262 }
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
263 else {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
264 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
265 printf("cdaudio-ng: \"%s\" is not our file\n", filename);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
266 return FALSE;
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
267 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
268 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
269
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
270 GList *cdaudio_scan_dir(gchar *dirname)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
271 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
272 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
273 printf("cdaudio-ng: cdaudio_scan_dir(\"%s\")\n", dirname);
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
274
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
275 /* if the given dirname does not belong to us, we return NULL */
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
276 if (strstr(dirname, CDDA_DEFAULT) == NULL) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
277 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
278 printf("cdaudio-ng: \"%s\" directory does not belong to us\n", dirname);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
279 return NULL;
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
280 }
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
281
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
282 /* find an available, audio capable, cd drive */
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
283 if (device != NULL && strlen(device) > 0) {
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
284 pcdio = cdio_open(device, DRIVER_UNKNOWN);
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
285 if (pcdio == NULL) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
286 fprintf(stderr, "cdaudio-ng: failed to open cd device \"%s\"\n", device);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
287 return NULL;
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
288 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
289 }
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
290 else {
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
291 char **ppcd_drives = cdio_get_devices_with_cap(NULL, CDIO_FS_AUDIO, false);
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
292 pcdio = NULL;
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
293 if (ppcd_drives != NULL && *ppcd_drives != NULL) { /* we have at least one audio capable cd drive */
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
294 pcdio = cdio_open(*ppcd_drives, DRIVER_UNKNOWN);
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
295 if (pcdio == NULL) {
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
296 fprintf(stderr, "cdaudio-ng: failed to open cd\n");
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
297 cleanup_on_error();
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
298 return NULL;
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
299 }
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
300 if (debug)
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
301 printf("cdaudio-ng: found cd drive \"%s\" with audio capable media\n", *ppcd_drives);
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
302 }
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
303 else {
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
304 fprintf(stderr, "cdaudio-ng: unable find or access a cdda capable drive\n");
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
305 cleanup_on_error();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
306 return NULL;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
307 }
1389
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
308 if (ppcd_drives != NULL && *ppcd_drives != NULL)
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
309 cdio_free_device_list(ppcd_drives);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
310 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
311
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
312 /* limit read speed */
1339
83cbc6968a0b Set DAE the default and non-optional play method; Configuring the plugin no longer stops the playback;
Calin Crisan ccrisan@gmail.com
parents: 1314
diff changeset
313 if (limitspeed > 0 && use_dae) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
314 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
315 printf("cdaudio-ng: setting drive speed limit to %dx\n", limitspeed);
1194
bf57aa1dc503 Added drive speed limit
calin.crisan@ldev-006
parents: 1193
diff changeset
316 if (cdio_set_speed(pcdio, limitspeed) != DRIVER_OP_SUCCESS)
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
317 fprintf(stderr, "cdaudio-ng: failed to set drive speed to %dx\n", limitspeed);
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
318 }
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
319
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
320 /* get general track initialization */
1194
bf57aa1dc503 Added drive speed limit
calin.crisan@ldev-006
parents: 1193
diff changeset
321 cdrom_drive_t *pcdrom_drive = cdio_cddap_identify_cdio(pcdio, 1, NULL); // todo : check return / NULL
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
322 firsttrackno = cdio_get_first_track_num(pcdrom_drive->p_cdio);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
323 lasttrackno = cdio_get_last_track_num(pcdrom_drive->p_cdio);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
324 if (firsttrackno == CDIO_INVALID_TRACK || lasttrackno == CDIO_INVALID_TRACK) {
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
325 fprintf(stderr, "cdaudio-ng: failed to retrieve first/last track number\n");
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
326 cleanup_on_error();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
327 return NULL;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
328 }
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
329 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
330 printf("cdaudio-ng: first track is %d and last track is %d\n", firsttrackno, lasttrackno);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
331
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
332 if (trackinfo != NULL) /* if a previously allocated track information exists, we free it */
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
333 free(trackinfo);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
334 trackinfo = (trackinfo_t *) malloc(sizeof(trackinfo_t) * (lasttrackno + 1));
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
335 int trackno;
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
336
1340
7bb2692b3be9 Setting a sane default configuration for the plugin
Calin Crisan ccrisan@gmail.com
parents: 1339
diff changeset
337 trackinfo[0].startlsn = cdio_get_track_lsn(pcdrom_drive->p_cdio, 0);
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
338 trackinfo[0].endlsn = cdio_get_track_last_lsn(pcdrom_drive->p_cdio, CDIO_CDROM_LEADOUT_TRACK);
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
339 strcpy(trackinfo[0].performer, "");
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
340 strcpy(trackinfo[0].name, "");
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
341 strcpy(trackinfo[0].genre, "");
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
342 for (trackno = firsttrackno; trackno <= lasttrackno; trackno++) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
343 trackinfo[trackno].startlsn = cdio_get_track_lsn(pcdrom_drive->p_cdio, trackno);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
344 trackinfo[trackno].endlsn = cdio_get_track_last_lsn(pcdrom_drive->p_cdio, trackno);
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
345 strcpy(trackinfo[trackno].performer, "");
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
346 strcpy(trackinfo[trackno].name, "");
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
347 strcpy(trackinfo[trackno].genre, "");
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
348
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
349 if (trackinfo[trackno].startlsn == CDIO_INVALID_LSN || trackinfo[trackno].endlsn == CDIO_INVALID_LSN) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
350 fprintf(stderr, "cdaudio-ng: failed to retrieve stard/end lsn for track %d\n", trackno);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
351 cleanup_on_error();
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
352 return NULL;
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
353 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
354 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
355
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
356 /* initialize de cddb subsystem */
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
357 cddb_conn_t *pcddb_conn = NULL;
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
358 cddb_disc_t *pcddb_disc = NULL;
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
359 cddb_track_t *pcddb_track = NULL;
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
360
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
361 if (use_cddb) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
362 pcddb_conn = cddb_new();
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
363 if (pcddb_conn == NULL)
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
364 fprintf(stderr, "cdaudio-ng: failed to create the cddb connection\n");
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
365 else {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
366 if (debug)
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
367 printf("cdaudio-ng: getting cddb info\n");
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
368
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
369 cddb_set_server_name(pcddb_conn, cddb_server);
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
370 cddb_set_server_port(pcddb_conn, cddb_port);
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
371
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
372 pcddb_disc = cddb_disc_new();
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
373 for (trackno = firsttrackno; trackno <= lasttrackno; trackno++) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
374 pcddb_track = cddb_track_new();
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
375 cddb_track_set_frame_offset(pcddb_track, trackinfo[trackno].startlsn);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
376 cddb_disc_add_track(pcddb_disc, pcddb_track);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
377 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
378
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
379 msf_t startmsf, endmsf;
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
380 cdio_get_track_msf(pcdio, 1, &startmsf);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
381 cdio_get_track_msf(pcdio, CDIO_CDROM_LEADOUT_TRACK, &endmsf);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
382 cddb_disc_set_length(pcddb_disc, cdio_audio_get_msf_seconds(&endmsf) - cdio_audio_get_msf_seconds(&startmsf));
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
383
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
384 int matches;
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
385 if ((matches = cddb_query(pcddb_conn, pcddb_disc)) == -1) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
386 fprintf(stderr, "cdaudio-ng: failed to query the cddb server: %s\n", cddb_error_str(cddb_errno(pcddb_conn)));
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
387 cddb_disc_destroy(pcddb_disc);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
388 pcddb_disc = NULL;
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
389 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
390 else {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
391 if (debug)
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
392 printf("cdaudio-ng: discid = %X, category = \"%s\"\n", cddb_disc_get_discid(pcddb_disc), cddb_disc_get_category_str(pcddb_disc));
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
393
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
394 cddb_read(pcddb_conn, pcddb_disc);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
395 if (cddb_errno(pcddb_conn) != CDDB_ERR_OK) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
396 fprintf(stderr, "cdaudio-ng: failed to read the cddb info: %s\n", cddb_error_str(cddb_errno(pcddb_conn)));
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
397 cddb_disc_destroy(pcddb_disc);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
398 pcddb_disc = NULL;
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
399 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
400 else {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
401 if (debug)
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
402 printf("cdaudio-ng: we have got the cddb info\n");
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
403
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
404 strcpy(trackinfo[0].performer, cddb_disc_get_artist(pcddb_disc));
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
405 strcpy(trackinfo[0].name, cddb_disc_get_title(pcddb_disc));
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
406 strcpy(trackinfo[0].genre, cddb_disc_get_genre(pcddb_disc));
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
407 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
408 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
409 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
410 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
411
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
412 /* adding trackinfo[0] information (the disc) */
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
413 if (use_cdtext) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
414 if (debug)
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
415 printf("cdaudio-ng: getting cd-text information for disc\n");
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
416 cdtext_t *pcdtext = cdio_get_cdtext(pcdrom_drive->p_cdio, 0);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
417 if (pcdtext == NULL || pcdtext->field[CDTEXT_TITLE] == NULL) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
418 if (debug)
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
419 printf("cdaudio-ng: no cd-text available for disc\n");
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
420 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
421 else {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
422 strcpy(trackinfo[0].performer, pcdtext->field[CDTEXT_PERFORMER] != NULL ? pcdtext->field[CDTEXT_PERFORMER] : "");
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
423 strcpy(trackinfo[0].name, pcdtext->field[CDTEXT_TITLE] != NULL ? pcdtext->field[CDTEXT_TITLE] : "");
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
424 strcpy(trackinfo[0].genre, pcdtext->field[CDTEXT_GENRE] != NULL ? pcdtext->field[CDTEXT_GENRE] : "");
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
425 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
426 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
427
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
428 /* add track "file" names to the list */
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
429 GList *list = NULL;
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
430 for (trackno = firsttrackno; trackno <= lasttrackno; trackno++) {
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
431 list = g_list_append(list, g_strdup_printf("track%02u.cda", trackno));
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
432 cdtext_t *pcdtext = NULL;
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
433 if (use_cdtext) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
434 if (debug)
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
435 printf("cdaudio-ng: getting cd-text information for track %d\n", trackno);
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
436 pcdtext = cdio_get_cdtext(pcdrom_drive->p_cdio, trackno);
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
437 if (pcdtext == NULL || pcdtext->field[CDTEXT_PERFORMER] == NULL) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
438 if (debug)
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
439 printf("cdaudio-ng: no cd-text available for track %d\n", trackno);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
440 pcdtext = NULL;
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
441 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
442 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
443
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
444 if (pcdtext != NULL) {
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
445 strcpy(trackinfo[trackno].performer, pcdtext->field[CDTEXT_PERFORMER] != NULL ? pcdtext->field[CDTEXT_PERFORMER] : "");
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
446 strcpy(trackinfo[trackno].name, pcdtext->field[CDTEXT_TITLE] != NULL ? pcdtext->field[CDTEXT_TITLE] : "");
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
447 strcpy(trackinfo[trackno].genre, pcdtext->field[CDTEXT_GENRE] != NULL ? pcdtext->field[CDTEXT_GENRE] : "");
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
448 }
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
449 else
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
450 if (pcddb_disc != NULL) {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
451 cddb_track_t *pcddb_track = cddb_disc_get_track(pcddb_disc, trackno - 1);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
452 strcpy(trackinfo[trackno].performer, cddb_track_get_artist(pcddb_track));
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
453 strcpy(trackinfo[trackno].name, cddb_track_get_title(pcddb_track));
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
454 strcpy(trackinfo[trackno].genre, cddb_disc_get_genre(pcddb_disc));
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
455 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
456 else {
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
457 strcpy(trackinfo[trackno].performer, "");
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
458 strcpy(trackinfo[trackno].name, "");
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
459 strcpy(trackinfo[trackno].genre, "");
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
460 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
461
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
462 if (strlen(trackinfo[trackno].name) == 0)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
463 sprintf(trackinfo[trackno].name, "CD Audio Track %02u", trackno);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
464
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
465 }
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
466
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
467 if (debug) {
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
468 printf("cdaudio-ng: disc has : performer = \"%s\", name = \"%s\", genre = \"%s\"\n",
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
469 trackinfo[0].performer, trackinfo[0].name, trackinfo[0].genre);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
470 for (trackno = firsttrackno; trackno <= lasttrackno; trackno++) {
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
471 printf("cdaudio-ng: track %d has : performer = \"%s\", name = \"%s\", genre = \"%s\", startlsn = %d, endlsn = %d\n",
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
472 trackno, trackinfo[trackno].performer, trackinfo[trackno].name, trackinfo[trackno].genre, trackinfo[trackno].startlsn, trackinfo[trackno].endlsn);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
473 }
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
474 }
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
475
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
476 if (pcddb_disc != NULL)
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
477 cddb_disc_destroy(pcddb_disc);
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
478 if (pcddb_conn != NULL)
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
479 cddb_destroy(pcddb_conn);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
480
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
481 return list;
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
482 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
483
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
484 void cdaudio_play_file(InputPlayback *pinputplayback)
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
485 {
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
486 Tuple *tuple;
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
487 char *title;
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
488
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
489 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
490 printf("cdaudio-ng: cdaudio_play_file(\"%s\")\n", pinputplayback->filename);
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
491
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
492 pglobalinputplayback = pinputplayback;
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
493
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
494 if (trackinfo == NULL) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
495 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
496 printf("cdaudio-ng: no cd information, scanning\n");
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
497 cdaudio_scan_dir(CDDA_DEFAULT);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
498 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
499
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
500 if (cdio_get_media_changed(pcdio)) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
501 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
502 printf("cdaudio-ng: cd changed, rescanning\n");
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
503 cdaudio_scan_dir(CDDA_DEFAULT);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
504 }
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
505
1389
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
506 if (trackinfo == NULL) {
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
507 if (debug)
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
508 printf("cdaudio-ng: no cd information can be retrieved, aborting\n");
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
509 pinputplayback->playing = FALSE;
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
510 return;
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
511 }
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
512
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
513 int trackno = find_trackno_from_filename(pinputplayback->filename);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
514 if (trackno < firsttrackno || trackno > lasttrackno) {
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
515 fprintf(stderr, "cdaudio-ng: trackno %d is out of range [%d..%d]\n", trackno, firsttrackno, lasttrackno);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
516 cleanup_on_error();
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
517 return;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
518 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
519
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
520 pinputplayback->playing = TRUE;
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
521 playing_track = trackno;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
522 is_paused = FALSE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
523
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
524 tuple = create_tuple_from_trackinfo(pinputplayback->filename);
1510
3a252050736c replace tuple_formatter_process_string() with tuple_formatter_make_title_string() except that for streamings.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1508
diff changeset
525 title = tuple_formatter_make_title_string(tuple, get_gentitle_format());
1387
20c6caad7e03 Fixed the play/stop indication; added a temporary workaround for including the last 3 seconds in playback
Calin Crisan ccrisan@gmail.com
parents: 1382
diff changeset
526
1388
eb6c11de9f33 Changed the cdda bitrate to 1411kbit/s in respect to the Red Book specifications
Calin Crisan ccrisan@gmail.com
parents: 1387
diff changeset
527 inputplugin.set_info(title, calculate_track_length(trackinfo[trackno].startlsn, trackinfo[trackno].endlsn), 1411200, 44100, 2);
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
528 free(title); title = NULL;
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
529 tuple_free(tuple); tuple = NULL;
1387
20c6caad7e03 Fixed the play/stop indication; added a temporary workaround for including the last 3 seconds in playback
Calin Crisan ccrisan@gmail.com
parents: 1382
diff changeset
530
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
531 if (use_dae) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
532 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
533 printf("cdaudio-ng: using digital audio extraction\n");
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
534
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
535 if (pdae_params != NULL) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
536 fprintf(stderr, "cdaudio-ng: dae playback seems to be already started\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
537 return;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
538 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
539
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
540 if (pinputplayback->output->open_audio(FMT_S16_LE, 44100, 2) == 0) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
541 fprintf(stderr, "cdaudio-ng: failed open audio output\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
542 cleanup_on_error();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
543 return;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
544 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
545
1349
ab387ad5b88e Converted to new threading model
Calin Crisan ccrisan@gmail.com
parents: 1341
diff changeset
546 /*
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
547 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
548 printf("cdaudio-ng: starting dae thread...\n");
1349
ab387ad5b88e Converted to new threading model
Calin Crisan ccrisan@gmail.com
parents: 1341
diff changeset
549 */
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
550 pdae_params = (dae_params_t *) malloc(sizeof(dae_params_t));
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
551 pdae_params->startlsn = trackinfo[trackno].startlsn;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
552 pdae_params->endlsn = trackinfo[trackno].endlsn;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
553 pdae_params->pplayback = pinputplayback;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
554 pdae_params->seektime = -1;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
555 pdae_params->currlsn = trackinfo[trackno].startlsn;
1349
ab387ad5b88e Converted to new threading model
Calin Crisan ccrisan@gmail.com
parents: 1341
diff changeset
556 pdae_params->thread = g_thread_self();
1447
195b5657303e updated input plugins to use set_pb_ready to signal to the core that they're ready for playback
Giacomo Lozito <james@develia.org>
parents: 1395
diff changeset
557 pinputplayback->set_pb_ready(pinputplayback);
1349
ab387ad5b88e Converted to new threading model
Calin Crisan ccrisan@gmail.com
parents: 1341
diff changeset
558 dae_play_loop(pdae_params);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
559 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
560 else {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
561 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
562 printf("cdaudio-ng: not using digital audio extraction\n");
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
563
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
564 msf_t startmsf, endmsf;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
565 cdio_lsn_to_msf(trackinfo[trackno].startlsn, &startmsf);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
566 cdio_lsn_to_msf(trackinfo[trackno].endlsn, &endmsf);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
567 if (cdio_audio_play_msf(pcdio, &startmsf, &endmsf) != DRIVER_OP_SUCCESS) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
568 fprintf(stderr, "cdaudio-ng: failed to play analog audio cd\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
569 cleanup_on_error();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
570 return;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
571 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
572 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
573 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
574
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
575 void cdaudio_stop(InputPlayback *pinputplayback)
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
576 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
577 if (debug)
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
578 printf("cdaudio-ng: cdaudio_stop(\"%s\")\n", pinputplayback != NULL ? pinputplayback->filename : "N/A");
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
579
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
580 pglobalinputplayback = NULL;
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
581
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
582 if (playing_track == -1)
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
583 return;
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
584
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
585 if (pinputplayback != NULL)
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
586 pinputplayback->playing = FALSE;
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
587 playing_track = -1;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
588 is_paused = FALSE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
589
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
590 if (use_dae) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
591 if (pdae_params != NULL) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
592 g_thread_join(pdae_params->thread);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
593 free(pdae_params);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
594 pdae_params = NULL;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
595 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
596 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
597 else {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
598 if (cdio_audio_stop(pcdio) != DRIVER_OP_SUCCESS) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
599 fprintf(stderr, "cdaudio-ng: failed to stop analog cd\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
600 return;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
601 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
602 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
603 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
604
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
605 void cdaudio_pause(InputPlayback *pinputplayback, gshort paused)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
606 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
607 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
608 printf("cdaudio-ng: cdaudio_pause(\"%s\", %d)\n", pinputplayback->filename, paused);
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
609
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
610 if (!is_paused) {
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
611 is_paused = TRUE;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
612 if (!use_dae)
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
613 if (cdio_audio_pause(pcdio) != DRIVER_OP_SUCCESS) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
614 fprintf(stderr, "cdaudio-ng: failed to pause analog cd\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
615 cleanup_on_error();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
616 return;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
617 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
618 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
619 else {
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
620 is_paused = FALSE;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
621 if (!use_dae)
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
622 if (cdio_audio_resume(pcdio) != DRIVER_OP_SUCCESS) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
623 fprintf(stderr, "cdaudio-ng: failed to resume analog cd\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
624 cleanup_on_error();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
625 return;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
626 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
627 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
628 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
629
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
630 void cdaudio_seek(InputPlayback *pinputplayback, gint time)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
631 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
632 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
633 printf("cdaudio-ng: cdaudio_seek(\"%s\", %d)\n", pinputplayback->filename, time);
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
634
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
635 if (playing_track == -1)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
636 return;
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
637
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
638 if (use_dae) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
639 if (pdae_params != NULL) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
640 pdae_params->seektime = time * 1000;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
641 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
642 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
643 else {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
644 int newstartlsn = trackinfo[playing_track].startlsn + time * 75;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
645 msf_t startmsf, endmsf;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
646 cdio_lsn_to_msf(newstartlsn, &startmsf);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
647 cdio_lsn_to_msf(trackinfo[playing_track].endlsn, &endmsf);
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
648
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
649 if (cdio_audio_play_msf(pcdio, &startmsf, &endmsf) != DRIVER_OP_SUCCESS) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
650 fprintf(stderr, "cdaudio-ng: failed to play analog cd\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
651 cleanup_on_error();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
652 return;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
653 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
654 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
655 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
656
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
657 gint cdaudio_get_time(InputPlayback *pinputplayback)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
658 {
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
659 //printf("cdaudio-ng: cdaudio_get_time(\"%s\")\n", pinputplayback->filename); // annoying!
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
660
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
661 if (playing_track == -1)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
662 return -1;
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
663
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
664 if (!use_dae) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
665 cdio_subchannel_t subchannel;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
666 if (cdio_audio_read_subchannel(pcdio, &subchannel) != DRIVER_OP_SUCCESS) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
667 fprintf(stderr, "cdaudio-ng: failed to read analog cd subchannel\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
668 cleanup_on_error();
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
669 return 0;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
670 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
671 int currlsn = cdio_msf_to_lsn(&subchannel.abs_addr);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
672
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
673 /* check to see if we have reached the end of the song */
1314
b93270e2b7e4 Continuous playing in DAE mode works again
Calin Crisan ccrisan@gmail.com
parents: 1313
diff changeset
674 if (currlsn == trackinfo[playing_track].endlsn)
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
675 return -1;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
676
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
677 return calculate_track_length(trackinfo[playing_track].startlsn, currlsn);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
678 }
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
679 else {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
680 if (pdae_params != NULL)
1314
b93270e2b7e4 Continuous playing in DAE mode works again
Calin Crisan ccrisan@gmail.com
parents: 1313
diff changeset
681 if (pdae_params->pplayback->playing)
b93270e2b7e4 Continuous playing in DAE mode works again
Calin Crisan ccrisan@gmail.com
parents: 1313
diff changeset
682 return pinputplayback->output->output_time();
b93270e2b7e4 Continuous playing in DAE mode works again
Calin Crisan ccrisan@gmail.com
parents: 1313
diff changeset
683 else
b93270e2b7e4 Continuous playing in DAE mode works again
Calin Crisan ccrisan@gmail.com
parents: 1313
diff changeset
684 return -1;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
685 else
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
686 return -1;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
687 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
688 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
689
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
690 gint cdaudio_get_volume(gint *l, gint *r)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
691 {
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
692 //printf("cdaudio-ng: cdaudio_get_volume()\n"); // annoying!
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
693
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
694 if (use_dae) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
695 *l = *r = 0;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
696 return FALSE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
697 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
698 else {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
699 cdio_audio_volume_t volume;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
700 if (cdio_audio_get_volume(pcdio, &volume) != DRIVER_OP_SUCCESS) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
701 fprintf(stderr, "cdaudio-ng: failed to retrieve analog cd volume\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
702 cleanup_on_error();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
703 *l = *r = 0;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
704 return FALSE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
705 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
706 *l = volume.level[0];
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
707 *r = volume.level[1];
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
708
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
709 return TRUE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
710 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
711 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
712
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
713 gint cdaudio_set_volume(gint l, gint r)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
714 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
715 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
716 printf("cdaudio-ng: cdaudio_set_volume(%d, %d)\n", l, r);
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
717
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
718 if (use_dae) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
719 return FALSE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
720 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
721 else {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
722 cdio_audio_volume_t volume = {{l, r, 0, 0}};
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
723 if (cdio_audio_set_volume(pcdio, &volume) != DRIVER_OP_SUCCESS) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
724 fprintf(stderr, "cdaudio-ng: failed to set analog cd volume\n");
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
725 cleanup_on_error();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
726 return FALSE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
727 }
1382
28766475ca0a More and more translatable strings... ;-)
Stany HENRY <StrassBoy@gmail.com>
parents: 1378
diff changeset
728
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
729 return TRUE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
730 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
731 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
732
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
733 void cdaudio_cleanup()
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
734 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
735 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
736 printf("cdaudio-ng: cdaudio_cleanup()\n");
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
737
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
738 libcddb_shutdown();
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
739
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
740 if (pcdio!= NULL) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
741 if (playing_track != -1 && !use_dae)
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
742 cdio_audio_stop(pcdio);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
743 cdio_destroy(pcdio);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
744 pcdio = NULL;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
745 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
746 if (trackinfo != NULL) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
747 free(trackinfo);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
748 trackinfo = NULL;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
749 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
750 playing_track = -1;
1282
ced2aa634901 Added cddb support
zither@litestep.network
parents: 1194
diff changeset
751
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
752 // todo: destroy the gui
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
753
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
754 ConfigDb *db = bmp_cfg_db_open();
1339
83cbc6968a0b Set DAE the default and non-optional play method; Configuring the plugin no longer stops the playback;
Calin Crisan ccrisan@gmail.com
parents: 1314
diff changeset
755 /*bmp_cfg_db_set_bool(db, "CDDA", "use_dae", use_dae);*/
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
756 bmp_cfg_db_set_int(db, "CDDA", "limitspeed", limitspeed);
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
757 bmp_cfg_db_set_bool(db, "CDDA", "use_cdtext", use_cdtext);
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
758 bmp_cfg_db_set_bool(db, "CDDA", "use_cddb", use_cddb);
1303
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
759 bmp_cfg_db_set_string(db, "CDDA", "cddbserver", cddb_server);
2a7c9e0b9c0f Added configure options for cddb
zither@litestep.network
parents: 1282
diff changeset
760 bmp_cfg_db_set_int(db, "CDDA", "cddbport", cddb_port);
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
761 bmp_cfg_db_set_string(db, "CDDA", "device", device);
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
762 bmp_cfg_db_set_bool(db, "CDDA", "debug", debug);
1189
af5bd4592100 Added cdaudio-ng.h; added a configure dialog
zither@litestep.network
parents: 1125
diff changeset
763 bmp_cfg_db_close(db);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
764 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
765
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
766 void cdaudio_get_song_info(gchar *filename, gchar **title, gint *length)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
767 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
768 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
769 printf("cdaudio-ng: cdaudio_get_song_info(\"%s\")\n", filename);
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
770
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
771 int trackno = find_trackno_from_filename(filename);
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
772 Tuple *tuple = create_tuple_from_trackinfo(filename);
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
773
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
774 if(tuple) {
1473
eb0913bf54c3 use get_gentitle_format() to get format string so that presets and custom string can coexist.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1466
diff changeset
775 *title = tuple_formatter_process_string(tuple, get_gentitle_format());
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
776 tuple_free(tuple);
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
777 tuple = NULL;
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
778 }
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
779 *length = calculate_track_length(trackinfo[trackno].startlsn, trackinfo[trackno].endlsn);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
780 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
781
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
782 Tuple *cdaudio_get_song_tuple(gchar *filename)
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
783 {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
784 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
785 printf("cdaudio-ng: cdaudio_get_song_tuple(\"%s\")\n", filename);
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
786
1341
4ca99d2be90e Titles are now built using tuples, with the preferred format
Calin Crisan ccrisan@gmail.com
parents: 1340
diff changeset
787 return create_tuple_from_trackinfo(filename);
4ca99d2be90e Titles are now built using tuples, with the preferred format
Calin Crisan ccrisan@gmail.com
parents: 1340
diff changeset
788 }
4ca99d2be90e Titles are now built using tuples, with the preferred format
Calin Crisan ccrisan@gmail.com
parents: 1340
diff changeset
789
4ca99d2be90e Titles are now built using tuples, with the preferred format
Calin Crisan ccrisan@gmail.com
parents: 1340
diff changeset
790
4ca99d2be90e Titles are now built using tuples, with the preferred format
Calin Crisan ccrisan@gmail.com
parents: 1340
diff changeset
791 /* auxiliar functions */
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
792
1490
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
793 void menu_click()
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
794 {
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
795 GList *list, *node;
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
796 gchar *filename;
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
797
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
798 if (!(list = cdaudio_scan_dir(CDDA_DEFAULT))) {
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
799 const gchar *markup =
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
800 N_("<b><big>No playable CD found.</big></b>\n\n"
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
801 "No CD inserted, or inserted CD is not an audio CD.\n");
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
802
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
803 GtkWidget *dialog =
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
804 gtk_message_dialog_new_with_markup(NULL,
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
805 GTK_DIALOG_DESTROY_WITH_PARENT,
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
806 GTK_MESSAGE_ERROR,
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
807 GTK_BUTTONS_OK,
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
808 _(markup));
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
809 gtk_dialog_run(GTK_DIALOG(dialog));
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
810 gtk_widget_destroy(dialog);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
811 return;
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
812 }
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
813
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
814 for (node = list; node; node = g_list_next(node)) {
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
815 filename = g_build_filename(CDDA_DEFAULT, node->data, NULL);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
816 playlist_add(playlist_get_active(), filename);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
817 g_free(filename);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
818 g_free(node->data);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
819 }
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
820
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
821 g_list_free(list);
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
822 }
032053ca08ab Add CD menu entry is now created with the ui_plugin_menu functions
Calin Crisan ccrisan@gmail.com
parents: 1482
diff changeset
823
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
824 Tuple *create_tuple_from_trackinfo(char *filename)
1341
4ca99d2be90e Titles are now built using tuples, with the preferred format
Calin Crisan ccrisan@gmail.com
parents: 1340
diff changeset
825 {
1389
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
826 if (trackinfo == NULL)
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
827 return NULL;
e2754a023ae0 Fixed surprise eject segfault
Calin Crisan ccrisan@gmail.com
parents: 1388
diff changeset
828
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
829 Tuple *tuple = tuple_new_from_filename(filename);
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
830 int trackno = find_trackno_from_filename(filename);
1341
4ca99d2be90e Titles are now built using tuples, with the preferred format
Calin Crisan ccrisan@gmail.com
parents: 1340
diff changeset
831
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
832 if (trackno < firsttrackno || trackno > lasttrackno)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
833 return NULL;
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
834
1466
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
835 if(strlen(trackinfo[trackno].performer)) {
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
836 tuple_associate_string(tuple, "artist", trackinfo[trackno].performer);
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
837 }
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
838 if(strlen(trackinfo[0].name)) {
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
839 tuple_associate_string(tuple, "album", trackinfo[0].name);
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
840 }
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
841 if(strlen(trackinfo[trackno].name)) {
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
842 tuple_associate_string(tuple, "title", trackinfo[trackno].name);
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
843 }
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
844 tuple_associate_int(tuple, "track-number", trackno);
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
845 tuple_associate_string(tuple, "ext", "cda"); //XXX should do? --yaz
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
846
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
847 tuple_associate_int(tuple, "length", calculate_track_length(trackinfo[trackno].startlsn, trackinfo[trackno].endlsn));
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
848 if(strlen(trackinfo[trackno].genre)) {
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
849 tuple_associate_string(tuple, "genre", trackinfo[trackno].genre);
a0b4583a5e48 tuple API update.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents: 1447
diff changeset
850 }
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
851 //tuple->year = 0; todo: set the year
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
852
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
853 return tuple;
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
854 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
855
1349
ab387ad5b88e Converted to new threading model
Calin Crisan ccrisan@gmail.com
parents: 1341
diff changeset
856 void dae_play_loop(dae_params_t *pdae_params)
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
857 {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
858 unsigned char *buffer = (unsigned char *) malloc(CDDA_DAE_FRAMES * CDIO_CD_FRAMESIZE_RAW);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
859
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
860 if (debug)
1349
ab387ad5b88e Converted to new threading model
Calin Crisan ccrisan@gmail.com
parents: 1341
diff changeset
861 printf("cdaudio-ng: dae started\n");
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
862 cdio_lseek(pcdio, pdae_params->startlsn * CDIO_CD_FRAMESIZE_RAW, SEEK_SET);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
863
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
864 gboolean output_paused = FALSE;
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
865 int read_error_counter = 0;
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
866
1387
20c6caad7e03 Fixed the play/stop indication; added a temporary workaround for including the last 3 seconds in playback
Calin Crisan ccrisan@gmail.com
parents: 1382
diff changeset
867 //pdae_params->endlsn += 75 * 3;
20c6caad7e03 Fixed the play/stop indication; added a temporary workaround for including the last 3 seconds in playback
Calin Crisan ccrisan@gmail.com
parents: 1382
diff changeset
868
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
869 while (pdae_params->pplayback->playing) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
870 /* handle pause status */
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
871 if (is_paused) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
872 if (!output_paused) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
873 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
874 printf("cdaudio-ng: playback was not paused, pausing\n");
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
875 pdae_params->pplayback->output->pause(TRUE);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
876 output_paused = TRUE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
877 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
878 usleep(1000);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
879 continue;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
880 }
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
881 else {
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
882 if (output_paused) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
883 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
884 printf("cdaudio-ng: playback was paused, resuming\n");
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
885 pdae_params->pplayback->output->pause(FALSE);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
886 output_paused = FALSE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
887 }
1125
4a5d64c395f5 [svn] Added a lot of useful debug output
zither
parents: 1123
diff changeset
888 }
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
889
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
890 /* check if we have to seek */
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
891 if (pdae_params->seektime != -1) {
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
892 if (debug)
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
893 printf("cdaudio-ng: requested seek to %d ms\n", pdae_params->seektime);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
894 int newlsn = pdae_params->startlsn + pdae_params->seektime * 75 / 1000;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
895 cdio_lseek(pcdio, newlsn * CDIO_CD_FRAMESIZE_RAW, SEEK_SET);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
896 pdae_params->pplayback->output->flush(pdae_params->seektime);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
897 pdae_params->currlsn = newlsn;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
898 pdae_params->seektime = -1;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
899 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
900
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
901 /* compute the actual number of sectors to read */
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
902 int lsncount = CDDA_DAE_FRAMES <= (pdae_params->endlsn - pdae_params->currlsn + 1) ? CDDA_DAE_FRAMES : (pdae_params->endlsn - pdae_params->currlsn + 1);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
903 /* check too see if we have reached the end of the song */
1387
20c6caad7e03 Fixed the play/stop indication; added a temporary workaround for including the last 3 seconds in playback
Calin Crisan ccrisan@gmail.com
parents: 1382
diff changeset
904 if (lsncount <= 0) {
20c6caad7e03 Fixed the play/stop indication; added a temporary workaround for including the last 3 seconds in playback
Calin Crisan ccrisan@gmail.com
parents: 1382
diff changeset
905 sleep(3);
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
906 break;
1387
20c6caad7e03 Fixed the play/stop indication; added a temporary workaround for including the last 3 seconds in playback
Calin Crisan ccrisan@gmail.com
parents: 1382
diff changeset
907 }
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
908
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
909 if (cdio_read_audio_sectors(pcdio, buffer, pdae_params->currlsn, lsncount) != DRIVER_OP_SUCCESS) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
910 fprintf(stderr, "cdaudio-ng: failed to read audio sector\n");
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
911 read_error_counter++;
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
912 if (read_error_counter >= 2) {
1387
20c6caad7e03 Fixed the play/stop indication; added a temporary workaround for including the last 3 seconds in playback
Calin Crisan ccrisan@gmail.com
parents: 1382
diff changeset
913 read_error_counter = 0;
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
914 fprintf(stderr, "cdaudio-ng: this cd can no longer be played, stopping\n");
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
915 break;
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
916 }
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
917 }
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
918 else
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
919 read_error_counter = 0;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
920
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
921 int remainingbytes = lsncount * CDIO_CD_FRAMESIZE_RAW;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
922 unsigned char *bytebuff = buffer;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
923 while (pdae_params->pplayback->playing && remainingbytes > 0 && pdae_params->seektime == -1) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
924 /* compute the actual number of bytes to play */
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
925 int bytecount = CDIO_CD_FRAMESIZE_RAW <= remainingbytes ? CDIO_CD_FRAMESIZE_RAW : remainingbytes;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
926 /* wait until the output buffer has enough room */
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
927 while (pdae_params->pplayback->playing && pdae_params->pplayback->output->buffer_free() < bytecount && pdae_params->seektime == -1)
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
928 usleep(1000);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
929 /* play the sound :) */
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
930 if (pdae_params->pplayback->playing && pdae_params->seektime == -1)
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
931 produce_audio(pdae_params->pplayback->output->written_time(), FMT_S16_LE, 2, bytecount, bytebuff, &pdae_params->pplayback->playing);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
932 remainingbytes -= bytecount;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
933 bytebuff += bytecount;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
934 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
935 pdae_params->currlsn += lsncount;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
936 }
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
937 if (debug)
1349
ab387ad5b88e Converted to new threading model
Calin Crisan ccrisan@gmail.com
parents: 1341
diff changeset
938 printf("cdaudio-ng: dae ended\n");
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
939
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
940 pdae_params->pplayback->playing = FALSE;
1314
b93270e2b7e4 Continuous playing in DAE mode works again
Calin Crisan ccrisan@gmail.com
parents: 1313
diff changeset
941 pdae_params->pplayback->output->close_audio();
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
942 is_paused = FALSE;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
943
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
944 pdae_params->pplayback->output->close_audio();
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
945 free(buffer);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
946 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
947
1048
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
948 int calculate_track_length(int startlsn, int endlsn)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
949 {
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
950 return ((endlsn - startlsn + 1) * 1000) / 75;
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
951 }
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
952
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
953 int find_trackno_from_filename(char *filename)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
954 {
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
955 if ((filename == NULL) || strlen(filename) <= 6)
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
956 return -1;
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
957
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
958 char tracknostr[3];
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
959 strncpy(tracknostr, filename + strlen(filename) - 6, 2);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
960 tracknostr[2] = '\0';
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
961 return strtol(tracknostr, NULL, 10);
a42f95563c98 [svn] Added cdaudio-ng
zither
parents:
diff changeset
962 }
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
963
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
964 void cleanup_on_error()
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
965 {
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
966 if (playing_track != -1) {
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
967 playing_track = -1;
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
968 }
1313
28df54b3eaea Ejecting the cd while playing no longer crashes the player.
Calin Crisan ccrisan@gmail.com
parents: 1303
diff changeset
969
1123
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
970 if (trackinfo != NULL) {
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
971 free(trackinfo);
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
972 trackinfo = NULL;
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
973 }
edf2a1f1e58b [svn] Implemented DAE feature (enabled by default)
zither
parents: 1098
diff changeset
974 }
1193
483b8d900d5e Added enable/disable debug option
calin.crisan@ldev-006
parents: 1189
diff changeset
975