similar to: Question about MVect in decode.c

Displaying 20 results from an estimated 4000 matches similar to: "Question about MVect in decode.c"

2004 Apr 01
1
Theora MVect not defined in coding mode 0
Just wondering if someone can help me out... I'm testing the core of my decoder filter (win32)... and when i get into this function: tatic void DecodeMVectors ( PB_INSTANCE *pbi,ogg_uint32_t SBRows,ogg_uint32_t SBCols ) The decoding mode is 0. When it attempts to do these lines.... pbi->FragMVect[FragIndex + 1].x = MVect[1].x;pbi->FragMVect[FragIndex + 1].y = MVect[1].y;
2005 Sep 27
1
Question about number of frames in ogg/theora video file.
Hello. How can I tell the number of frames in ogg/theora video file, without actually reading the file? Or, how can I tell its playing time (which is basically the same thing). I didn't find the information in THEORA_STATE, THEORA_INFO, but with the codec installed (illuminable oggcodecs), Windows Media Player shows the ogg/theora file playing time, before it starts playing the file.
2004 Oct 02
2
Theora decode problem
I am trying to write a sample app that uses Theora for encoding/decoding a network video stream. Unfortunately, I keep running into this error: Run-Time Check Failure #3 - The variable 'MVect' is being used without being defined. It always happens on decryption, line 467 in decode.c. The issue is that CodingMethod is equal to 5 (CODE_GOLDENFRAME), which doesn't initialize the
2007 Nov 26
1
Problem with configure's detection of glob on 2.6.0 (PR#10468)
Full_Name: Mike Pacey Version: 2.6.0 OS: SuSe Linux 9.3 x86_64 Submission from: (NULL) (194.80.32.10) A "vanilla" version of R configures and compiles without a problem on my system. Switching to using the PGI compiler configures correctly (see the values at the bottom fo thismessage), but compilation aborts with: pgcc -I../../src/extra/zlib -I../../src/extra/bzip2
2011 Mar 24
1
Various typo in spec
Hi, I have few questions on the specification. * Just to understand : - What is the interest of super blocks ? Is it to save place when recording coded block flags (7.3) ? - What is the advantage of using the coded order ? it is more often easier with raster order (especially to find neighbor in 7.8.1 for exemple). Is it to simplify the correspondence between block, macro block
2004 Aug 29
0
theora issues
I did a quick test integration of theora into our engine and ran into a couple of issues listed below. .dsp files in the alpha 3 zip are in unix format. Additional include path for the static theora library project is wrong. Library relies on libogg - would be nice to have a single zip including all dependencies. dumpvideo sample relies on global structures being zero initialized though does
2004 Aug 29
0
theora a3 issues
I did a quick test integration of theora into our engine and ran into a couple of issues listed below. .dsp files in the alpha 3 zip are in unix format. Additional include path for the static theora library project is wrong. Library relies on libogg - would be nice to have a single zip including all dependencies. dumpvideo sample relies on global structures being zero initialized though does
2005 Mar 14
1
question from beginner (YCbCr to RGB)
Hello, i'm sorry for my English is not good. I need help with convert yuv_buffer data (YCbCr) to RGB without SDL. I write: BYTE *frame=new BYTE[YUV_BUFFER.y_height*YUV_BUFFER.y_width*4]; for(int cc=0; cc<YUV_BUFFER.y_height*YUV_BUFFER.y_width; cc++) { frame[cc*4+0]=YUV_BUFFER.y[cc]+1.371*(YUV_BUFFER.v[cc]-128);
2009 Feb 05
1
Theora encode/decode performance is poor with resolution 640X480
Hi, We build a Voip client with Iaxclient(Jiaxclient+Iaxclient2.1beta1+Theora1.0+libvidcap0.21),when we established video call with resolution 640X480 in both sides,the CPU is consumed about 100%,the workload of Asterisk server is good at that moment.This issue does not exist with the resolution 320X240, the environment is as following, - CPU Interl Celeron 2.66GHz,RAM1GB, - Windows XP
2009 Feb 06
1
Theora encode/decode performance is poor - with resolution 640X480
We build a Voip client with Iaxclient(Jiaxclient+Iaxclient2.1beta1+Theora1.0+libvidcap0.21),when we established video call with resolution 640X480(bitrate:500000,frameRate:11,fragsize:1472) in both sides,the CPU is consumed about 100%,the workload of Asterisk server is good at that moment.This issue does not exist with the resolution 320X240(bitrate:204800,frameRate:11,fragsize:1500), the
2020 May 27
4
default behavior or
Hi Devs, going by this link https://llvm.org/docs/LangRef.html#floatenv it says that floating point operation does not have side effects by defaults. but when compile a test case i.e. cat a.c float foo(float a, float b) { return a+b; } $clang a.c -O2 -S -emit-llvm emit ir like: $cat a.ll --------------------------------------- ; ModuleID = 'a.c' source_filename = "a.c" target
2002 Aug 03
7
theora MMX decoder
I try to merge VP3's mmx decoder into theora. http://kyoto.cool.ne.jp/vp3/developers/theora-alpha3-MMXd-src.zip You can see the change by searching the keyword "_UsingMMX_" in all lib folder's file. From VP3???YO vp3@go8.enjoy.ne.jp
2010 Mar 04
2
libavcodec vp3 / theora decoder speedup
The vp3 / theora decoder in FFmpeg project received a major speedup: http://multimedia.cx/eggs/profiling-and-optimizing-theora/#comment-150751 http://git.ffmpeg.org/?p=ffmpeg;a=commit;h=6e8061980c9a18a0eb9802f5dc5becc349066680 http://git.ffmpeg.org/?p=ffmpeg;a=commit;h=8476744ba50d26a3e188def192cd9086b0f781d7 http://git.ffmpeg.org/?p=ffmpeg;a=commit;h=a51faef9b61bd80499a28322802ef4b22be44d43
2009 Sep 17
4
Optimised ARM Ogg/Theora/Vorbis decoder
This is a note to announce the availability of "Ogg Theorarm", an optimised ARM implementation of decoding libraries for the Theora video code, and Vorbis audio codec from xiph.org. Full details of this code release can be found at <http://www.wss.co.uk/pinknoise/theorarm>, but highlights include: * Full speed playback of a 320x240x25fps clip with a 48kHz stereo audio track on
2008 Jun 18
2
Simple decoder (keyframe only) implementation ?
Hello everybody ! I am working on a php class to enable, on the server-side, to extract useful data from Ogg theora videos. http://opensource.grisambre.net/ogg . I need to have it extract a thumbnail picture from a video (much like dailymotion or youtube). Right now, I am doing it using the ffmpeg-php extension (for picture extraction only), but the problem is that this module is available on
2007 Mar 25
3
MMX patch to speed up Theora decoding
Hi, Attached is a patch against 1.0alpha7 to speed up Theora decoding. It is about 15~20% faster in my test. It consists of following things: * MMX loop filter based on Rudolf Marek's patch in http://lists.xiph.org/pipermail/theora-dev/2005-August/002838.html * MMX IDCT based on Rudolf Marek's patch in http://lists.xiph.org/pipermail/theora-dev/2005-July/002816.html and the code in
2010 May 04
1
Decoding Theora: Number of frames?
Hi all I'm currently writing a decoder for Ogg Theora videos. Since I'd like to show the progress of the video, I need to know how to read the current (with granulepos?) and total number of frames from the Theora header. I didn't find an appropriate field in the header specifications for the total number. Thanks for helping me out with this. Regards, Stefan
2011 May 18
1
Theora decoding performance
As far as my very limited knowledge goes the Theora video format is less complex than H.264 (High Profile for example). Please correct me if I am wrong. Does this also mean that I can expect that decoding a Theora stream is easier/faster to decode than a H.264 stream with comparable quality / or comparable bitrate? My (very practical) tests do show that it's easier for my computer to
2011 Jan 19
1
How to build Theora decoder on VC++ paltform
On 17.01.2011 12:35, Raju wrote: > Dear friends > Recently i have downloaded Theora video codec from http://www.xiph.org/ > , > here its having both encoder and decoder , how can i build only > decoder on VC + windows platform , if i build now i will be getting " > Cannot open include file: 'ogg/ogg.h': No such file or directory " > pls send me solution for
2020 Jan 07
3
Calling function from non-default floating-point environment
Hi all, Implementation of #pragma STDC FENV_ACCESS raises a problem: what to do if a function is called inside a region where FP environment differs from the default? If the function expects default FP mode it may work incorrectly in such case. The C2x standard draft ( http://www.open-std.org/jtc1/sc22/wg14/www/docs/n2454.pdf) states (7.6p4): Certain programming conventions support the intended