Displaying 20 results from an estimated 4000 matches similar to: "liboggz patch for better 64-bit support"
2012 May 16
2
Problems seeking with liboggz
Hi,
I intend to use Ogg+Speex for voice recording/playback in a VoIP app.
I am experimenting with liboggz to get acquainted with its API.
As test files I am using some Ogg-Speex files converted from WAV files
with speexenc.exe.
I wrote a little testing app in Visual Studio 2010 under Windows 7.
I defined OggzReadPage and OggzReadPacket callbacks with
oggz_set_read_page()
2005 Feb 27
3
Cygwin-bug#20050227T2233: liboggz: Missing manual pages - oggzinfo, oggzed, oggzdiff
Package: liboggz
Version: 0.9.0
Status:
Severity: normal
[Keep CC if you reply, I'm nt in this list] After porting the package to
Cygwin, some binaries do not have accompnying manual pages.
...
.inst/usr/share/man/man1/oggzdump.1.gz
.inst/usr/share/man/man1/oggzdiff.1.gz
.inst/usr/share/man/man1/oggzmerge.1.gz
.inst/usr/share/man/man1/oggzrip.1.gz
.inst/usr/include
.inst/usr/include/oggz
2012 May 21
1
Problems seeking with liboggz
Hi,
The Ogg-Speex test file I used is CBR. I am sure of that by running oggz-dump on the file and confirming that all audio packets have 38 bytes; that means (for narrowband) a constant 15 Kbps.
I wrote a very basic test program in Visual Studio 2010 that demonstrates the strange behaviour I mentioned.
The output shows that the audio file has 8 pages, 6 of them
2010 Sep 23
1
[resent][PATCH/liboggz] Fix an issue with the symlinks for pre-0.9.9 tool names
When files with pre-0.9.9 tool names exists in $(exec_prefix)/bin,
"make DESTDIR=${staging_dir} install" tries to delete them, which
may cause a failure for lack of permissions (quite likely to happen
when building a package as a normal user), and is wrong anyway
(nothing outside of DESTDIR should ever be changed by "make install").
With this patch, it will now cd to
2008 Dec 18
1
[PATCH] liboggz: add dirac.c as a source, not as a lib
Hi,
this patch adds dirac.c as a source file to the oggz tools,
rather than a lib. The previous would try to compile at link
time, and would not include the right -I flags, and this will
fail when including config.h in dirac.c (which will be needed
when someone else posts a patch to get liboggz to build
on win32).
I'm not toally sure why dirac.c isn't just in the sources in
liboggz rather
2009 Jun 09
2
oggz mingw
When I try to 'make' oggz (0.9.9), I get the following compile error
make[4]: Leaving directory `/c/liboggz/src/tools/oggz-chop'
make[4]: Entering directory `/c/liboggz/src/tools'
/bin/sh ../../libtool --tag=CC --mode=link gcc -g -O2 -Wall -Wextra -g
-std=gnu99 -Wdeclaration-after-statement -Wno-unused -o oggz-info.exe
oggz-info.o skeleton.o oggz_tools.o dirac.o
2008 Jul 04
2
Oggz 0.9.8 Released
Oggz 0.9.8 Release
------------------
Oggz comprises liboggz and the command-line tools oggzinfo, oggzdump,
oggzdiff, oggzmerge, oggzrip, oggz-chop, oggz-comment, oggz-scan, oggz-sort
and oggz-validate. oggz-chop can be used to serve time ranges of Ogg media
over HTTP by any web server that supports CGI.
liboggz is a C library providing a simple programming interface for reading
and writing Ogg
2008 Jul 04
2
Oggz 0.9.8 Released
Oggz 0.9.8 Release
------------------
Oggz comprises liboggz and the command-line tools oggzinfo, oggzdump,
oggzdiff, oggzmerge, oggzrip, oggz-chop, oggz-comment, oggz-scan, oggz-sort
and oggz-validate. oggz-chop can be used to serve time ranges of Ogg media
over HTTP by any web server that supports CGI.
liboggz is a C library providing a simple programming interface for reading
and writing Ogg
2008 Nov 23
2
ogg dirac granulepos in oggz tools
2008/11/24 David Flynn <davidf+nntp at woaf.net>:
> On a slightly unrelated note, i keep hitting the following error in
> liboggz when using the oggz tools on an ogg dirac stream:
>
> /home/davidf/project/liboggz/src/liboggz/oggz.c:202: oggz_close:
> Assertion `oggz_dlist_is_empty(oggz->packet_buffer)' failed.
>
> I'll supply an example file tomorrow if that
2009 May 04
1
[PATCH] oggz: inefficient seeking
I have a 1.1G Ogg file with vorbis and theora. oggz_seek_units() takes 14
seconds to find a position in the file towards the end. Now, the function
guess() in oggz_seek() guesses a position at about 1.5G and then slowly
searches back until it finds the end of the file (continously seeking
beyond the end of the file and then calling read which returns 0). Then
it does a linear scan from the
2009 Jun 15
2
oggz-chop gives segmentation fault
Hi,
I am using oggz-chop in the ubuntu jaunty, am I doing something wrong?
$ oggz-chop -o yt1.ogv -s0 -e500 ondrej.ogv
Segmentation fault
gdb session doesn't reveal much, since it isn't compiled with debugging symbols:
(gdb) bt
#0 0x00007f9e5d2f0092 in memcpy () from /lib/libc.so.6
#1 0x0000000000403698 in ?? ()
#2 0x000000000040262e in ?? ()
#3 0x000000000040285d in ?? ()
#4
2008 Nov 13
5
ogg dirac granulepos in oggz tools
Hi,
I'm wondering if the Dirac granulepos parsing in liboggz and display
in the oggz tools is currently correct, as I'd like to do a release of
these soon.
A couple of days ago David Schleef mentioned there were some problems.
David, is that currently true (ie. since David Flynn's recent updates
to support Dirac), and if so could you please explain what the
problems are, or point me
2009 Jun 18
5
Fixing ogg vorbis corruption caused by bad metadata
2009/6/18 Adam Rosi-Kessel <adam at rosi-kessel.org>:
> On Thu, Jun 18, 2009 at 11:12:30PM +0900, Conrad Parker wrote:
>> yow, that's pretty badly corrupted, the vorbis codebooks (usually the
>> third packet) is completely gone. It looks like you'd need to throw
>> away the first 16 packets, start with fresh headers, and copy in the
>> rest of the data
2008 Nov 21
6
ogg dirac granulepos in oggz tools
2008/11/21 David Flynn <davidf+nntp at woaf.net>:
> On 2008-11-21, Conrad Parker <conrad at metadecks.org> wrote:
>> 2008/11/15 David Flynn <davidf+nntp at woaf.net>:
>>> On 2008-11-14, Conrad Parker <conrad at metadecks.org> wrote:
>>>> It seems oggz chop, merge and sort will need some attention to deal
>>>> with the Dirac
2009 Jun 29
3
oggz-merge.exe
Hi folks,I'm joining this list because I've encountered difficulties with
the ogg tools.
I'm running Windows, and can't find binaries for liboggz tools, such as
oggz-merge.exe
Can someone provide oggz-merge.exe?
So I use ffmpeg (v19289) for muxing
ffmpeg -y -i sync2.ogg -i sync.ogv -vcodec copy -acodec copy sync2.ogv
but the framerate fluctuates wildly on playback, and ogginfo
2007 Dec 04
1
patch for oggz-comment
Hi,
It seems the oggz-comment on your computer has more features than the
one you sent in August :-) Any chance you could send a more recent
copy?
In any case, I've updated the --help output for the -s option, and
also added a manual page with the same info, in
doc/oggz-comment.1.sgml (in svn.annodex.net changeset:3280).
cheers,
Conrad.
On 07/11/2007, Kangyuan Niu
2009 May 04
5
Convert skeleton to "regular" format
Hi there,
we just encountered a problem with some tools obviously encoding into
the skeleton format by default, which leads to problems with several
other tools, in that particular case it's oggCut. When we try to
edit/cut an ogg file with it, the program crashes with a segfault.
I was able to locate and fix the problem in the oggCut source but I am
wondering how to convert my ogg files to a
2010 Sep 19
2
Two mux-fix patches against current liboggz
Two bugs in liboggz mux ordering bit me tonight. These are patches
against current GIT, I'll apply if no one else volunteers, but I'd
prefer a quick review. I'm surprised they'd not been caught, as it
was causing oggz-sort/oggz-merge to mis-mux potentially all files
containing theora (the frame->time calculation accounted for stream
version backwards, and the result was always
2010 Sep 19
2
Two mux-fix patches against current liboggz
Two bugs in liboggz mux ordering bit me tonight. These are patches
against current GIT, I'll apply if no one else volunteers, but I'd
prefer a quick review. I'm surprised they'd not been caught, as it
was causing oggz-sort/oggz-merge to mis-mux potentially all files
containing theora (the frame->time calculation accounted for stream
version backwards, and the result was always
2010 Sep 19
2
Two mux-fix patches against current liboggz
Two bugs in liboggz mux ordering bit me tonight. These are patches
against current GIT, I'll apply if no one else volunteers, but I'd
prefer a quick review. I'm surprised they'd not been caught, as it
was causing oggz-sort/oggz-merge to mis-mux potentially all files
containing theora (the frame->time calculation accounted for stream
version backwards, and the result was always