summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Move allocated buffer out of YUV buffer structure.Benoit Fouet2008-09-30
| | | | Originally committed as revision 15478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless initializations.Benoit Fouet2008-09-30
| | | | Originally committed as revision 15477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check allocations on init.Benoit Fouet2008-09-30
| | | | Originally committed as revision 15476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless test.Benoit Fouet2008-09-30
| | | | Originally committed as revision 15475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsBenoit Fouet2008-09-30
| | | | Originally committed as revision 15474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use uint8_t instead of unsigned charBenoit Fouet2008-09-30
| | | | Originally committed as revision 15473 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Corrector type fits in 8 bits.Benoit Fouet2008-09-30
| | | | Originally committed as revision 15472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless casts and use variable instead of its type in sizeof.Benoit Fouet2008-09-30
| | | | Originally committed as revision 15471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change table types to uint8_tBenoit Fouet2008-09-30
| | | | Originally committed as revision 15470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Downgrade severity of leftover bits in header packets, and don't check for ↵David Conrad2008-09-30
| | | | | | the comment header Originally committed as revision 15469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allocate 1 line more in the chroma plane for H.264, this avoids someMichael Niedermayer2008-09-30
| | | | | | | out of array reads with mmx/sse2 code. Fixes issue327. Originally committed as revision 15467 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace second (and wrong) call to avcodec_align_dimensions() by adjustingMichael Niedermayer2008-09-30
| | | | | | | stride_align. This is not particularly pretty and I will gladly implement something else if someone has an idea! Originally committed as revision 15466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not attempt to perform error concealment in lowres mode as this isMichael Niedermayer2008-09-30
| | | | | | not supported currently. Originally committed as revision 15465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* atrac3: ensure input frame is not overwritten (it is const)Aurelien Jacobs2008-09-29
| | | | | | | this fixes the following warning: atrac3.c:889: warning: assignment discards qualifiers from pointer target type Originally committed as revision 15464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use skip_frame for keyframe-only decoding rather than #ifdefDavid Conrad2008-09-29
| | | | Originally committed as revision 15463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a warning about an undefined function when compiling h264.cCarl Eugen Hoyos2008-09-29
| | | | Originally committed as revision 15462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Uniformly define _XOPEN_SOURCE to 600.Diego Biurrun2008-09-29
| | | | | | | | | The feature_tests.h header from Sun systems (Solaris/OpenSolaris) will abort the build if _XOPEN_SOURCE is defined to 500, and C99 is requested (as well as POSIX.1-2001), and will only accept it to be defined to 600. inspired by a patch from Diego Pettenò, flameeyes gmail com Originally committed as revision 15460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Guess picture type from picture coding extension when the main header is ↵Michael Niedermayer2008-09-28
| | | | | | damaged. Originally committed as revision 15456 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the directpred auto value.Francesco Cosoleto2008-09-28
| | | | | | Patch by Francesco Cosoleto cosoleto ^^AT^^ gmail @@dot@@ com Originally committed as revision 15448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use DECLARE_ALIGNED_16() on vorbis windows as they are used in dsputilsSiarhei Siamashka2008-09-28
| | | | | | | | functions that require such alignment. Patch by Siarhei Siamashka (siarhei siamashka gmail com) Originally committed as revision 15444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace apparently always true condition by assert().Michael Niedermayer2008-09-27
| | | | Originally committed as revision 15437 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify pix_fmt_id instead of listing a subset of non-simplified ones.Michael Niedermayer2008-09-27
| | | | Originally committed as revision 15436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check the 4th plane too when selecting the pixfmt.Michael Niedermayer2008-09-27
| | | | | | Fixes a crash with Test-4-component-YCCK.jpg. Originally committed as revision 15435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: avoid duplication backward_filter()Vitor Sessak2008-09-26
| | | | Originally committed as revision 15428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable.Diego Biurrun2008-09-26
| | | | Originally committed as revision 15427 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for Acelp.net fourcc and codecid, remuxing wav to avi should workBenjamin Larsson2008-09-26
| | | | Originally committed as revision 15425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid out of picture accesses when CODEC_FLAG_EMU_EDGE is set.Michael Niedermayer2008-09-25
| | | | | | Fixes issue427. Originally committed as revision 15418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do instead of divising a float by a constant, multiply by its inverseVitor Sessak2008-09-25
| | | | Originally committed as revision 15417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that no non-existing frame is used.Michael Niedermayer2008-09-25
| | | | | | Fixes issue624. Originally committed as revision 15416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not free sps & pps on width/height changes.Michael Niedermayer2008-09-25
| | | | | | Fixes issue557. Originally committed as revision 15414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use the generic "alloc missing references" code for h.264 as it doesMichael Niedermayer2008-09-25
| | | | | | | not work correctly in that case. Fixes issue652. Originally committed as revision 15413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initialize next/last_picture* as the generic code does not alwaysMichael Niedermayer2008-09-25
| | | | | | set them to sane values. Originally committed as revision 15412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print which slices are IDR not just the slice type.Michael Niedermayer2008-09-25
| | | | Originally committed as revision 15411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix CAVLC+8x8+MBAFF loop filter.Michael Niedermayer2008-09-25
| | | | | | Fixes FREXT02_JVC_C. Originally committed as revision 15410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Field -> MBAFF direct mode can use data from fields that are notMichael Niedermayer2008-09-24
| | | | | | | | in the reference list. Follow the spec and no comment on the sanity of this design ... Fixes HPCAMAPALQ_BRCM_B Originally committed as revision 15407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move constant multiplication out of the loopVitor Sessak2008-09-24
| | | | Originally committed as revision 15404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: move convolve() together with the other DSP functionsVitor Sessak2008-09-24
| | | | Originally committed as revision 15403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: move division by constant off the loopVitor Sessak2008-09-24
| | | | Originally committed as revision 15402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct wrong lower limit and condition used in APE decoderKostya Shishkov2008-09-24
| | | | Originally committed as revision 15396 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge the 2 lpc loops.Michael Niedermayer2008-09-23
| | | | | | | | This changes the output by (stddev: 0.21 PSNR:109.51, file:ddinterview28.ra), the changes are due to float rounding inaccuracies and do not happen if doubles are used. Originally committed as revision 15394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize lpc code slightly.Michael Niedermayer2008-09-23
| | | | Originally committed as revision 15393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent after last commitKostya Shishkov2008-09-23
| | | | Originally committed as revision 15391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RLE4 and RLE8 decoding support for BMPKostya Shishkov2008-09-23
| | | | Originally committed as revision 15390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for 1-bit, 4-bit, 8-bit and some 16-bit raw BMPKostya Shishkov2008-09-23
| | | | Originally committed as revision 15389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calculate line size correctly for bit depths < 8Kostya Shishkov2008-09-23
| | | | Originally committed as revision 15388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* A few empty lines for readability.Michael Niedermayer2008-09-22
| | | | Originally committed as revision 15385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another try to fix temporal direct mode references.Michael Niedermayer2008-09-22
| | | | | | | | Fixes at least CAPAMA3_Sand_F.264 CVMAPAQP3_Sony_E.jsv Originally committed as revision 15384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2008-09-22
| | | | Originally committed as revision 15383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AltiVec detection support for OpenBSD, patch by Brad, brad comstyle com.Brad2008-09-22
| | | | Originally committed as revision 15382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix all the recent problems Justin had run into with the AC3 parser,Michael Niedermayer2008-09-22
| | | | | | including issue 459. Originally committed as revision 15381 to svn://svn.ffmpeg.org/ffmpeg/trunk