annotate Plugins/Input/wma/wma.c @ 466:68765cfbe876 trunk

[svn] Clean up after myself, reverting botched fix to ffmpeg code.
author chainsaw
date Wed, 18 Jan 2006 12:35:20 -0800
parents 60dac59c393a
children 82346a6312c2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
1 /*
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
2 * Audacious WMA input plugin
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
3 * (C) 2005 Audacious development team
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
4 *
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
5 * Based on:
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
6 * xmms-wma - WMA player for BMP
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
7 * Copyright (C) 2004,2005 McMCC <mcmcc@mail.ru>
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
8 * bmp-wma - WMA player for BMP
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
9 * Copyright (C) 2004 Roman Bogorodskiy <bogorodskiy@inbox.ru>
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
10 *
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
11 * This program is free software; you can redistribute it and/or modify
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
12 * it under the terms of the GNU General Public License as published by
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
13 * the Free Software Foundation; either version 2 of the License, or
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
14 * (at your option) any later version.
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
15 *
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
16 * This program is distributed in the hope that it will be useful,
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
19 * GNU General Public License for more details.
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
20 *
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
21 * You should have received a copy of the GNU General Public License
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
22 * along with this program; if not, write to the Free Software
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
24 */
244
38892498a565 [svn] C99 compliance issues inside wma.c.
nenolod
parents: 218
diff changeset
25 #include <stdlib.h>
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
26 #include <math.h>
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
27 #include <stdbool.h>
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
28 #include <stdio.h>
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
29 #include <string.h>
300
e35b0290f77c [svn] Squash 3 warnings by compiling as C99 code. Remove round_trick kludge.
chainsaw
parents: 244
diff changeset
30 #include <strings.h>
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
31
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
32 #include <audacious/plugin.h>
352
f13ab2d8e9cf [svn] various fixes :(
nenolod
parents: 351
diff changeset
33 #include <audacious/output.h>
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
34 #include <libaudacious/util.h>
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
35 #include <libaudacious/titlestring.h>
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
36
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
37 #include "avcodec.h"
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
38 #include "avformat.h"
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
39
218
0bea7509d6ba [svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents: 210
diff changeset
40 #define ABOUT_TXT "Adapted for use in audacious by Tony Vroon (chainsaw@gentoo.org) from\n \
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
41 the BEEP-WMA plugin which is Copyright (C) 2004,2005 Mokrushin I.V. aka McMCC (mcmcc@mail.ru)\n \
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
42 and the BMP-WMA plugin which is Copyright (C) 2004 Roman Bogorodskiy <bogorodskiy@inbox.ru>.\n \
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
43 This plugin based on source code " LIBAVCODEC_IDENT "\nby Fabrice Bellard from \
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
44 http://ffmpeg.sourceforge.net.\n\n \
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
45 This program is free software; you can redistribute it and/or modify \n \
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
46 it under the terms of the GNU General Public License as published by \n \
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
47 the Free Software Foundation; either version 2 of the License, or \n \
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
48 (at your option) any later version. \n\n \
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
49 This program is distributed in the hope that it will be useful, \n \
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
50 but WITHOUT ANY WARRANTY; without even the implied warranty of \n \
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
51 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \n \
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
52 See the GNU General Public License for more details.\n"
218
0bea7509d6ba [svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents: 210
diff changeset
53 #define PLUGIN_NAME "Audacious-WMA"
0bea7509d6ba [svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents: 210
diff changeset
54 #define PLUGIN_VERSION "v.1.0.5"
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
55 #define ST_BUFF 1024
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
56
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
57 static GtkWidget *dialog;
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
58 static GtkWidget *dialog1, *button1, *label1;
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
59
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
60 static int wma_decode = 0;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
61 static gboolean wma_pause = 0;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
62 static int wma_seekpos = -1;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
63 static int wma_st_buff, wma_idx;
179
15c2210499ea [svn] Use GThread instead of pthread.
chainsaw
parents: 138
diff changeset
64 static GThread *wma_decode_thread;
15c2210499ea [svn] Use GThread instead of pthread.
chainsaw
parents: 138
diff changeset
65 GStaticMutex wma_mutex = G_STATIC_MUTEX_INIT;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
66 static AVCodecContext *c = NULL;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
67 static AVFormatContext *ic = NULL;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
68 static uint8_t *wma_outbuf, *wma_s_outbuf;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
69
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
70 char description[64];
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
71 static void wma_about(void);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
72 static void wma_init(void);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
73 static int wma_is_our_file(char *filename);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
74 static void wma_play_file(char *filename);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
75 static void wma_stop(void);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
76 static void wma_seek(int time);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
77 static void wma_do_pause(short p);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
78 static int wma_get_time(void);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
79 static void wma_get_song_info(char *filename, char **title, int *length);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
80 static void wma_file_info_box(char *filename);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
81 static char *wsong_title;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
82 static int wsong_time;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
83
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
84 InputPlugin *get_iplugin_info(void);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
85
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
86 InputPlugin wma_ip =
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
87 {
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
88 NULL, // Filled in by xmms
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
89 NULL, // Filled in by xmms
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
90 description, // The description that is shown in the preferences box
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
91 wma_init, // Called when the plugin is loaded
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
92 wma_about, // Show the about box
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
93 NULL, // Show the configure box
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
94 wma_is_our_file, // Return 1 if the plugin can handle the file
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
95 NULL, // Scan dir
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
96 wma_play_file, // Play file
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
97 wma_stop, // Stop
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
98 wma_do_pause, // Pause
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
99 wma_seek, // Seek
461
60dac59c393a [svn] Remove EQ again. *grr*
nenolod
parents: 458
diff changeset
100 NULL, // Set the equalizer, most plugins won't be able to do this
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
101 wma_get_time, // Get the time, usually returns the output plugins output time
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
102 NULL, // Get volume
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
103 NULL, // Set volume
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
104 NULL, // OBSOLETE!
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
105 NULL, // OBSOLETE!
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
106 NULL, // Send data to the visualization plugins
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
107 NULL, // Fill in the stuff that is shown in the player window
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
108 NULL, // Show some text in the song title box. Filled in by xmms
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
109 wma_get_song_info, // Function to grab the title string
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
110 wma_file_info_box, // Bring up an info window for the filename passed in
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
111 NULL // Handle to the current output plugin. Filled in by xmms
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
112 };
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
113
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
114 InputPlugin *get_iplugin_info(void)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
115 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
116 memset(description, 0, 64);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
117 wma_ip.description = g_strdup_printf("WMA Player %s", VERSION);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
118 return &wma_ip;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
119 }
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
120
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
121 static gchar *str_twenty_to_space(gchar * str)
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
122 {
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
123 gchar *match, *match_end;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
124
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
125 g_return_val_if_fail(str != NULL, NULL);
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
126
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
127 while ((match = strstr(str, "%20"))) {
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
128 match_end = match + 3;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
129 *match++ = ' ';
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
130 while (*match_end)
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
131 *match++ = *match_end++;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
132 *match = 0;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
133 }
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
134
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
135 return str;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
136 }
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
137
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
138 static void wma_about(void)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
139 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
140 char *title;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
141 char *message;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
142
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
143 if (dialog1) return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
144
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
145 title = (char *)g_malloc(80);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
146 message = (char *)g_malloc(1000);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
147 memset(title, 0, 80);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
148 memset(message, 0, 1000);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
149
218
0bea7509d6ba [svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents: 210
diff changeset
150 sprintf(title, "About %s", PLUGIN_NAME);
0bea7509d6ba [svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents: 210
diff changeset
151 sprintf(message, "%s %s\n\n%s", PLUGIN_NAME, PLUGIN_VERSION, ABOUT_TXT);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
152
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
153 dialog1 = gtk_dialog_new();
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
154 gtk_signal_connect(GTK_OBJECT(dialog1), "destroy",
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
155 GTK_SIGNAL_FUNC(gtk_widget_destroyed), &dialog1);
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
156 gtk_window_set_title(GTK_WINDOW(dialog1), title);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
157 gtk_window_set_policy(GTK_WINDOW(dialog1), FALSE, FALSE, FALSE);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
158 gtk_container_border_width(GTK_CONTAINER(dialog1), 5);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
159 label1 = gtk_label_new(message);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
160 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog1)->vbox), label1, TRUE, TRUE, 0);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
161 gtk_widget_show(label1);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
162
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
163 button1 = gtk_button_new_with_label(" Close ");
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
164 gtk_signal_connect_object(GTK_OBJECT(button1), "clicked",
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
165 GTK_SIGNAL_FUNC(gtk_widget_destroy),
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
166 GTK_OBJECT(dialog1));
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
167 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog1)->action_area), button1,
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
168 FALSE, FALSE, 0);
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
169
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
170 gtk_widget_show(button1);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
171 gtk_widget_show(dialog1);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
172 gtk_widget_grab_focus(button1);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
173 g_free(title);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
174 g_free(message);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
175 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
176
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
177 static void wma_init(void)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
178 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
179 avcodec_init();
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
180 avcodec_register_all();
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
181 av_register_all();
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
182 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
183
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
184 static int wma_is_our_file(char *filename)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
185 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
186 gchar *ext;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
187 ext = strrchr(filename, '.');
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
188 if(ext)
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
189 if(!strcasecmp(ext, ".wma"))
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
190 return 1;
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
191 return 0;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
192 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
193
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
194 static void wma_do_pause(short p)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
195 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
196 wma_pause = p;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
197 wma_ip.output->pause(wma_pause);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
198 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
199
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
200 static void wma_seek(int time)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
201 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
202 wma_seekpos = time;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
203 if(wma_pause) wma_ip.output->pause(0);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
204 while(wma_decode && wma_seekpos!=-1) xmms_usleep(10000);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
205 if(wma_pause) wma_ip.output->pause(1);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
206 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
207
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
208 static int wma_get_time(void)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
209 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
210 wma_ip.output->buffer_free();
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
211 if(wma_decode) return wma_ip.output->output_time();
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
212 return -1;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
213 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
214
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
215 static gchar *extname(const char *filename)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
216 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
217 gchar *ext = strrchr(filename, '.');
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
218 if(ext != NULL) ++ext;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
219 return ext;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
220 }
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
221
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
222 static char* w_getstr(char* str)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
223 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
224 if(str && strlen(str) > 0) return str;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
225 return NULL;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
226 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
227
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
228 static gchar *get_song_title(AVFormatContext *in, gchar * filename)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
229 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
230 gchar *ret = NULL;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
231 TitleInput *input;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
232
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
233 input = bmp_title_input_new();
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
234
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
235 if((in->title[0] != '\0') || (in->author[0] != '\0') || (in->album[0] != '\0') ||
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
236 (in->comment[0] != '\0') || (in->genre[0] != '\0') || (in->year != 0) || (in->track != 0))
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
237 {
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
238 input->performer = w_getstr(in->author);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
239 input->album_name = w_getstr(in->album);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
240 input->track_name = w_getstr(in->title);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
241 input->year = in->year;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
242 input->track_number = in->track;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
243 input->genre = w_getstr(in->genre);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
244 input->comment = w_getstr(in->comment);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
245 }
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
246 input->file_name = g_path_get_basename(filename);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
247 input->file_path = g_path_get_dirname(filename);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
248 input->file_ext = extname(filename);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
249 ret = xmms_get_titlestring(xmms_get_gentitle_format(), input);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
250 if(input) g_free(input);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
251
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
252 if(!ret)
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
253 {
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
254 ret = g_strdup(input->file_name);
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
255 if (extname(ret) != NULL)
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
256 *(extname(ret) - 1) = '\0';
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
257 }
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
258 return ret;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
259 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
260
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
261 static guint get_song_time(AVFormatContext *in)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
262 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
263 if(in->duration)
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
264 return in->duration/1000;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
265 else
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
266 return 0;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
267 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
268
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
269 static void wma_get_song_info(char *filename, char **title_real, int *len_real)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
270 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
271 AVFormatContext *in = NULL;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
272
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
273 (*len_real) = -1;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
274 (*title_real) = NULL;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
275
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
276 if (av_open_input_file(&in, str_twenty_to_space(filename), NULL, 0, NULL) < 0)
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
277 return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
278
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
279 av_find_stream_info(in);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
280 (*len_real) = get_song_time(in);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
281 (*title_real) = get_song_title(in, filename);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
282 av_close_input_file(in);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
283 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
284
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
285 static void wma_playbuff(int out_size)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
286 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
287 FifoBuffer f;
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
288 int sst_buff;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
289
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
290 fifo_init(&f, out_size*2);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
291 fifo_write(&f, wma_outbuf, out_size, &f.wptr);
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
292 while(!fifo_read(&f, wma_s_outbuf, wma_st_buff, &f.rptr) && wma_decode)
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
293 {
461
60dac59c393a [svn] Remove EQ again. *grr*
nenolod
parents: 458
diff changeset
294 sst_buff = wma_st_buff;
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
295 if(wma_pause) memset(wma_s_outbuf, 0, sst_buff);
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
296 while(wma_ip.output->buffer_free() < wma_st_buff) xmms_usleep(20000);
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
297 produce_audio(wma_ip.output->written_time(), FMT_S16_NE,
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
298 c->channels, sst_buff, (short *)wma_s_outbuf, NULL);
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
299 memset(wma_s_outbuf, 0, sst_buff);
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
300 }
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
301 fifo_free(&f);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
302 return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
303 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
304
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
305 static void *wma_play_loop(void *arg)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
306 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
307 uint8_t *inbuf_ptr;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
308 int out_size, size, len;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
309 AVPacket pkt;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
310
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
311 g_static_mutex_lock(&wma_mutex);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
312 while(wma_decode){
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
313
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
314 if(wma_seekpos != -1)
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
315 {
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
316 av_seek_frame(ic, wma_idx, wma_seekpos * 1000000LL);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
317 wma_ip.output->flush(wma_seekpos * 1000);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
318 wma_seekpos = -1;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
319 }
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
320
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
321 if(av_read_frame(ic, &pkt) < 0) break;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
322
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
323 size = pkt.size;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
324 inbuf_ptr = pkt.data;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
325
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
326 if(size == 0) break;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
327
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
328 while(size > 0){
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
329 len = avcodec_decode_audio(c, (short *)wma_outbuf, &out_size,
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
330 inbuf_ptr, size);
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
331 if(len < 0) break;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
332
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
333 if(out_size <= 0) continue;
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
334
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
335 wma_playbuff(out_size);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
336
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
337 size -= len;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
338 inbuf_ptr += len;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
339 if(pkt.data) av_free_packet(&pkt);
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
340 }
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
341 }
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
342 while(wma_decode && wma_ip.output->buffer_playing()) xmms_usleep(30000);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
343 wma_decode = 0;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
344 if(wma_s_outbuf) g_free(wma_s_outbuf);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
345 if(wma_outbuf) g_free(wma_outbuf);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
346 if(pkt.data) av_free_packet(&pkt);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
347 if(c) avcodec_close(c);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
348 if(ic) av_close_input_file(ic);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
349 g_static_mutex_unlock(&wma_mutex);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
350 g_thread_exit(NULL);
218
0bea7509d6ba [svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents: 210
diff changeset
351 return(NULL);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
352 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
353
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
354 static void wma_play_file(char *filename)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
355 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
356 AVCodec *codec;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
357
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
358 if(av_open_input_file(&ic, str_twenty_to_space(filename), NULL, 0, NULL) < 0) return;
218
0bea7509d6ba [svn] Working WMA support. I never said it would be pretty, neno, I should said it would play.
chainsaw
parents: 210
diff changeset
359
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
360 for(wma_idx = 0; wma_idx < ic->nb_streams; wma_idx++) {
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
361 c = &ic->streams[wma_idx]->codec;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
362 if(c->codec_type == CODEC_TYPE_AUDIO) break;
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
363 }
179
15c2210499ea [svn] Use GThread instead of pthread.
chainsaw
parents: 138
diff changeset
364
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
365 av_find_stream_info(ic);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
366
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
367 codec = avcodec_find_decoder(c->codec_id);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
368
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
369 if(!codec) return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
370
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
371 if(avcodec_open(c, codec) < 0) return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
372
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
373 wsong_title = get_song_title(ic, filename);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
374 wsong_time = get_song_time(ic);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
375
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
376 if(wma_ip.output->open_audio( FMT_S16_NE, c->sample_rate, c->channels) <= 0) return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
377
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
378 wma_st_buff = ST_BUFF;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
379
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
380 wma_ip.set_info(wsong_title, wsong_time, c->bit_rate, c->sample_rate, c->channels);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
381
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
382 wma_s_outbuf = g_malloc0(wma_st_buff);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
383 wma_outbuf = g_malloc0(AVCODEC_MAX_AUDIO_FRAME_SIZE);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
384 wma_seekpos = -1;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
385 wma_decode = 1;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
386 wma_decode_thread = g_thread_create((GThreadFunc)wma_play_loop, NULL, TRUE, NULL);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
387 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
388
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
389 static void wma_stop(void)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
390 {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
391 wma_decode = 0;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
392 if(wma_pause) wma_do_pause(0);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
393 g_thread_join(wma_decode_thread);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
394 wma_ip.output->close_audio();
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
395 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
396
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
397 static void wma_file_info_box (char *filename)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
398 {
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
399 GtkWidget *dialog_vbox1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
400 GtkWidget *vbox1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
401 GtkWidget *hbox1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
402 GtkWidget *label_name;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
403 GtkWidget *entry_filename;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
404 GtkWidget *hbox2;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
405 GtkWidget *frame_wma_info;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
406 GtkWidget *alignment1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
407 GtkWidget *table1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
408 GtkWidget *label_album;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
409 GtkWidget *label_year;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
410 GtkWidget *label_track;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
411 GtkWidget *label_genre;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
412 GtkWidget *label_comments;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
413 GtkWidget *label_wma_version;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
414 GtkWidget *label_bitrate;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
415 GtkWidget *label_rate;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
416 GtkWidget *label_chans;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
417 GtkWidget *label_play_time;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
418 GtkWidget *label_filesize;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
419 GtkWidget *label_wma_vers_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
420 GtkWidget *label_bitrate_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
421 GtkWidget *label_rate_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
422 GtkWidget *label_chans_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
423 GtkWidget *label_playtime_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
424 GtkWidget *label_filesize_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
425 GtkWidget *label4;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
426 GtkWidget *frame_tags;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
427 GtkWidget *alignment2;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
428 GtkWidget *table2;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
429 GtkWidget *label_artist;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
430 GtkWidget *label_title;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
431 GtkWidget *entry_artist;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
432 GtkWidget *entry_album;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
433 GtkWidget *entry_year;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
434 GtkWidget *entry_title;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
435 GtkWidget *entry_track;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
436 GtkWidget *entry_genre;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
437 GtkWidget *entry_comments;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
438 GtkWidget *label5;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
439 GtkWidget *dialog_action_area1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
440 GtkWidget *okbutton;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
441
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
442 AVFormatContext *in = NULL;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
443 AVCodecContext *s = NULL;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
444 AVCodec *codec;
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
445 gint tns, thh, tmm, tss;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
446 gint i;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
447 gchar *title,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
448 *channels,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
449 *bitrate,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
450 *playtime,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
451 *samplerate,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
452 *filesize;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
453 FILE *f;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
454 if (dialog) {
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
455 (void)printf("Info dialog is already opened!\n");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
456 return;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
457 }
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
458
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
459 if(av_open_input_file(&in, filename, NULL, 0, NULL) < 0)
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
460 return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
461
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
462 for(i = 0; i < in->nb_streams; i++) {
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
463 s = &in->streams[i]->codec;
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
464 if(s->codec_type == CODEC_TYPE_AUDIO)
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
465 break;
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
466 }
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
467
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
468 av_find_stream_info(in);
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
469 codec = avcodec_find_decoder(s->codec_id);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
470
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
471 /* window title */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
472 title = g_strdup_printf("File Info - %s", g_basename(filename));
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
473 /* channels */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
474 if (s->channels == 1)
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
475 channels = g_strdup("MONO");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
476 else
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
477 channels = g_strdup("STEREO");
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
478
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
479 /* bitrate */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
480 bitrate = g_strdup_printf("%d Kb/s", (s->bit_rate / 1000));
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
481
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
482 /* playtime */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
483 if (in->duration != 0) {
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
484 tns = in->duration/1000000LL;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
485 thh = tns/3600;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
486 tmm = (tns%3600)/60;
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
487 tss = (tns%60);
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
488 playtime = g_strdup_printf("%02d:%02d:%02d", thh, tmm, tss);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
489 } else
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
490 playtime = g_strdup("N/A");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
491
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
492 /* samplerate */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
493 samplerate = g_strdup_printf("%d Hz", s->sample_rate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
494
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
495 /* filesize */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
496 f = fopen(filename, "rb");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
497
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
498 if (f == NULL)
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
499 return;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
500
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
501 fseek(f, 0, SEEK_END);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
502 filesize = g_strdup_printf("%lu Bytes", ftell(f));
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
503 fclose(f);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
504
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
505 dialog = gtk_dialog_new();
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
506
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
507 gtk_signal_connect(GTK_OBJECT(dialog), "destroy",
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
508 GTK_SIGNAL_FUNC(gtk_widget_destroyed), &dialog);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
509
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
510 gtk_window_set_title(GTK_WINDOW(dialog), title);
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
511 gtk_window_set_type_hint(GTK_WINDOW(dialog), GDK_WINDOW_TYPE_HINT_DIALOG);
210
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
512 gtk_window_set_policy(GTK_WINDOW(dialog), FALSE, FALSE, FALSE);
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
513
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
514 dialog_vbox1 = GTK_DIALOG(dialog)->vbox;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
515 gtk_widget_show(dialog_vbox1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
516
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
517 vbox1 = gtk_vbox_new(FALSE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
518 gtk_widget_show(vbox1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
519 gtk_box_pack_start(GTK_BOX(dialog_vbox1), vbox1, TRUE, TRUE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
520
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
521 hbox1 = gtk_hbox_new (FALSE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
522 gtk_widget_show (hbox1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
523 gtk_box_pack_start(GTK_BOX(vbox1), hbox1, FALSE, FALSE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
524
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
525 label_name = gtk_label_new("<b>Name:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
526 gtk_widget_show(label_name);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
527 gtk_box_pack_start(GTK_BOX (hbox1), label_name, FALSE, FALSE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
528 gtk_misc_set_alignment(GTK_MISC (label_name), 0.48, 0.51);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
529 gtk_misc_set_padding(GTK_MISC (label_name), 10, 10);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
530 gtk_label_set_use_markup(GTK_LABEL(label_name), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
531
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
532 entry_filename = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
533 gtk_widget_show(entry_filename);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
534 gtk_box_pack_start(GTK_BOX(hbox1), entry_filename, TRUE, TRUE, 4);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
535 gtk_editable_set_editable(GTK_EDITABLE(entry_filename), FALSE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
536 gtk_entry_set_text(GTK_ENTRY(entry_filename), filename);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
537
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
538 hbox2 = gtk_hbox_new(FALSE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
539 gtk_widget_show(hbox2);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
540 gtk_box_pack_start(GTK_BOX(vbox1), hbox2, TRUE, TRUE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
541
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
542 frame_wma_info = gtk_frame_new(NULL);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
543 gtk_widget_show(frame_wma_info);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
544 gtk_box_pack_start(GTK_BOX(hbox2), frame_wma_info, TRUE, TRUE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
545 gtk_frame_set_shadow_type(GTK_FRAME (frame_wma_info), GTK_SHADOW_ETCHED_IN);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
546 gtk_container_set_border_width (GTK_CONTAINER(frame_wma_info), 10);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
547
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
548 alignment1 = gtk_alignment_new(0.5, 0.5, 1, 1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
549 gtk_widget_show(alignment1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
550 gtk_container_add(GTK_CONTAINER(frame_wma_info), alignment1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
551 gtk_alignment_set_padding(GTK_ALIGNMENT(alignment1), 0, 0, 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
552 gtk_container_set_border_width(GTK_CONTAINER(alignment1), 2);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
553
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
554 table1 = gtk_table_new(6, 2, FALSE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
555 gtk_widget_show(table1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
556 gtk_container_add(GTK_CONTAINER(alignment1), table1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
557 gtk_container_set_border_width(GTK_CONTAINER(table1), 6);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
558 gtk_table_set_row_spacings(GTK_TABLE(table1), 3);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
559 gtk_table_set_col_spacings(GTK_TABLE(table1), 8);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
560 /* WMA Version label */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
561 label_wma_version = gtk_label_new("<b>WMA Version:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
562 gtk_widget_show(label_wma_version);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
563 gtk_table_attach(GTK_TABLE(table1), label_wma_version, 0, 1, 0, 1,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
564 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
565 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
566 gtk_misc_set_alignment(GTK_MISC(label_wma_version), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
567 gtk_label_set_use_markup(GTK_LABEL(label_wma_version), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
568
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
569 /* Bitrate */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
570 label_bitrate = gtk_label_new("<b>Bitrate:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
571 gtk_widget_show(label_bitrate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
572 gtk_table_attach(GTK_TABLE(table1), label_bitrate, 0, 1, 1, 2,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
573 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
574 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
575 gtk_misc_set_alignment(GTK_MISC(label_bitrate), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
576 gtk_label_set_use_markup(GTK_LABEL(label_bitrate), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
577
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
578 /* Samplerate */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
579 label_rate = gtk_label_new("<b>Samplerate:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
580 gtk_widget_show(label_rate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
581 gtk_table_attach(GTK_TABLE(table1), label_rate, 0, 1, 2, 3,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
582 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
583 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
584 gtk_misc_set_alignment(GTK_MISC(label_rate), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
585 gtk_label_set_use_markup(GTK_LABEL(label_rate), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
586
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
587 /* Channels */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
588 label_chans = gtk_label_new("<b>Channels:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
589 gtk_widget_show(label_chans);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
590 gtk_table_attach(GTK_TABLE (table1), label_chans, 0, 1, 3, 4,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
591 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
592 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
593 gtk_misc_set_alignment(GTK_MISC(label_chans), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
594 gtk_label_set_use_markup(GTK_LABEL(label_chans), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
595
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
596 /* Play time */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
597 label_play_time = gtk_label_new("<b>Play time:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
598 gtk_widget_show(label_play_time);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
599 gtk_table_attach(GTK_TABLE (table1), label_play_time, 0, 1, 4, 5,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
600 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
601 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
602 gtk_misc_set_alignment(GTK_MISC(label_play_time), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
603 gtk_label_set_use_markup(GTK_LABEL(label_play_time), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
604
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
605 /* Filesize */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
606 label_filesize = gtk_label_new("<b>Filesize:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
607 gtk_widget_show(label_filesize);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
608 gtk_table_attach(GTK_TABLE(table1), label_filesize, 0, 1, 5, 6,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
609 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
610 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
611 gtk_misc_set_alignment(GTK_MISC(label_filesize), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
612 gtk_label_set_use_markup(GTK_LABEL(label_filesize), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
613
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
614
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
615 label_wma_vers_val = gtk_label_new(codec->name);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
616 gtk_widget_show(label_wma_vers_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
617 gtk_table_attach(GTK_TABLE(table1), label_wma_vers_val, 1, 2, 0, 1,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
618 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
619 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
620 gtk_misc_set_alignment(GTK_MISC(label_wma_vers_val), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
621
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
622 label_bitrate_val = gtk_label_new(bitrate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
623 gtk_widget_show(label_bitrate_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
624 gtk_table_attach(GTK_TABLE(table1), label_bitrate_val, 1, 2, 1, 2,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
625 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
626 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
627 gtk_misc_set_alignment(GTK_MISC(label_bitrate_val), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
628
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
629 label_rate_val = gtk_label_new(samplerate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
630 gtk_widget_show(label_rate_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
631 gtk_table_attach(GTK_TABLE(table1), label_rate_val, 1, 2, 2, 3,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
632 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
633 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
634 gtk_misc_set_alignment(GTK_MISC(label_rate_val), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
635
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
636 label_chans_val = gtk_label_new(channels);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
637 gtk_widget_show(label_chans_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
638 gtk_table_attach(GTK_TABLE(table1), label_chans_val, 1, 2, 3, 4,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
639 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
640 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
641 gtk_misc_set_alignment(GTK_MISC (label_chans_val), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
642
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
643 label_playtime_val = gtk_label_new(playtime);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
644 gtk_widget_show(label_playtime_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
645 gtk_table_attach(GTK_TABLE(table1), label_playtime_val, 1, 2, 4, 5,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
646 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
647 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
648 gtk_misc_set_alignment(GTK_MISC(label_playtime_val), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
649
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
650 label_filesize_val = gtk_label_new(filesize);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
651 gtk_widget_show(label_filesize_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
652 gtk_table_attach(GTK_TABLE (table1), label_filesize_val, 1, 2, 5, 6,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
653 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
654 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
655 gtk_misc_set_alignment(GTK_MISC(label_filesize_val), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
656
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
657 label4 = gtk_label_new ("WMA Info");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
658 gtk_widget_show(label4);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
659 gtk_frame_set_label_widget(GTK_FRAME(frame_wma_info), label4);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
660 frame_tags = gtk_frame_new (NULL);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
661 gtk_widget_show (frame_tags);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
662 gtk_box_pack_start (GTK_BOX (hbox2), frame_tags, TRUE, TRUE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
663 gtk_frame_set_shadow_type (GTK_FRAME (frame_tags), GTK_SHADOW_ETCHED_IN);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
664 gtk_container_set_border_width (GTK_CONTAINER (frame_tags), 10);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
665
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
666
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
667 alignment2 = gtk_alignment_new (0.5, 0.5, 1, 1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
668 gtk_widget_show (alignment2);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
669 gtk_container_add (GTK_CONTAINER (frame_tags), alignment2);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
670 gtk_alignment_set_padding (GTK_ALIGNMENT (alignment2), 0, 0, 12, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
671 gtk_container_set_border_width (GTK_CONTAINER (alignment2), 2);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
672
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
673
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
674 table2 = gtk_table_new(8, 2, FALSE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
675 gtk_widget_show(table2);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
676 gtk_container_add(GTK_CONTAINER(alignment2), table2);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
677 gtk_container_set_border_width(GTK_CONTAINER(table2), 6);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
678 gtk_table_set_row_spacings(GTK_TABLE(table2), 3);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
679 gtk_table_set_col_spacings(GTK_TABLE(table2), 8);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
680
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
681 /* Artist */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
682 label_artist = gtk_label_new("<b>Artist:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
683 gtk_widget_show(label_artist);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
684 gtk_table_attach(GTK_TABLE (table2), label_artist, 0, 1, 0, 1,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
685 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
686 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
687 gtk_misc_set_alignment(GTK_MISC(label_artist), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
688 gtk_label_set_use_markup(GTK_LABEL(label_artist), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
689
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
690 /* Title */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
691 label_title = gtk_label_new("<b>Title:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
692 gtk_widget_show(label_title);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
693 gtk_table_attach(GTK_TABLE (table2), label_title, 0, 1, 1, 2,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
694 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
695 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
696 gtk_misc_set_alignment(GTK_MISC(label_title), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
697 gtk_label_set_use_markup(GTK_LABEL(label_title), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
698
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
699 /* Album */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
700 label_album = gtk_label_new("<b>Album:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
701 gtk_widget_show(label_album);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
702 gtk_table_attach(GTK_TABLE (table2), label_album, 0, 1, 2, 3,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
703 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
704 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
705 gtk_misc_set_alignment(GTK_MISC(label_album), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
706 gtk_label_set_use_markup(GTK_LABEL(label_album), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
707
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
708 /* Comments */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
709 label_comments = gtk_label_new("<b>Comments:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
710 gtk_widget_show(label_comments);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
711 gtk_table_attach(GTK_TABLE(table2), label_comments, 0, 1, 3, 4,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
712 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
713 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
714 gtk_misc_set_alignment(GTK_MISC(label_comments), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
715 gtk_label_set_use_markup(GTK_LABEL(label_comments), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
716
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
717 /* Year */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
718 label_year = gtk_label_new("<b>Year:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
719 gtk_widget_show(label_year);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
720 gtk_table_attach(GTK_TABLE (table2), label_year, 0, 1, 4, 5,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
721 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
722 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
723 gtk_misc_set_alignment(GTK_MISC(label_year), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
724 gtk_label_set_use_markup(GTK_LABEL(label_year), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
725
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
726 /* Track */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
727 label_track = gtk_label_new("<b>Track:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
728 gtk_widget_show(label_track);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
729 gtk_table_attach(GTK_TABLE (table2), label_track, 0, 1, 5, 6,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
730 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
731 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
732 gtk_misc_set_alignment(GTK_MISC(label_track), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
733 gtk_label_set_use_markup(GTK_LABEL(label_track), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
734
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
735 /* Genre */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
736 label_genre = gtk_label_new("<b>Genre:</b>");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
737 gtk_widget_show(label_genre);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
738 gtk_table_attach(GTK_TABLE (table2), label_genre, 0, 1, 6, 7,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
739 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
740 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
741 gtk_misc_set_alignment(GTK_MISC (label_genre), 0, 0.5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
742 gtk_label_set_use_markup(GTK_LABEL(label_genre), TRUE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
743
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
744
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
745 entry_artist = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
746 gtk_widget_show (entry_artist);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
747 gtk_table_attach (GTK_TABLE (table2), entry_artist, 1, 2, 0, 1,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
748 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
749 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
750 gtk_editable_set_editable (GTK_EDITABLE (entry_artist), FALSE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
751 gtk_entry_set_text(GTK_ENTRY(entry_artist), in->author);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
752
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
753 entry_title = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
754 gtk_widget_show(entry_title);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
755 gtk_table_attach (GTK_TABLE (table2), entry_title, 1, 2, 1, 2,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
756 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
757 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
758 gtk_editable_set_editable(GTK_EDITABLE (entry_title), FALSE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
759 gtk_entry_set_text(GTK_ENTRY(entry_title), in->title);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
760
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
761 entry_album = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
762 gtk_widget_show(entry_album);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
763 gtk_table_attach(GTK_TABLE (table2), entry_album, 1, 2, 2, 3,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
764 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
765 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
766 gtk_editable_set_editable(GTK_EDITABLE (entry_album), FALSE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
767 gtk_entry_set_text(GTK_ENTRY(entry_album), in->album);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
768
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
769 entry_comments = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
770 gtk_widget_show(entry_comments);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
771 gtk_table_attach(GTK_TABLE (table2), entry_comments, 1, 2, 3, 4,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
772 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
773 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
774 gtk_editable_set_editable(GTK_EDITABLE (entry_comments), FALSE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
775 gtk_entry_set_text(GTK_ENTRY(entry_comments), in->comment);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
776
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
777 entry_year = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
778 gtk_widget_show(entry_year);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
779 gtk_table_attach(GTK_TABLE (table2), entry_year, 1, 2, 4, 5,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
780 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
781 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
782 gtk_editable_set_editable(GTK_EDITABLE (entry_year), FALSE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
783 gtk_entry_set_text(GTK_ENTRY(entry_year), g_strdup_printf("%d", in->year));
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
784
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
785 entry_track = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
786 gtk_widget_show(entry_track);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
787 gtk_table_attach(GTK_TABLE (table2), entry_track, 1, 2, 5, 6,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
788 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
789 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
790 gtk_editable_set_editable(GTK_EDITABLE (entry_track), FALSE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
791 gtk_entry_set_text(GTK_ENTRY(entry_track), g_strdup_printf("%d", in->track));
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
792
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
793 entry_genre = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
794 gtk_widget_show(entry_genre);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
795 gtk_table_attach(GTK_TABLE (table2), entry_genre, 1, 2, 6, 7,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
796 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
797 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
798 gtk_editable_set_editable(GTK_EDITABLE (entry_genre), FALSE);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
799 gtk_entry_set_text(GTK_ENTRY(entry_genre), in->genre);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
800
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
801
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
802 label5 = gtk_label_new("Tags");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
803 gtk_widget_show(label5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
804 gtk_frame_set_label_widget(GTK_FRAME(frame_tags), label5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
805
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
806
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
807 dialog_action_area1 = GTK_DIALOG(dialog)->action_area;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
808 gtk_widget_show(dialog_action_area1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
809 gtk_button_box_set_layout(GTK_BUTTON_BOX(dialog_action_area1), GTK_BUTTONBOX_END);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
810
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
811 okbutton = gtk_button_new_from_stock("gtk-ok");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
812 gtk_widget_show(okbutton);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
813 gtk_dialog_add_action_widget(GTK_DIALOG(dialog), okbutton, GTK_RESPONSE_OK);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
814 GTK_WIDGET_SET_FLAGS(okbutton, GTK_CAN_DEFAULT);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
815
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
816 gtk_signal_connect_object(GTK_OBJECT(okbutton), "clicked",
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
817 GTK_SIGNAL_FUNC(gtk_widget_destroy), GTK_OBJECT(dialog));
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
818
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
819 gtk_widget_show(dialog);
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
820
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
821 g_free(title);
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
822 g_free(channels);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
823 g_free(bitrate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
824 g_free(playtime);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
825 g_free(samplerate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
826 g_free(filesize);
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
827 }