annotate Plugins/Input/wma/wma.c @ 1103:8bdcd65a57b7 trunk

[svn] Updating of some deprecated GTK functions.
author nemo
date Tue, 23 May 2006 16:05:38 -0700
parents afd83c152cfd
children 9c41cfb19561
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>
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
31 #include <glib.h>
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
32 #include <glib/gi18n.h>
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
33
927
afd83c152cfd [svn] Look, you missed a spot.
chainsaw
parents: 826
diff changeset
34 #include "audacious/plugin.h"
afd83c152cfd [svn] Look, you missed a spot.
chainsaw
parents: 826
diff changeset
35 #include "audacious/output.h"
afd83c152cfd [svn] Look, you missed a spot.
chainsaw
parents: 826
diff changeset
36 #include "libaudacious/util.h"
afd83c152cfd [svn] Look, you missed a spot.
chainsaw
parents: 826
diff changeset
37 #include "libaudacious/titlestring.h"
afd83c152cfd [svn] Look, you missed a spot.
chainsaw
parents: 826
diff changeset
38 #include "libaudacious/vfs.h"
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
39
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
40 #include "avcodec.h"
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
41 #include "avformat.h"
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
42
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
43 #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
44 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
45 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
46 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
47 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
48 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
49 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
50 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
51 (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
52 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
53 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
54 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
55 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
56 #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
57 #define PLUGIN_VERSION "v.1.0.5"
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
58 #define ST_BUFF 1024
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
59
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
60 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
61 static GtkWidget *dialog1, *button1, *label1;
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
62
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
63 static int wma_decode = 0;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
64 static gboolean wma_pause = 0;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
65 static int wma_seekpos = -1;
826
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
66 static int wma_st_buff, wma_idx, wma_idx2;
179
15c2210499ea [svn] Use GThread instead of pthread.
chainsaw
parents: 138
diff changeset
67 static GThread *wma_decode_thread;
15c2210499ea [svn] Use GThread instead of pthread.
chainsaw
parents: 138
diff changeset
68 GStaticMutex wma_mutex = G_STATIC_MUTEX_INIT;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
69 static AVCodecContext *c = NULL;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
70 static AVFormatContext *ic = NULL;
826
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
71 static AVCodecContext *c2 = NULL;
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
72 static AVFormatContext *ic2 = NULL;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
73 static uint8_t *wma_outbuf, *wma_s_outbuf;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
74
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
75 char description[64];
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
76 static void wma_about(void);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
77 static void wma_init(void);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
78 static int wma_is_our_file(char *filename);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
79 static void wma_play_file(char *filename);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
80 static void wma_stop(void);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
81 static void wma_seek(int time);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
82 static void wma_do_pause(short p);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
83 static int wma_get_time(void);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
84 static void wma_get_song_info(char *filename, char **title, int *length);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
85 static void wma_file_info_box(char *filename);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
86 static char *wsong_title;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
87 static int wsong_time;
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
88
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
89 InputPlugin *get_iplugin_info(void);
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
90
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
91 InputPlugin wma_ip =
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
92 {
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
93 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
94 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
95 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
96 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
97 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
98 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
99 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
100 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
101 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
102 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
103 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
104 wma_seek, // Seek
461
60dac59c393a [svn] Remove EQ again. *grr*
nenolod
parents: 458
diff changeset
105 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
106 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
107 NULL, // Get volume
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
108 NULL, // Set volume
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
109 NULL, // OBSOLETE!
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
110 NULL, // OBSOLETE!
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
111 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
112 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
113 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
114 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
115 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
116 NULL // Handle to the current output plugin. Filled in by xmms
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
117 };
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
118
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
119 InputPlugin *get_iplugin_info(void)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
120 {
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
121 memset(description, 0, 64);
751
6636d328fa38 [svn] more progress
nenolod
parents: 553
diff changeset
122 wma_ip.description = g_strdup_printf(_("WMA Player %s"), PACKAGE_VERSION);
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
123 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
124 }
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
125
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
126 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
127 {
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
128 gchar *match, *match_end;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
129
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
130 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
131
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
132 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
133 match_end = match + 3;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
134 *match++ = ' ';
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
135 while (*match_end)
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
136 *match++ = *match_end++;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
137 *match = 0;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
138 }
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
139
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
140 return str;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
141 }
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
142
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
143 static void wma_about(void)
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 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
146 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
147
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 if (dialog1) return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
149
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
150 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
151 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
152 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
153 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
154
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
155 sprintf(title, _("About %s"), PLUGIN_NAME);
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
156 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
157
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
158 dialog1 = gtk_dialog_new();
1103
8bdcd65a57b7 [svn] Updating of some deprecated GTK functions.
nemo
parents: 927
diff changeset
159 g_signal_connect(G_OBJECT(dialog1), "destroy",
8bdcd65a57b7 [svn] Updating of some deprecated GTK functions.
nemo
parents: 927
diff changeset
160 G_CALLBACK(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
161 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
162 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
163 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
164 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
165 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
166 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
167
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
168 button1 = gtk_button_new_with_label(_(" Close "));
1103
8bdcd65a57b7 [svn] Updating of some deprecated GTK functions.
nemo
parents: 927
diff changeset
169 g_signal_connect_swapped(G_OBJECT(button1), "clicked",
8bdcd65a57b7 [svn] Updating of some deprecated GTK functions.
nemo
parents: 927
diff changeset
170 G_CALLBACK(gtk_widget_destroy),
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
171 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
172 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
173 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
174
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
175 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
176 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
177 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
178 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
179 g_free(message);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
180 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
181
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
182 static void wma_init(void)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
183 {
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
184 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
185 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
186 av_register_all();
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
187 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
188
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
189 static int wma_is_our_file(char *filename)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
190 {
826
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
191 AVCodec *codec2;
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
192
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
193 if(av_open_input_file(&ic2, str_twenty_to_space(filename), NULL, 0, NULL) < 0) return 0;
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
194
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
195 for(wma_idx2 = 0; wma_idx2 < ic2->nb_streams; wma_idx2++) {
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
196 c2 = &ic2->streams[wma_idx2]->codec;
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
197 if(c2->codec_type == CODEC_TYPE_AUDIO) break;
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
198 }
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
199
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
200 av_find_stream_info(ic2);
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
201
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
202 codec2 = avcodec_find_decoder(c2->codec_id);
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
203
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
204 if(!codec2) {
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
205 av_close_input_file(ic2);
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
206 return 0;
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
207 }
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
208
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
209 av_close_input_file(ic2);
e143cbba4819 [svn] Ask the decoder whether this is a WMA file, instead of depending on file magic.
chainsaw
parents: 751
diff changeset
210 return 1;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
211 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
212
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
213 static void wma_do_pause(short p)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
214 {
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
215 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
216 wma_ip.output->pause(wma_pause);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
217 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
218
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
219 static void wma_seek(int time)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
220 {
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
221 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
222 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
223 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
224 if(wma_pause) wma_ip.output->pause(1);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
225 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
226
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
227 static int wma_get_time(void)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
228 {
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
229 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
230 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
231 return -1;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
232 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
233
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
234 static gchar *extname(const char *filename)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
235 {
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
236 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
237 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
238 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
239 }
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
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
241 static char* w_getstr(char* str)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
242 {
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
243 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
244 return NULL;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
245 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
246
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
247 static gchar *get_song_title(AVFormatContext *in, gchar * filename)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
248 {
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
249 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
250 TitleInput *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 input = bmp_title_input_new();
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
253
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
254 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
255 (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
256 {
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 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
258 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
259 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
260 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
261 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
262 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
263 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
264 }
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 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
266 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
267 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
268 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
269 if(input) g_free(input);
137
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 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
272 {
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 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
274 if (extname(ret) != NULL)
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
275 *(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
276 }
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 ret;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
278 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
279
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
280 static guint get_song_time(AVFormatContext *in)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
281 {
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
282 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
283 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
284 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
285 return 0;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
286 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
287
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
288 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
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 AVFormatContext *in = NULL;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
291
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
292 (*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
293 (*title_real) = NULL;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
294
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
295 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
296 return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
297
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
298 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
299 (*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
300 (*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
301 av_close_input_file(in);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
302 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
303
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
304 static void wma_playbuff(int out_size)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
305 {
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
306 FifoBuffer f;
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
307 int sst_buff;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
308
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
309 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
310 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
311 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
312 {
461
60dac59c393a [svn] Remove EQ again. *grr*
nenolod
parents: 458
diff changeset
313 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
314 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
315 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
316 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
317 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
318 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
319 }
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
320 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
321 return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
322 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
323
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
324 static void *wma_play_loop(void *arg)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
325 {
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
326 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
327 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
328 AVPacket pkt;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
329
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
330 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
331 while(wma_decode){
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
332
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
333 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
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 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
336 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
337 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
338 }
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
339
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
340 if(av_read_frame(ic, &pkt) < 0) break;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
341
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
342 size = pkt.size;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
343 inbuf_ptr = pkt.data;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
344
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
345 if(size == 0) break;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
346
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
347 while(size > 0){
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
348 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
349 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
350 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
351
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
352 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
353
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
354 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
355
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
356 size -= len;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
357 inbuf_ptr += len;
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
358 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
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 }
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
361 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
362 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
363 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
364 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
365 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
366 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
367 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
368 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
369 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
370 return(NULL);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
371 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
372
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
373 static void wma_play_file(char *filename)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
374 {
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
375 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
376
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
377 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
378
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
379 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
380 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
381 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
382 }
179
15c2210499ea [svn] Use GThread instead of pthread.
chainsaw
parents: 138
diff changeset
383
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
384 av_find_stream_info(ic);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
385
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
386 codec = avcodec_find_decoder(c->codec_id);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
387
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
388 if(!codec) return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
389
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
390 if(avcodec_open(c, codec) < 0) return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
391
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
392 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
393 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
394
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
395 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
396
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
397 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
398
12004b385a96 [svn] Sync with xmms-wma instead of bmp-wma & GThreadify. Does not explode, but does not play either.
chainsaw
parents: 179
diff changeset
399 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
400
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
401 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
402 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
403 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
404 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
405 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
406 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
407
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
408 static void wma_stop(void)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
409 {
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
410 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
411 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
412 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
413 wma_ip.output->close_audio();
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
414 }
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
415
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
416 static void wma_file_info_box (char *filename)
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
417 {
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
418 GtkWidget *dialog_vbox1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
419 GtkWidget *vbox1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
420 GtkWidget *hbox1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
421 GtkWidget *label_name;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
422 GtkWidget *entry_filename;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
423 GtkWidget *hbox2;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
424 GtkWidget *frame_wma_info;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
425 GtkWidget *alignment1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
426 GtkWidget *table1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
427 GtkWidget *label_album;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
428 GtkWidget *label_year;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
429 GtkWidget *label_track;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
430 GtkWidget *label_genre;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
431 GtkWidget *label_comments;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
432 GtkWidget *label_wma_version;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
433 GtkWidget *label_bitrate;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
434 GtkWidget *label_rate;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
435 GtkWidget *label_chans;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
436 GtkWidget *label_play_time;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
437 GtkWidget *label_filesize;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
438 GtkWidget *label_wma_vers_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
439 GtkWidget *label_bitrate_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
440 GtkWidget *label_rate_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
441 GtkWidget *label_chans_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
442 GtkWidget *label_playtime_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
443 GtkWidget *label_filesize_val;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
444 GtkWidget *label4;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
445 GtkWidget *frame_tags;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
446 GtkWidget *alignment2;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
447 GtkWidget *table2;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
448 GtkWidget *label_artist;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
449 GtkWidget *label_title;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
450 GtkWidget *entry_artist;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
451 GtkWidget *entry_album;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
452 GtkWidget *entry_year;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
453 GtkWidget *entry_title;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
454 GtkWidget *entry_track;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
455 GtkWidget *entry_genre;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
456 GtkWidget *entry_comments;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
457 GtkWidget *label5;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
458 GtkWidget *dialog_action_area1;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
459 GtkWidget *okbutton;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
460
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
461 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
462 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
463 AVCodec *codec;
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
464 gint tns, thh, tmm, tss;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
465 gint i;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
466 gchar *title,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
467 *channels,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
468 *bitrate,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
469 *playtime,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
470 *samplerate,
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
471 *filesize;
927
afd83c152cfd [svn] Look, you missed a spot.
chainsaw
parents: 826
diff changeset
472 VFSFile *f;
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
473 if (dialog) {
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
474 (void)printf(_("Info dialog is already opened!\n"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
475 return;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
476 }
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
477
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
478 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
479 return;
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
480
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
481 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
482 s = &in->streams[i]->codec;
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
483 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
484 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
485 }
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
486
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
487 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
488 codec = avcodec_find_decoder(s->codec_id);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
489
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
490 /* window title */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
491 title = g_strdup_printf(_("File Info - %s"), g_basename(filename));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
492 /* channels */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
493 if (s->channels == 1)
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
494 channels = g_strdup("MONO");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
495 else
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
496 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
497
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
498 /* bitrate */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
499 bitrate = g_strdup_printf(_("%d Kb/s"), (s->bit_rate / 1000));
458
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 /* playtime */
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
502 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
503 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
504 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
505 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
506 tss = (tns%60);
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
507 playtime = g_strdup_printf(_("%02d:%02d:%02d"), thh, tmm, tss);
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
508 } else
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
509 playtime = g_strdup("N/A");
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
510
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
511 /* samplerate */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
512 samplerate = g_strdup_printf(_("%d Hz"), s->sample_rate);
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 /* filesize */
927
afd83c152cfd [svn] Look, you missed a spot.
chainsaw
parents: 826
diff changeset
515 f = vfs_fopen(filename, "rb");
458
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 if (f == NULL)
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
518 return;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
519
927
afd83c152cfd [svn] Look, you missed a spot.
chainsaw
parents: 826
diff changeset
520 vfs_fseek(f, 0, SEEK_END);
afd83c152cfd [svn] Look, you missed a spot.
chainsaw
parents: 826
diff changeset
521 filesize = g_strdup_printf(_("%lu Bytes"), vfs_ftell(f));
afd83c152cfd [svn] Look, you missed a spot.
chainsaw
parents: 826
diff changeset
522 vfs_fclose(f);
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
523
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
524 dialog = gtk_dialog_new();
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
525
1103
8bdcd65a57b7 [svn] Updating of some deprecated GTK functions.
nemo
parents: 927
diff changeset
526 g_signal_connect(G_OBJECT(dialog), "destroy",
8bdcd65a57b7 [svn] Updating of some deprecated GTK functions.
nemo
parents: 927
diff changeset
527 G_CALLBACK(gtk_widget_destroyed), &dialog);
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
528
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
529 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
530 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
531 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
532
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
533 dialog_vbox1 = GTK_DIALOG(dialog)->vbox;
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
534 gtk_widget_show(dialog_vbox1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
535
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
536 vbox1 = gtk_vbox_new(FALSE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
537 gtk_widget_show(vbox1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
538 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
539
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
540 hbox1 = gtk_hbox_new (FALSE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
541 gtk_widget_show (hbox1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
542 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
543
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
544 label_name = gtk_label_new(_("<b>Name:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
545 gtk_widget_show(label_name);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
546 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
547 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
548 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
549 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
550
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
551 entry_filename = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
552 gtk_widget_show(entry_filename);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
553 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
554 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
555 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
556
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
557 hbox2 = gtk_hbox_new(FALSE, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
558 gtk_widget_show(hbox2);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
559 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
560
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
561 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
562 gtk_widget_show(frame_wma_info);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
563 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
564 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
565 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
566
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
567 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
568 gtk_widget_show(alignment1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
569 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
570 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
571 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
572
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
573 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
574 gtk_widget_show(table1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
575 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
576 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
577 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
578 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
579 /* WMA Version label */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
580 label_wma_version = gtk_label_new(_("<b>WMA Version:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
581 gtk_widget_show(label_wma_version);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
582 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
583 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
584 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
585 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
586 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
587
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
588 /* Bitrate */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
589 label_bitrate = gtk_label_new(_("<b>Bitrate:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
590 gtk_widget_show(label_bitrate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
591 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
592 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
593 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
594 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
595 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
596
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
597 /* Samplerate */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
598 label_rate = gtk_label_new(_("<b>Samplerate:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
599 gtk_widget_show(label_rate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
600 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
601 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
602 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
603 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
604 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
605
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
606 /* Channels */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
607 label_chans = gtk_label_new(_("<b>Channels:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
608 gtk_widget_show(label_chans);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
609 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
610 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
611 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
612 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
613 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
614
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
615 /* Play time */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
616 label_play_time = gtk_label_new(_("<b>Play time:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
617 gtk_widget_show(label_play_time);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
618 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
619 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
620 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
621 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
622 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
623
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
624 /* Filesize */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
625 label_filesize = gtk_label_new(_("<b>Filesize:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
626 gtk_widget_show(label_filesize);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
627 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
628 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
629 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
630 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
631 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
632
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
633
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
634 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
635 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
636 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
637 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
638 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
639 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
640
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
641 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
642 gtk_widget_show(label_bitrate_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
643 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
644 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
645 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
646 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
647
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
648 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
649 gtk_widget_show(label_rate_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
650 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
651 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
652 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
653 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
654
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
655 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
656 gtk_widget_show(label_chans_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
657 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
658 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
659 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
660 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
661
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
662 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
663 gtk_widget_show(label_playtime_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
664 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
665 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
666 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
667 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
668
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
669 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
670 gtk_widget_show(label_filesize_val);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
671 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
672 (GtkAttachOptions)(GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
673 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
674 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
675
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
676 label4 = gtk_label_new (_("WMA Info"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
677 gtk_widget_show(label4);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
678 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
679 frame_tags = gtk_frame_new (NULL);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
680 gtk_widget_show (frame_tags);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
681 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
682 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
683 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
684
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
685
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
686 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
687 gtk_widget_show (alignment2);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
688 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
689 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
690 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
691
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
692
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
693 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
694 gtk_widget_show(table2);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
695 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
696 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
697 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
698 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
699
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
700 /* Artist */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
701 label_artist = gtk_label_new(_("<b>Artist:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
702 gtk_widget_show(label_artist);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
703 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
704 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
705 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
706 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
707 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
708
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
709 /* Title */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
710 label_title = gtk_label_new(_("<b>Title:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
711 gtk_widget_show(label_title);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
712 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
713 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
714 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
715 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
716 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
717
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
718 /* Album */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
719 label_album = gtk_label_new(_("<b>Album:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
720 gtk_widget_show(label_album);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
721 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
722 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
723 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
724 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
725 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
726
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
727 /* Comments */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
728 label_comments = gtk_label_new(_("<b>Comments:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
729 gtk_widget_show(label_comments);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
730 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
731 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
732 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
733 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
734 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
735
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
736 /* Year */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
737 label_year = gtk_label_new(_("<b>Year:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
738 gtk_widget_show(label_year);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
739 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
740 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
741 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
742 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
743 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
744
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
745 /* Track */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
746 label_track = gtk_label_new(_("<b>Track:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
747 gtk_widget_show(label_track);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
748 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
749 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
750 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
751 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
752 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
753
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
754 /* Genre */
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
755 label_genre = gtk_label_new(_("<b>Genre:</b>"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
756 gtk_widget_show(label_genre);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
757 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
758 (GtkAttachOptions) (GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
759 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
760 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
761 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
762
137
b8d4c1faa6d7 [svn] Import WMA decoder into SVN.
nenolod
parents:
diff changeset
763
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
764 entry_artist = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
765 gtk_widget_show (entry_artist);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
766 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
767 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
768 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
769 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
770 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
771
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
772 entry_title = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
773 gtk_widget_show(entry_title);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
774 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
775 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
776 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
777 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
778 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
779
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
780 entry_album = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
781 gtk_widget_show(entry_album);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
782 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
783 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
784 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
785 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
786 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
787
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
788 entry_comments = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
789 gtk_widget_show(entry_comments);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
790 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
791 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
792 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
793 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
794 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
795
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
796 entry_year = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
797 gtk_widget_show(entry_year);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
798 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
799 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
800 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
801 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
802 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
803
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
804 entry_track = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
805 gtk_widget_show(entry_track);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
806 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
807 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
808 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
809 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
810 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
811
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
812 entry_genre = gtk_entry_new();
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
813 gtk_widget_show(entry_genre);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
814 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
815 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
816 (GtkAttachOptions) (0), 0, 0);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
817 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
818 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
819
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
820
553
82346a6312c2 [svn] make WMA plugin strings translatable
nenolod
parents: 466
diff changeset
821 label5 = gtk_label_new(_("Tags"));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
822 gtk_widget_show(label5);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
823 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
824
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
825
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
826 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
827 gtk_widget_show(dialog_action_area1);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
828 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
829
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
830 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
831 gtk_widget_show(okbutton);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
832 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
833 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
834
1103
8bdcd65a57b7 [svn] Updating of some deprecated GTK functions.
nemo
parents: 927
diff changeset
835 g_signal_connect_swapped(G_OBJECT(okbutton), "clicked",
8bdcd65a57b7 [svn] Updating of some deprecated GTK functions.
nemo
parents: 927
diff changeset
836 G_CALLBACK(gtk_widget_destroy), GTK_OBJECT(dialog));
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
837
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
838 gtk_widget_show(dialog);
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
839
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
840 g_free(title);
458
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
841 g_free(channels);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
842 g_free(bitrate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
843 g_free(playtime);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
844 g_free(samplerate);
154ca7ff713f [svn] Temporarily stop building the WMA plugin until it can be fixed.
chainsaw
parents: 456
diff changeset
845 g_free(filesize);
456
ffd68c74022b [svn] Revert to revision 379, unable to fix fallout from 450, still segfaults intermittently.
chainsaw
parents: 440
diff changeset
846 }