Displaying 9 results from an estimated 9 matches for "x86state".
2008 Apr 10
2
Delay occurred when the makefile change
...fo.c \
dec/decode.c \
dec/dequant.c \
dec/fragment.c \
dec/huffdec.c \
dec/idct.c \
dec/info.c \
dec/internal.c \
dec/quant.c \
dec/state.c
if CPU_x86_64
decoder_x86_sources = \
dec/x86/mmxidct.c \
dec/x86/mmxfrag.c \
dec/x86/mmxstate.c \
dec/x86/x86state.c
else
if CPU_x86_32
decoder_x86_sources = \
dec/x86/mmxidct.c \
dec/x86/mmxfrag.c \
dec/x86/mmxstate.c \
dec/x86/x86state.c
endif
endif
libtheora_la_SOURCES = \
cpu.c \
$(decoder_x86_sources) \
$(decoder_sources) \
$(encoder_arch_sources) \
$(encoder_sources) \...
2008 Apr 23
1
Theora got extreamly slow (Makefile.am was changed)
...fo.c \
dec/decode.c \
dec/dequant.c \
dec/fragment.c \
dec/huffdec.c \
dec/idct.c \
dec/info.c \
dec/internal.c \
dec/quant.c \
dec/state.c
if CPU_x86_64
decoder_x86_sources = \
dec/x86/mmxidct.c \
dec/x86/mmxfrag.c \
dec/x86/mmxstate.c \
dec/x86/x86state.c
else
if CPU_x86_32
decoder_x86_sources = \
dec/x86/mmxidct.c \
dec/x86/mmxfrag.c \
dec/x86/mmxstate.c \
dec/x86/x86state.c
endif
endif
libtheora_la_SOURCES = \
cpu.c \
$(decoder_x86_sources) \
$(decoder_sources) \
$(encoder_arch_sources) \
$(encoder_sources) \...
2008 Jun 30
1
building theora for windows
...atic theora library for windows from sources with
Visual Studio Express.
Building the ogg-library was a piece of cake, but after converting the
project-files for theora, I still get numerous errors, such as:
fatal error C1083: Datei (Quelle) kann nicht ge?ffnet werden:
"..\..\..\lib\dec\x86_vc\x86state.c": No such file or directory mmxstate.c
Probably it's just a problem with path-variables incorrectly set, but I'm no
real fan of the Visual C environment and I therefore unfortunately just have
rudimentary knowledge with that kit and can't fix it. I'm just trying to
build a J...
2005 Aug 17
2
MMX loop filter for theora-exp
...[64]);
void oc_idct8x8_10_mmx(ogg_int16_t _y[64]);
void oc_fill_idct_constants_mmx(void);
-
+void oc_state_loop_filter_frag_rows_mmx(oc_theora_state *_state,int *_bv,
+ int _refi,int _pli,int _fragy0,int _fragy_end);
#endif
diff -Naur a/lib/x86/x86state.c b/lib/x86/x86state.c
--- a/lib/x86/x86state.c 2005-08-17 09:29:56.622829000 +0200
+++ b/lib/x86/x86state.c 2005-08-17 10:22:48.441055250 +0200
@@ -10,6 +10,10 @@
_state->opt_vtable.state_frag_copy=oc_state_frag_copy_mmx;
_state->opt_vtable.state_frag_recon=oc_state_frag_recon_mmx;...
2005 Jul 20
1
MMX IDCT for theora-exp
..._ac_iquant[64]);
#endif
diff -Naur a/lib/Makefile.am b/lib/Makefile.am
--- a/lib/Makefile.am 2005-07-20 11:39:30.383889500 +0200
+++ b/lib/Makefile.am 2005-07-20 11:57:27.867228000 +0200
@@ -5,6 +5,7 @@
EXTRA_DIST = \
x86/cpu.c \
+ x86/mmxidct.c \
x86/mmxfrag.c \
x86/mmxstate.c \
x86/x86state.c
@@ -12,6 +13,7 @@
if OC_X86ASM
X86ASM_FILES = \
x86/cpu.c \
+ x86/mmxidct.c \
x86/mmxfrag.c \
x86/mmxstate.c \
x86/x86state.c
diff -Naur a/lib/state.c b/lib/state.c
--- a/lib/state.c 2005-07-20 11:39:30.351887500 +0200
+++ b/lib/state.c 2005-07-20 11:56:57.753346000 +0200
@@ -508,6 +508...
2008 Apr 21
1
Compile libtheora 1.0beta3 with VS2005
.....\..\lib\dec\x86_vc\mmxloopfilter.c': No such file or directory c1
Error 19 fatal error C1083: Cannot open source file:
'..\..\..\lib\dec\x86_vc\mmxstate.c': No such file or directory c1
Error 20 fatal error C1083: Cannot open source file:
'..\..\..\lib\dec\x86_vc\x86state.c': No such file or directory c1
****************************************************************************
so what can I do to solve this problem.
--
-----------
Regards,
R. P. Janaka
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org...
2011 Apr 27
0
theora-dev Digest, Vol 81, Issue 9
...aven't seen our normal win32 maintainer online for a few days, so
> I'll jump in here and respond to this.
>
> > 1>c1 : fatal error C1083: Cannot open source file:
> > '..\lib\dec\x86_vc\x86stat.c': No such file or directory
>
> The project file in svn has x86state.c, not x86stat.c. I just checked.
> Where did you get your project file?
>
> As for the rest, perhaps you moved the project file relative to the
> source files? (I'll note that the project files in svn are in
> win32/VS2010/libtheora and the path starts with "..\..\..",...
2011 Apr 22
2
Can't compile libtheora vs2010
I'm getting errors like so on initial build of libtheora -
1>c1 : fatal error C1083: Cannot open source file:
'..\lib\dec\x86_vc\x86stat.c': No such file or directory
1> mmxstate.c (TaskId:16)
1>c1 : fatal error C1083: Cannot open source file:
'..\lib\dec\x86_vc\mmxstate.c': No such file or directory
1> mmxloopfilter.c (TaskId:16)
1>c1 : fatal error C1083:
2007 Oct 09
1
VC6 Patch
...\x86_32_vs\recon_mmx.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\lib\enc\reconstruct.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\lib\enc\scan.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\lib\dec\state.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\lib\dec\x86\x86state.c
+# End Source File
# End Group
# Begin Group "Header Files"
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# Begin Source File
-SOURCE=..\lib\block_inline.h
+SOURCE=..\lib\dec\apiwrapper.h
# End Source File
# Begin Source File
-SOURCE=..\lib\encoder_internal.h
+SOURCE=.....