search for: ogginfo2

Displaying 11 results from an estimated 11 matches for "ogginfo2".

Did you mean: ogginfo
2003 Sep 09
0
Should the vendor tag be updated for 1.0.1?
...003 12:19:32 -0000 @@ -416,7 +416,7 @@ } static int _vorbis_pack_comment(oggpack_buffer *opb,vorbis_comment *vc){ - char temp[]="Xiph.Org libVorbis I 20020717"; + char temp[]="Xiph.Org libVorbis I 20030902"; int bytes = strlen(temp); /* preamble */ Index: ogginfo/ogginfo2.c =================================================================== RCS file: /usr/local/cvsroot/vorbis-tools/ogginfo/ogginfo2.c,v retrieving revision 1.27 diff -u -r1.27 ogginfo2.c --- ogginfo/ogginfo2.c 4 Sep 2003 07:15:15 -0000 1.27 +++ ogginfo/ogginfo2.c 9 Sep 2003 12:19:52 -0000 @@ -35,6 +35...
2003 Nov 25
1
ogginfo: playlength display in milliseconds
...this time you will include it, because milliseconds support is crucial to one of my application (which is written in bash and uses ogginfo to get quite-precise play length of tracks). Best regards, Jack Angel -- The human knowledge belongs to the world diff -Nur vorbis-tools-1.0.1/ogginfo/ogginfo2.c vorbis-tools-1.0.1-msecs/ogginfo/ogginfo2.c --- vorbis-tools-1.0.1/ogginfo/ogginfo2.c 2003-09-10 19:05:09.000000000 +0400 +++ vorbis-tools-1.0.1-msecs/ogginfo/ogginfo2.c 2003-11-23 20:14:45.000000000 +0300 @@ -384,27 +384,28 @@ static void vorbis_end(stream_processor *stream) { misc_vorbi...
2002 Jun 26
2
vorbis-tools CVS
...echo "Download the appropriate package for your system," echo "or get the source from one of the GNU ftp sites" echo "listed in http://www.gnu.org/order/ftp.html" DIE=1 4. CFLAGS are huge. Could we possibly use config.h (currently empty)? 5. ogginfo2 notes / testing: * doesn't like standard input * doesn't give any output on tiny (1-byte) stream, not even error * doesn't tell when headers are incomplete, and gives junk info for the stream length and nan for the bitrate * doesn't say anything if I put 1k of random data at the end...
2010 Oct 22
1
Complete list of possible ogginfo warning and error messages
...RY VERY long when there are hundreds of files to check. I need a way to skim the output and only look at warnings and errors. In order to do that I need to know the complete list of warnings and errors that can be output by ogginfo. Does anybody have that list handy? Are they *all* contained in the ogginfo2.c source code file? I see a lot of warning-related or error-related strings in there, but I can't be sure that there are not more strings borrowed from other source files. Cheers, Kal -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermai...
2003 Jun 16
1
vorbis-tools: %Ld format specifier
Andrew Williams <andrew.s.williams@adelaide.edu.au> has tipped me off that vorbis-tools uses a format specifier "%Ld" in vcut/vcut.c and ogginfo/ogginfo2.c. This is plain wrong. The L modifier only applies to floating point. The modifier corresponding to "long long" is ll, e.g. "%lld". -- Christian "naddy" Weisgerber naddy@mips.inka.de --- >8 ---- List archives: http://www.xiph.org/arc...
2004 Jul 08
2
Trivial 1.1 rc1 patch for ogginfo
One liner to add 1.1 rc1 to list of recognized files. Cheers, -------------- next part -------------- A non-text attachment was scrubbed... Name: ogginfopatch Type: application/octet-stream Size: 375 bytes Desc: not available Url : http://lists.xiph.org/pipermail/vorbis-dev/attachments/20040708/7c8c0952/ogginfopatch.obj
2006 Jul 13
0
[vorbis-tools] Some patches coming from Debian bugs
...on 11702) +++ ogginfo/theora.c (working copy) @@ -15,6 +15,10 @@ ********************************************************************/ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdlib.h> #include <string.h> #include "theora.h" Index: ogginfo/ogginfo2.c =================================================================== --- ogginfo/ogginfo2.c (revision 11702) +++ ogginfo/ogginfo2.c (working copy) @@ -6,6 +6,9 @@ * Licensed under the GNU GPL, distributed with this program. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #incl...
2006 Jul 13
0
[vorbis-tools] Some patches coming from Debian bugs
...on 11702) +++ ogginfo/theora.c (working copy) @@ -15,6 +15,10 @@ ********************************************************************/ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <stdlib.h> #include <string.h> #include "theora.h" Index: ogginfo/ogginfo2.c =================================================================== --- ogginfo/ogginfo2.c (revision 11702) +++ ogginfo/ogginfo2.c (working copy) @@ -6,6 +6,9 @@ * Licensed under the GNU GPL, distributed with this program. */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #incl...
2002 Oct 25
1
vorbis software versions Was: file(1) support for Ogg and Ogg/Vorbis
Beni Cherniavksy (cben@techunix.technion.ac.il) wrote : [ big snip ] > Here are the dates as far as I know: > > > 20000508 (beta1/2) > 20001031 (beta3) > 20010225 (beta4) > 20010615 (RC1) > 20010813 (RC2) > 20010816 (gtune 1) (RC2 - Garf tuned v1) > 20011014 (GTune 2) (RC2 - Garf tuned v2) > 20011217 (RC3 - oggenc, oggdrop) > 20011231 (RC3 -
2004 Sep 24
2
Vendor id - vorbis 1.1
The download of the above still shows an id of: "Xiph.Org libVorbis I 20040629". Shouldn't this have been updated to: "Xiph.Org libVorbis I 20040920"? John
2002 Aug 14
0
automake 1.6 compatability patch
...bis-tools/ogginfo/Makefile.am,v retrieving revision 1.13 diff -u -r1.13 Makefile.am --- ogginfo/Makefile.am 11 Jul 2002 02:45:38 -0000 1.13 +++ ogginfo/Makefile.am 14 Aug 2002 17:12:18 -0000 @@ -2,18 +2,24 @@ AUTOMAKE_OPTIONS = foreign -mans = ogginfo.1 +man_pages = ogginfo.1 ogginfosources = ogginfo2.c if BUILD_OGGINFO +mans=$(man_pages) +else +mans= +endif datadir = @datadir@ localedir = $(datadir)/locale DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ -bin_PROGRAMS = ogginfo +bin_PROGRAMS = @OGGINFO@ +EXTRA_PROGRAMS = ogginfo mandir = @MANDIR@ man_MANS = $(mans) +EXTRA_MANS=$...