Displaying 5 results from an estimated 5 matches for "track_number".
2004 Sep 10
2
PATCH: XMMS year bug
...m.
Tyler Eaves
bash-2.05b$ diff -C 1 wrap_id3.c
/usr/portage/distfiles/flac-1.1.0/src/plugin_xmms/wrap_id3.c
*** wrap_id3.c  Fri Jul 16 18:28:35 2004
--- /usr/portage/distfiles/flac-1.1.0/src/plugin_xmms/wrap_id3.c      
 Thu Jan  2 02:18:57 2003
***************
*** 105,107 ****
        input->track_number = local__getnum(tag.track_number);
!       input->year = local__getnum(tag.year_recorded);
        input->genre = local__getstr(tag.genre);
--- 105,107 ----
        input->track_number = local__getnum(tag.track_number);
!       input->year = local__getnum(tag.year_performed);
        in...
2002 Feb 12
2
problem with Vorbis DLL's
...like this...
typedef int (*OVOPEN)(FILE*,OggVorbis_File*,char*,long);
HMODULE				 hVorbisFile;
OVOPEN				 hOvOpen;
hVorbisFile = LoadLibrary(_T("Vorbisfile.DLL"));
hOvOpen = (OVOPEN)GetProcAddress(hVorbisFile, _T("ov_open"));
printf(filename, "music\\Track%02d.OGG", track_number);
vorbis_fd = fopen(filename, _T("rb"));
_setmode( _fileno( vorbis_fd ), _O_BINARY );
if ((hOvOpen)(vorbis_fd, &vf, NULL, 0) < 0) {
then POOF!
<p>thanks!
Brent
<p>--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/...
2004 Sep 10
2
xmms plugin, fileinfo
....composer);
+		convert_from_file_to_user_in_place(&tag.performer);
+		convert_from_file_to_user_in_place(&tag.album);
+		convert_from_file_to_user_in_place(&tag.year_recorded);
+		convert_from_file_to_user_in_place(&tag.year_performed);
+		convert_from_file_to_user_in_place(&tag.track_number);
+		convert_from_file_to_user_in_place(&tag.tracks_in_album);
+		convert_from_file_to_user_in_place(&tag.genre);
+		convert_from_file_to_user_in_place(&tag.comment);
+	}
+
+	if(tag.title)
+		gtk_entry_set_text(GTK_ENTRY(title_entry), tag.title);
+	else
+		gtk_entry_set_text(GTK_ENTRY(t...
2004 Sep 10
2
getting framesize in client
...@@ -98,6 +98,8 @@
 	XMMS_NEW_TITLEINPUT(input);
 
 	input->performer = local__getstr(tag.performer);
+	if (!input->performer)
+		input->performer = local__getstr(tag.composer);
 	input->album_name = local__getstr(tag.album);
 	input->track_name = local__getstr(tag.title);
 	input->track_number = local__getnum(tag.track_number);
-------------- next part --------------
Index: configure.in
===================================================================
RCS file: /cvsroot/flac/flac/configure.in,v
retrieving revision 1.64
diff -u -r1.64 configure.in
--- configure.in	7 Nov 2002 05:14:02 -0...
2004 Sep 10
3
getting framesize in client
On Fri, Nov 08, 2002 at 12:39:52PM -0800, Josh Coalson wrote:
> --- Miroslav Lichvar <lichvarm@phoenix.inf.upol.cz> wrote:
> > I have few notes:
> > 
> > It seems there is changed API in CVS again. So, what about adding
> > function like
> > 	unsigned FLAC__format_frame_size(const FLAC__Frame *frame)
> > which returns size of the frame in bytes. This