similar to: error in "encoder_example.c"

Displaying 20 results from an estimated 900 matches similar to: "error in "encoder_example.c""

2001 Sep 04
1
Problems trying to run the examples in windows vorbis sdk
I have just downloaded the vorbis sdk for windows, for researching purposes. I have compiled the example 'encoder_example.c' just to start, and it compiles, but I got a error in the following line just at the beginning: vorbis_encode_init(&vi,2,44100, -1, 128000, -1); The error is more or less: The instruction at '0xaddresss' referenced memory at '0xaddress'. The
2002 Jan 01
6
new vorbisenc behaviour
Just got around to compiling RC3 under beos and came across an anomaly when using managed bitrates. I haven't changed the code for the beos encoder but I now get double the bitrates so vorbis_encode_init(&vi,mediaFormat.u.raw_audio.channel_count,(long)mediaFormat.u.raw_audio.frame_rate , -1, 128000, -1); now gives me vorbis files that average around 325 - 350. Is this now the correct
2001 Sep 05
4
Problems trying to run the examples in windows v orbis sdk
Yes, it works now. Thank you very much. -----Original Message----- From: Chris Wolf [mailto:cwolf@starclass.com] Sent: 05 September 2001 10:12 To: vorbis-dev@xiph.org Subject: Re: [vorbis-dev] Problems trying to run the examples in windows vorbis sdk On 9/4/2001 at 6:00 PM Pablos-Sanchez, Rolando wrote: >I have just downloaded the vorbis sdk for windows, for researching >purposes. >
2002 Jul 15
6
confusing comment in encoder_example.c
I think the example in the comment has a '-' that shouldn't be there (line 108): /********************************************************************* Encoding using a VBR quality mode. The usable range is -.1 (lowest quality, smallest file) to 1. (highest quality, largest file). Example quality mode .4: 44kHz stereo coupled, roughly 128kbps VBR ret =
2004 May 29
2
Snom and multiple lines
How do I get the lights to work correctly on a SNOM 200 when I configure it for more than one line? The lights stay on solid, although the buttons work correctly for making calls. Thanks in advance. Dennis Engdahl SnowCrest, Inc. www.snowcrest.net
2004 Aug 06
2
vorbis_encode_init() bitrate arguments - offtopic
Hi, It's a bit offtopic for this list, but you might be able to help. For libvorbis rc3, what is the correct bitrate parametrization for the call vorbis_encode_init()? For rc2, it worked calling it the following way: vorbis_encode_init( &vorbisInfo, 2, // two channels 44100, // 44.1kHz
2000 Jun 20
5
Win32 DLL
I've put together a first cut for a Win32 DLL using the BladeEnc interface. Right now, it's just a drop-in replacement for BladeEnc.dll that ignores all encoding parameters passed to it and uses the info_A vorbis_info struct (same as the encoder_example). It's not particularly useful as of yet, but you can rename it to BladeEnc.dll and use it with any number of rippers out there
2002 Jan 03
3
Adding RC3 support to GoldWave
Here are some minor things I noticed when updating the vorbis module for GoldWave: Bitwise.c, line 175 and 207 Warning: Negative unsigned value ret=-1UL; Info.c, line 385 Warning: Unreachable code break; vorbisfile.c, line 1407 Warning: Call to function with no prototype int host_endian = host_is_big_endian(); fix: add 'void' to line 1339: static int host_is_big_endian( void )
2001 Sep 22
3
retrieving "instant" bitrate without vo_open?
ok, I'm aware that vo_open cant be used at the same time as other functions such as ogg_sync_wrote, ogg_sync_pageout, ogg_stream_pagein, ogg_stream_packetout and vorbis_synthesis_headerin. In order to get information from the bitstream i've been using this method because it's fast and doesn't require decoding of the stream. But, i can only retrieve the average bitrate of
2005 Nov 28
1
Compile Encoder_example.c
Hi, I'm a highschool student, I'm looking for information about converting Wave file (*.wav) into Ogg file (*.ogg) and i found encoder_example.c inside libvorbis's example directory. I try to compile it using Microsoft Visual C++ 6.0 ,but it goes error like this : --------------------Configuration: encoder_example - Win32 Debug-------------------- Linking... encoder_example.obj :
2008 Jan 15
2
Encoding with encoder_example
I have encoded successfully a YUV stream by using the encoder_example. Can We encode a row stream (get from a web cam) by using encoder_example. If we can not, is there any other way to encode a row stream by using theora codec. -- Nuwan Millawitiya -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Jan 15
2
Encoding with encoder_example
I have encoded successfully a YUV stream by using the encoder_example. Can We encode a row stream (get from a web cam) by using encoder_example. If we can not, is there any other way to encode a row stream by using theora codec. -- Nuwan Millawitiya -------------- next part -------------- An HTML attachment was scrubbed... URL:
2007 Oct 04
1
encoder_example input formats
Hi all I have the raw out put of a video camera in following format: mjpegb, yuvj422p, 1920x1080, 24.00 fps(r). I cannot directly convert this raw footage to Theora due to the YUV4MPEG2 only restriction of the encoder_example. Isn't it better to support other raw formats in encoder_example, such as what I have, mjpegb, yuvj422p? I presume even if I convert the mjpegb, yuvj422p to
2007 Aug 30
1
can not encode a raw video file with "encoder_example"
hi all, i tried to encode a .yuv file with the encoder_example.c but it give an error message as follows ./encoder_example -v 1 file_1.yuv > file_1.ogg Input file file_1.yuv is neither a WAV nor YUV4MPEG2 file. so the error message is understandable for anyone. when this file is play with mplayer it shows as follow
2006 Feb 03
2
encoder_example
i have configuered and built libtheora with --enable-encoder but when i make install, encoder_example is not installed. why not? the object file and script are created in the examples subdir, they are just not installed... thanks for your help -------------- next part -------------- An HTML attachment was scrubbed... URL:
2007 Oct 09
1
dlls and encoder_example
hello, i have vorbis sdk 1.0rc2 and i have could compile encoder_example.c in a console aplication project on VC 6. But when i execute the program, only appears the black visual display screen without obtaining result. where is my problems?? other question: in sdk there is for example, vorbis.dll and vorbis_d.dll, which is the difference? i have could compile any project like libvorbis
2003 Jun 09
2
[PATCH] Fix for YUV4MPEG support in encoder_example
As was briefly discussed on IRC, ffmpeg and mplayer currently output two somewhat incompatible YUV4MPEG streams. This meant that encoder_example could take input from mplayer, but not ffmpeg or movtoy4m (a QuickTime->Y4M tool). This is a patch that fixes this issue and should allow encoder_example to take input from either format: diff -urd xiph-cvs/theora/examples/encoder_example.c
2007 Oct 19
2
Debug the encoder_example
hi all, i am trying to debug the encoder_example with gdb. after the line number 669, it will go to a place "ogg_stream_init (os=0xbff0ec84, serialno=1418647043) at framing.c:189" but i couldn't find the file "framing.c" with in the "ibtheora-1.0alpha7" directory. please anyone can tell me where is this file -- ----------- Regards, Janaka Priyadarshana
2005 Dec 16
1
lib for compiling encoder_example.c
where do i can get these files -libogg.lib, -libvorbis.lib, -libvorbisenc.lib should i compile it on my own ? How do i compile it ? In step by step explanation please.. Thank you.. Best Regards __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
2005 Mar 13
1
"encoder_example" segfaulting...(and a couple of other questions)
I picked up the imported Feb 2005 issue of "Linux Format", in part for the Theora article...and I was pleasantly surprised to see my mouldering old "Ogg-Theora Micro-howto[1]" document referenced. I figured that meant people might still be finding it useful, so I felt it was time to dust it off and update it. I also noticed that archive.org now has a small but growing