search for: theora_i_spec

Displaying 10 results from an estimated 10 matches for "theora_i_spec".

2005 Aug 20
0
libtheora-1.0alpha5 release
.../theora/libtheora-1.0alpha5.zip As always, you can insert .eu, au, or us. in the url after 'downloads.' to access a more local mirror. Updated API documentation and spec: http://theora.org/doc/libtheora-1.0alpha5/ http://theora.org/doc/libtheora-1.0alpha5.pdf http://theora.org/doc/Theora_I_spec.pdf SHA-1 checksums: 8e740ccd7219861de83ac17ecceb13c02ed7e24a libtheora-1.0alpha5.tar.bz2 5e77de8ab428a203df4a680a078146429d190120 libtheora-1.0alpha5.tar.gz be9867d7fe777a9ef413ae95f2b9608885f9bfe5 libtheora-1.0alpha5.zip MD5 checksums: 41940562932a8b7bf795d79e4190b21a libtheora-1....
2005 Aug 20
0
libtheora-1.0alpha5 release
.../theora/libtheora-1.0alpha5.zip As always, you can insert .eu, au, or us. in the url after 'downloads.' to access a more local mirror. Updated API documentation and spec: http://theora.org/doc/libtheora-1.0alpha5/ http://theora.org/doc/libtheora-1.0alpha5.pdf http://theora.org/doc/Theora_I_spec.pdf SHA-1 checksums: 8e740ccd7219861de83ac17ecceb13c02ed7e24a libtheora-1.0alpha5.tar.bz2 5e77de8ab428a203df4a680a078146429d190120 libtheora-1.0alpha5.tar.gz be9867d7fe777a9ef413ae95f2b9608885f9bfe5 libtheora-1.0alpha5.zip MD5 checksums: 41940562932a8b7bf795d79e4190b21a libtheora-1....
2005 Aug 25
0
libtheora-mmx-1.0alpha5 release
...ora/libtheora-mmx-1.0alpha5.zip As always, you can insert .eu, au, or us. in the url after 'downloads.' to access a more local mirror. Updated API documentation and spec: http://theora.org/doc/libtheora-1.0alpha5/ http://theora.org/doc/libtheora-1.0alpha5.pdf http://theora.org/doc/Theora_I_spec.pdf SHA-1 checksums: c44254791a6f4f8a97ebbbe81b3a99f26899a59a libtheora-mmx-1.0alpha5.tar.bz2 95dbbba0ae847849c8f30f09ed7a8d99380c4185 libtheora-mmx-1.0alpha5.tar.gz f757cd16141abfc32592dc6335935617421b0aba libtheora-mmx-1.0alpha5.zip MD5 checksums: 5d35bb7210c0a699d28aaf9baf7bb2e0...
2005 Dec 23
1
want to write comments
Hi, I am a littlt new developper, I learn Python and C. I was looking for some command line program similar to vorbiscomment. I did not find. I would just try to write a very simple one in C or Python. That would be a simple parse of the first bits of the file, if my guesses are right. But where could I see the amout of binary bit I should open, and how is the signification of any fields I would
2004 Sep 07
3
FPGA implementation in the camera
I'm considering implementing the Theora format in the FPGA of the new camera. The previous model (Elphel 313 - http://www.elphel.com, https://sourceforge.net/projects/elphel) had smaller FPGA and was able to produce just motion JPEG utilizing 97% of the resources. The new (model 333) camera uses 3 times bigger FPGA (and also faster), it also has increased frame buffer and system memory.
2004 Sep 07
3
FPGA implementation in the camera
I'm considering implementing the Theora format in the FPGA of the new camera. The previous model (Elphel 313 - http://www.elphel.com, https://sourceforge.net/projects/elphel) had smaller FPGA and was able to produce just motion JPEG utilizing 97% of the resources. The new (model 333) camera uses 3 times bigger FPGA (and also faster), it also has increased frame buffer and system memory.
2004 Oct 31
3
a question about Bitstream Header.
...I have done to implement that function and confirmed it works well. So, my question is 'is it really OK to ignore its formal specification?'. I have heard 'Theora I pecification' has been frozen and I hope that specification has not been updated yet. [1] http://www.theora.org/doc/Theora_I_spec.pdf [2] http://svn.xiph.org/trunk/theora/lib/toplevel.c [3] http://www.jcraft.com/jroar/ Thanks, -- ymnk
2004 Nov 17
4
FPGA implementation
Andrey Fillipov posted the following update at his sourceforge website on 11/16/04. "Coded and simulated the DC predictor module - hope the Theora description I used matches the actual codec :-) Also modified the modules released earlier to support non-coded blocks. For the DCT/IDCT I tried to reduce the power consuption by minimizing switching of the registers and counters when the
2004 Jul 14
4
aspect ratio ?
Can someone enlighten me on what the status is of aspect ratio in theora is ? The ti structure has aspect_num and _den values, which I assume give the intended display aspect ratio (e.g. 4/3). The sample files on the bittorrent seem to say both values are 0 for all files. I'd think it should at least be made impossible to have a 0 as the denominator. The library doesn't check the
2006 May 30
2
16 bits, cast on idct function
Hi all, Just a stupid question The IDctSlow function on file idct.c has this line : ip[0] = (ogg_int16_t)((_Gd + _Cd ) >> 0); The ip[0] , _Gd and _Cd are of type ogg_int32_t My question is: The result of (_Gd + _Cd) can be a number with more than 16 bits ? (yes, it can be because they are int32, but the algorithm could guarantee something about that... I dont know...) If