summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* mlp: Simplify adressing of state and coeffs arrays for both filters by makingRamiro Polla2009-05-15
| | | | | | the arrays sequential. Originally committed as revision 18841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlp: include mlp.h and use MAX_CHANNELS instead of hardcoding value 8.Ramiro Polla2009-05-15
| | | | Originally committed as revision 18840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that we don't read from invalid memory with B-frame qpelDavid Conrad2009-05-15
| | | | Originally committed as revision 18839 to svn://svn.ffmpeg.org/ffmpeg/trunk
* decode mpeg-2 closed gop first b frames, fix issue #824Baptiste Coudurier2009-05-15
| | | | Originally committed as revision 18837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change pic type to Picture* and remove castsBaptiste Coudurier2009-05-15
| | | | Originally committed as revision 18833 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document av_set_string3() returned error codes.Stefano Sabatini2009-05-14
| | | | Originally committed as revision 18829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_set_string3() print a message in case of unknown option.Stefano Sabatini2009-05-14
| | | | Originally committed as revision 18826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Provide a context to av_log() calls in av_set_number2() andStefano Sabatini2009-05-14
| | | | | | av_set_string3(). Originally committed as revision 18825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix for issue #829 ("ffvorbis outputs crackling sound, libvorbis plays fine")Siarhei Siamashka2009-05-14
| | | | | | | | | | | | | | This was off-by-one bug which affects floor0 encoded files. Tracked down by valgrind (was reported as the use of uninitialized memory). With this patch applied, tiny_psnr now reports the following when ffvorbis is compared to libvorbis-1.0beta4 output for 'lsp-test.ogg' sample: stddev: 0.76 PSNR: 98.69 bytes: 3498380/ 3498452 Output from libvorbis-1.2 is substantially different: stddev: 132.57 PSNR: 53.87 bytes: 3498424/ 3498496 Originally committed as revision 18821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix VBV delay for mpeg1/2 CBR.Michael Niedermayer2009-05-14
| | | | Originally committed as revision 18820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use skip_bits_long() for large skipsDavid Conrad2009-05-14
| | | | | | This fixes ogg/theora on ARM (more generally the A32 bitstream reader) Originally committed as revision 18819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Subroutine to copy an AAC Program Config Element (PCE)Alex Converse2009-05-13
| | | | Originally committed as revision 18817 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics after last commitAlex Converse2009-05-13
| | | | Originally committed as revision 18816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow parsing and decoding of ADTS AAC files with channel config = 0Alex Converse2009-05-13
| | | | Originally committed as revision 18815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the ADTS header size to the parser's header file.Alex Converse2009-05-13
| | | | Originally committed as revision 18814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a quick description to the H.264 BSFAlex Converse2009-05-13
| | | | Originally committed as revision 18809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add casts to silence gcc warningsBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add casts to silence gcc warningsBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bandwith vs. bandwiDth typo.Diego Biurrun2009-05-12
| | | | Originally committed as revision 18804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* V210 Uncompressed 4:2:2 10-bit encoder and decoderBaptiste Coudurier2009-05-12
| | | | Originally committed as revision 18801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support 16K samplerate in Nellymoser.Alexander Chemeris2009-05-11
| | | | | | patch by Alexander Chemeris, ipse.ffmpeg gmail.com Originally committed as revision 18798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a chroma_sample_location field to define positioning of chroma samplesDavid Conrad2009-05-11
| | | | Originally committed as revision 18795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PPC: 32-bit asm for MAC64 and MLS64Måns Rullgård2009-05-11
| | | | | | | | GCC makes a mess of these operations, so give it a hand. 55% faster MP3 decoding on G4. Originally committed as revision 18794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sgi encoder does not support pal8Baptiste Coudurier2009-05-10
| | | | Originally committed as revision 18791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for palette presence, fix crash with QT-BMP.mov, issue #1074Baptiste Coudurier2009-05-10
| | | | Originally committed as revision 18785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove dead nested assignment found by CSABenjamin Larsson2009-05-10
| | | | Originally committed as revision 18784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update comment for rgb 16 bit in .movBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add necessary header for CONFIG_RUNTIME_CPUDETECT preprocessor definition.Diego Biurrun2009-05-09
| | | | Originally committed as revision 18774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* data parameter of dnxhd_encode_picture() should not be const.Daniel Verkamp2009-05-08
| | | | | | | Fixes "dnxhdenc.c:805: warning: initialization from incompatible pointer type". patch by Daniel Verkamp, daniel drv nu Originally committed as revision 18773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct x/ymin to avoid segfault due to out of picture reads.Michael Niedermayer2009-05-08
| | | | Originally committed as revision 18771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 8088flex TMV video decoder.Daniel Verkamp2009-05-06
| | | | | | Patch by Daniel Verkamp name at drv ... nu. Originally committed as revision 18765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CGA and palette data for 8088flex TMV decoder.Daniel Verkamp2009-05-06
| | | | | | Patch by Daniel Verkamp daniel _AT_ drv DOT nu. Originally committed as revision 18764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Fix possible writing out of array bounds introduced by beingRamiro Polla2009-05-06
| | | | | | under-paranoid in r18651. Originally committed as revision 18763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Split sync word error and MLP sync word check.Ramiro Polla2009-05-06
| | | | | | | The previous code would print the wrong error message for MLP streams with TrueHD noise type. Originally committed as revision 18762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Fix indentation that got mangled from copy&paste.Ramiro Polla2009-05-06
| | | | Originally committed as revision 18761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 32-bit RGB support to TIFF decoder and extend a bit 'unsupported format' ↵Kostya Shishkov2009-05-06
| | | | | | message Originally committed as revision 18755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add floating point audio decoding to WavPack decoder.Laurent Aimar2009-05-06
| | | | | | Patch by Laurent Aimar (fenrir at `antonym of 'audio'+antonym of 'WAN'` dot org) Originally committed as revision 18754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prepare WavPack decoder to support floating point output.Laurent Aimar2009-05-06
| | | | | | Patch by Laurent Aimar (f-e-n-r-i-r .@.t. v=i=d=e=o=l=a=n .d.o.t. o=r=g) Originally committed as revision 18753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: line wrap and vertical alignmentJustin Ruggles2009-05-06
| | | | Originally committed as revision 18752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ac3dec: Remove unneeded context variable, num_cpl_subbands. It is alsoJustin Ruggles2009-05-06
| | | | | | | | not needed for spectral extension or enhanced coupling since it is redundant information, so I am removing it from decode_band_structure() as well. Originally committed as revision 18751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentation after last commitJustin Ruggles2009-05-05
| | | | Originally committed as revision 18750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ac3dec: move channel remapping to outside of block loopJustin Ruggles2009-05-05
| | | | Originally committed as revision 18749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extract colorspace fields from MPEG1/2.Michael Niedermayer2009-05-05
| | | | Originally committed as revision 18747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegaudio: enclose SUM8() macro args in parens when usedMåns Rullgård2009-05-05
| | | | Originally committed as revision 18746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegaudio: avoid unnecessary copy in high-precision modeMåns Rullgård2009-05-05
| | | | Originally committed as revision 18745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegaudio: use av_clip()Måns Rullgård2009-05-05
| | | | Originally committed as revision 18744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add colorspace fields to AVCodecContext.Michael Niedermayer2009-05-05
| | | | Originally committed as revision 18743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Fix indentation after r18741.Carl Eugen Hoyos2009-05-05
| | | | Originally committed as revision 18742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not discard mp3 frames in the parser after a broken frame.Michael Niedermayer2009-05-05
| | | | | | | Fixes issue1044. This may cause regressions with broken streams, if you find any, please report! Originally committed as revision 18741 to svn://svn.ffmpeg.org/ffmpeg/trunk