Displaying 2 results from an estimated 2 matches for "ogg_codec_tag".
Did you mean:
  ogg_codec_t
  
2007 Mar 15
2
Logging album info for ogg-vorbis
Hi, i just joined the list.  I was wondering if anyone would be interested
in a change to icecast that logs album info as well as ARTST and TRACK.  I
have made the changes to the source code and it's working fine.   If there
is any interest, I could look into making it an addition to the code.
Let me know.
thanks,
-- 
Aaron
-------------- next part --------------
An HTML attachment was
2007 Mar 26
0
Logging album info for ogg-vorbis
...->listeners);
diff -aur icecast-2.3.1/src/format_ogg.h icecast-2.3.1-modified/src/format_ogg.h
--- icecast-2.3.1/src/format_ogg.h	2005-08-19 04:01:58.000000000 +0200
+++ icecast-2.3.1-modified/src/format_ogg.h	2007-03-26 23:15:51.000000000 +0200
@@ -41,6 +41,11 @@
     long bitrate;
     struct ogg_codec_tag *current;
     struct ogg_codec_tag *codec_sync;
+
+  char **metadata;
+  int metadata_count;
+  int metadata_len;
+  
 } ogg_state_t;
 
 
diff -aur icecast-2.3.1/src/format_vorbis.c icecast-2.3.1-modified/src/format_vorbis.c
--- icecast-2.3.1/src/format_vorbis.c	2005-11-30 19:16:17.000000000 +0100...