Skip to content
Snippets Groups Projects
Commit 7550d5a9 authored by j's avatar j
Browse files

enc_arch_dir all the way

svn path=/trunk/theora/; revision=12875
parent e5225e5a
No related branches found
No related tags found
No related merge requests found
......@@ -19,11 +19,10 @@
*
* \section intro Introduction
*
* This is the documentation for the <tt>libtheoradec</tt> and
* <tt>libtheoraenc</tt> C API.
* These were written to replace <tt>libtheora</tt>, the current reference
* implementation for <a href="http://www.theora.org/">Theora</a>, a free,
* patent-unencumbered video codec.
* This is the documentation for <tt>libtheora</tt> C API.
* The current reference
* implementation for <a href="http://www.theora.org/">Theora</a>, a free,
* patent-unencumbered video codec.
* Theora is derived from On2's VP3 codec with additional features and
* integration for Ogg multimedia formats by
* <a href="http://www.xiph.org/">the Xiph.Org Foundation</a>.
......@@ -35,9 +34,6 @@
*
* The functions documented here are actually subdivided into two separate
* libraries:
* - <tt>libtheoraenc</tt>, containing routines exclusive to the encoder.
* You must link to this if you use any of the functions listed in
* \ref encfuncs.
* - <tt>libtheoradec</tt>, contains the decoder and shared routines.
* You must link to this if you use any of the functions listed in
* this API, i.e., those listed in \ref basefuncs and \ref decfuncs.*/
......
......@@ -47,7 +47,7 @@ encoder_sources = \
enc/dsp.c
if CPU_x86_64
arch_dir = enc/x86_64
enc_arch_dir = enc/x86_64
encoder_arch_sources= \
$(enc_arch_dir)/dct_decode_mmx.c \
$(enc_arch_dir)/dsp_mmx.c \
......@@ -57,7 +57,7 @@ encoder_arch_sources= \
$(enc_arch_dir)/fdct_mmx.c
else
if CPU_x86_32
arch_dir = enc/x86_32
enc_arch_dir = enc/x86_32
encoder_arch_sources= \
$(enc_arch_dir)/dct_decode_mmx.c \
$(enc_arch_dir)/dsp_mmx.c \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment