summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* move some common values to ac3.h and utilize themJustin Ruggles2007-07-15
| | | | Originally committed as revision 9679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use random number generator from libavutilJustin Ruggles2007-07-14
| | | | Originally committed as revision 9678 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l to me. I accidentally removed a word.Justin Ruggles2007-07-14
| | | | Originally committed as revision 9677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revise license header for simplicity and consistencyJustin Ruggles2007-07-14
| | | | Originally committed as revision 9676 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant assignment of CODEC_ID_BMP.Mark Cox2007-07-14
| | | | | | | | patch by mark cox melbournemark+ffmpeg _at_ gmail.com thread: [PATCH] Remove unessesary assignment of CODEC_ID_BMP date: Mon, 9 Jul 2007 20:12:28 +1000 Originally committed as revision 9675 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make ac3dec.c GPL until violations are fixedJustin Ruggles2007-07-14
| | | | Originally committed as revision 9674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 402, Jul 14 13:45:14 2007 UTC by jbrJustin Ruggles2007-07-14
| | | | | | merge ac3_decoder.h into ac3_decoder.c Originally committed as revision 9673 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 148, Sep 28 18:38:27 2006 UTC by bananLoren Merritt2007-07-14
| | | | | | Enable sse imdct, patch by Loren Merrit. Originally committed as revision 9672 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 109, Sep 22 22:42:54 2006 UTC by bananJustin Ruggles2007-07-14
| | | | | | Cosmetics. Originally committed as revision 9671 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 72, Sep 7 04:20:00 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | fix short block imdct. Originally committed as revision 9670 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 71, Sep 4 09:47:12 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | | Redundant code cleanup. Optimized dither generation. Minor optimization in bit allocation. Comments. Originally committed as revision 9669 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 70, Aug 31 18:04:23 2006 UTC by bananJustin Ruggles2007-07-14
| | | | | | Cosmetics, white space removal. Originally committed as revision 9668 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 69, Aug 31 07:12:56 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | | | | Fix the bugs: 1. The quality of output because of incorrect windowing coefficients. New code for window generation. 2. Dynrng values were reset where dynrng value is present in the first block, but not in the subsequent block. Originally committed as revision 9667 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 58, Aug 19 14:20:45 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | Further optimizations. Originally committed as revision 9666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 57, Aug 19 12:44:38 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | Optimization as suggested by Benjamin. Originally committed as revision 9665 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 56, Aug 17 14:21:58 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | Acknowledgements. Originally committed as revision 9664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 55, Aug 17 12:25:24 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | Remove more unnecessary headers. Codec initialization changed to use name => argument notation. Originally committed as revision 9663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 54, Aug 17 09:13:08 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | Remove unnecessary header files. Originally committed as revision 9662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 53, Aug 17 08:53:44 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | Converted the window from double to float. Now sound produced is as good as sound produced by liba52. Originally committed as revision 9661 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 52, Aug 16 22:45:07 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | | Reset the blksw and dithflag to 0 at the begining of each block. Otherwise blockswitching propagates over multiple frames even if block switching is not enabled for that frame. Also reuse rematflg. Originally committed as revision 9660 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 48, Aug 16 11:27:49 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | | | | | | | | | I realized that the bug was not in the imdct routine but in the get_transform_coeffs. Fixed it. Code now uses the ffmpeg's imdct routines. All the mplayer's ac3 samples are decoded successfully. Also improved downmixing. Now all the downmixing coeffcients for channels are normalized such that the sum of coefficients used to construct the output for single channel never exceeds 1.0. Originally committed as revision 9659 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 40, Aug 9 00:10:14 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | | | | | | | | More code cleanup. Window is now runtime generated. Fixed the bugs in rematrixing routine and in Decoding AC3 Bitstreams when coupling is in use. Still struggling to find out what affects the quality of the produced sound. Can anybody have a look at the imdct routines do_imdct_256 and do_imdct_512 and tell me whether it is the correctly implemented as described in standard. Originally committed as revision 9658 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 38, Aug 7 00:03:00 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | | | | | | major code cleanup. correct implementation of imdct. implemented imdct for block switching also. when coupling is not in use all the ac3 streams are decoded correctly. but when coupling is in use there is a bug. i am currently finding the root of the bug. if anybody can help. Originally committed as revision 9657 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 34, Jul 18 14:27:54 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | working decoder imdct for block switching is to be implemented various other things to do Originally committed as revision 9656 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 33, Jul 17 12:13:40 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | getting weired output but its working Originally committed as revision 9655 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 32, Jul 17 09:37:32 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | | | | | | | | | Latest commit. There is no error in parsing and or recovering transform coefficients. Double checked with ac3dec. Getting consistent results with the bit allocation routine and transform coefficients. The code is able to parse valid ac3 bitstreams without error from start to end. I have also implemented the imdct when block switching is not enabled. However, can anybody provide an insight into how to convert float samples to int16_t ? lrint is of no help cuz it produces output -1, 0 or 1 whereas the output should be between -32768 to 32767. Originally committed as revision 9654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 31, Jul 14 23:53:28 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | | | | | | | | | | | | | | | Removed _ from names Removed temporary storage for the exponents Removed ctx->samples Now each transform coefficients are stored in audio block as an array of transform coefficients for each channel added ctx->delay (output of later half of previous block) added audio_block->block_output(output of this block) I am still not able to produce the output. I checked the code twice completely. I am not missing anything in parsing or in bit allocation. Yet it throws error in getting transform coefficients sometimes. Can anyone review a code of get_transform_coeffs and help me debug it further. I think the error is in do_bit_allocation routine cuz get_transform_coeffs is dependent on the bit allocation parameters table. I have checked the bit allocation algorithm thoroughly and it is as defined in the standard. Tried everything and got stuck where to go further. Please help me. Originally committed as revision 9653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 26, Jul 5 04:55:15 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | | Mersenne Twister Dynamic Range Downmixing IMDCT Originally committed as revision 9652 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 decoder, soc revision 9, Jun 14 03:52:02 2006 UTC by cloud9Justin Ruggles2007-07-14
| | | | | | | | | | initial commit NOTE: This and all subsequent ac3dec.c revisions from the soc repository violate the GPL. This will be fixed after all soc revisions are imported. This file is not compiled yet, so the license compliance of any builds in the meantime will not be affected. Originally committed as revision 9651 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid using undefined symbols.Aurelien Jacobs2007-07-14
| | | | | | | | | This fixes the following option set: --disable-encoders --disable-decoders --disable-parsers --disable-bsfs --disable-muxers --disable-demuxers --disable-protocols --enable-muxer=mpeg1system Originally committed as revision 9650 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow selecting only the vc1 demuxer.Aurelien Jacobs2007-07-14
| | | | | | | | | This fixes the following option set: --disable-encoders --disable-decoders --disable-parsers --disable-bsfs --disable-muxers --disable-demuxers --disable-protocols --enable-demuxer=vc1 Originally committed as revision 9649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow selecting only the mpegtsraw demuxer.Aurelien Jacobs2007-07-14
| | | | | | | | | This fixes the following option set: --disable-encoders --disable-decoders --disable-parsers --disable-bsfs --disable-muxers --disable-demuxers --disable-protocols --enable-demuxer=mpegtsraw Originally committed as revision 9648 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typoDiego Biurrun2007-07-14
| | | | Originally committed as revision 23780 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* The dxa demuxer depends on riff.o.Aurelien Jacobs2007-07-14
| | | | | | | | This fixes the following option set: --disable-encoders --disable-decoders --disable-parsers --disable-bsfs --disable-muxers --disable-demuxers --disable-protocols --enable-demuxer=dxa Originally committed as revision 9647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move #include of system headers to top of fileMåns Rullgård2007-07-14
| | | | Originally committed as revision 9646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The dv1394 demuxer depends on dv.o.Aurelien Jacobs2007-07-14
| | | | | | | | | This fixes the following option set: --disable-encoders --disable-decoders --disable-parsers --disable-bsfs --disable-muxers --disable-demuxers --disable-protocols --enable-demuxer=dv1394 Originally committed as revision 9645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* All those demuxers don't depend on riff.o anymore.Aurelien Jacobs2007-07-14
| | | | Originally committed as revision 9644 to svn://svn.ffmpeg.org/ffmpeg/trunk
* All those demuxers use pcm_read_seek() and thus depend on raw.o.Aurelien Jacobs2007-07-14
| | | | Originally committed as revision 9643 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The c93 demuxer depends on vocdec.o.Aurelien Jacobs2007-07-14
| | | | | | | | This fixes the following option set: --disable-encoders --disable-decoders --disable-parsers --disable-bsfs --disable-muxers --disable-demuxers --disable-protocols --enable-demuxer=c93 Originally committed as revision 9642 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The mpegaudio parser depends on mpegaudiodata.o.Aurelien Jacobs2007-07-14
| | | | | | | | | This fixes the following option set: --disable-encoders --disable-decoders --disable-parsers --disable-bsfs --disable-muxers --disable-demuxers --disable-protocols --enable-parser=mpegaudio Originally committed as revision 9641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow selecting only the vp6f decoder.Aurelien Jacobs2007-07-14
| | | | | | | | This fixes the following option set: --disable-encoders --disable-decoders --disable-parsers --disable-bsfs --disable-muxers --disable-demuxers --disable-protocols --enable-decoder=vp6f Originally committed as revision 9640 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Announce that vhook is deprecated, and its substitute.Víctor Paesa2007-07-14
| | | | Originally committed as revision 9639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The svq3 decoder depends on h264idct.o and also requires h264_parser.Aurelien Jacobs2007-07-14
| | | | | | | | This fixes the following option set: --disable-encoders --disable-decoders --disable-parsers --disable-bsfs --disable-muxers --disable-demuxers --disable-protocols --enable-decoder=svq3 Originally committed as revision 9638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid division by zero in av_find_stream_info() when no time base is setMåns Rullgård2007-07-14
| | | | Originally committed as revision 9637 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l to Mans, assert is included later with proper DEBUG/NDEBUG ifdefsAlex Beregszaszi2007-07-14
| | | | Originally committed as revision 9636 to svn://svn.ffmpeg.org/ffmpeg/trunk
* match doxygen comment with other parts of the fileAlex Beregszaszi2007-07-14
| | | | Originally committed as revision 9635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* create and populate "tools" directoryMåns Rullgård2007-07-13
| | | | Originally committed as revision 9634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libavtest and seektest no longer need gplMåns Rullgård2007-07-13
| | | | Originally committed as revision 9633 to svn://svn.ffmpeg.org/ffmpeg/trunk
* GXF muxer is no longer GPLed.Diego Biurrun2007-07-13
| | | | Originally committed as revision 9632 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Smartjog granted permission to relicense as LGPL 2.1Baptiste Coudurier2007-07-13
| | | | Originally committed as revision 9631 to svn://svn.ffmpeg.org/ffmpeg/trunk