gstreamer/libs/idct
wrobell 08eaa11259 - some fixes to int2float making automake 1.5 happy (gst now requires automake1.5). It's still not perfect but it bui...
Original commit message from CVS:
- added playondemand plugin by Leif Morgan Johnson <lmjohns3@eos.ncsu.edu>
- some fixes to int2float
- aplied a patch from wrobell <wrobell@ite.pl> that is a first attempt at
making automake 1.5 happy (gst now requires automake1.5). It's still not
perfect but it builds.
- Made the schedulers plugable. The default scheduler now lives inside a
plugin.
- Added a new mpeg1/2 parser/demuxer.
- Fixed some compiler warnings in the core libs.
- substantial work to GstThread (hopefully less race conditions). simplified
the code in GstThread a bit. A state change can now also happen in the
thread context.
- reworked the state semantics of a bin. it'll now automatically get the
highest state of its children.
- the autoplugger now nests the threads so that a state change failure of
one thread doesn't make its upstream thread lock.
- GstQueue refuses to go to PLAYING if the sinkpad is not connected. This
way the queue will not wedge in the _get lock.
- GstQueue unlocks its mutexes when going to PAUSED.
- make sure that when all elements in a bin/thread go to PAUSED, the bin
is set to PAUSED too.
- make a parent bin wait for its children to PAUSE before ending the
iteration with FALSE (EOS)
- Some changes to GstPlay to deal with EOS.
- aplied the latest patch from Zeenix to gstrtp.

end result: GstPlay doesn't crash on EOS and the pipeline is now shut down
properly.
2001-12-04 22:12:50 +00:00
..
.gitignore ignore the test program 2000-08-14 15:18:37 +00:00
dct.h Added the excellent mpeg2dec decoder. Not 100% optimized but allready very fast. 2000-11-04 18:54:07 +00:00
doieee Added general IDCT library. Added IEEE testbed. 2000-08-14 10:11:04 +00:00
fastintidct.c Added general IDCT library. Added IEEE testbed. 2000-08-14 10:11:04 +00:00
floatidct.c Added general IDCT library. Added IEEE testbed. 2000-08-14 10:11:04 +00:00
gstidct.c Merged from INCSCHED on 200505251!!! 2001-05-25 21:00:07 +00:00
gstidct.h Added the excellent mpeg2dec decoder. Not 100% optimized but allready very fast. 2000-11-04 18:54:07 +00:00
ieeetest.c - basic arch check for HAVE_RDTSC 2001-05-16 05:04:44 +00:00
intidct.c Added general IDCT library. Added IEEE testbed. 2000-08-14 10:11:04 +00:00
Makefile.am - some fixes to int2float making automake 1.5 happy (gst now requires automake1.5). It's still not perfect but it bui... 2001-12-04 22:12:50 +00:00
mmx32idct.c Added general IDCT library. Added IEEE testbed. 2000-08-14 10:11:04 +00:00
mmxidct.S Applied the PIC patches from David Schleef. 2001-10-17 20:18:07 +00:00
README Added general IDCT library. Added IEEE testbed. 2000-08-14 10:11:04 +00:00
sseidct.S Added the excellent mpeg2dec decoder. Not 100% optimized but allready very fast. 2000-11-04 18:54:07 +00:00

This archive contains a quick & dirty implementation of the IEEE Standard
1180-1990 accuracy test for inverse DCT.  It is not guaranteed to be
correct ... but if you find any bugs, please let me know (by email to
tgl@cs.cmu.edu).

The test harness consists of the C program ieeetest.c and shell script
doieee.  For comparison purposes I have also supplied a copy of jrevdct.c,
the inverse DCT routine from release 4 of the Independent JPEG Group's
free JPEG software.  (jrevdct.c is slightly modified from the IJG release
so that it will compile without the IJG include files.)  jrevdct.c passes
the 1180 test --- or at least, this program thinks so.  jrevdct.out is
the output from a test run.

Note that numerical results may vary somewhat across machines.  This appears
to be mostly due to differing results from the cosine function.


INSTALLATION:
  Check the Makefile, change CC and CFLAGS if needed.  Then say "make".
If your C compiler is non-ANSI, you may need to change includes and/or
function headers.

  To test a different IDCT routine, link with that routine instead of
jrevdct.o.  You will need to modify dct.h and/or ieeetest.c if your
routine's calling convention is not in-place modification of an array
of 64 "short"s.


USAGE:
  The standard test procedure is
	doieee ieeetest >outputfile
Expect it to take a while (almost 80 minutes on my old 68030 box).
Each of the six passes will emit a row of 100 dots as it runs.

You can grep the output for the word FAILS if you just want to know
yea or nay.


LEGAL MUMBO-JUMBO:
  I hereby release the test harness to the public domain.
			Thomas G. Lane, 22 Nov 1993

IMPORTANT: jrevdct.c is NOT public domain, but is copyrighted free software
(not the same thing at all).  It is subject to IJG's distribution terms, which
primarily state that if you incorporate it into a program you must acknowledge
IJG's contribution in your program documentation.  For more details and the
complete IJG software, see the IJG FTP archive at ftp.uu.net, in directory
/graphics/jpeg.