summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
...
* add a new vp6a codec (add alpha plan support to vp6)Aurelien Jacobs2007-09-25
| | | | Originally committed as revision 10574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentAndreas Öman2007-09-25
| | | | Originally committed as revision 10573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace HAVE_BFIN with ARCH_BFIN. Blackfin is a CPU architecture, not anDiego Biurrun2007-09-25
| | | | | | instruction set extension and configure sets ARCH_BFIN, not HAVE_BFIN. Originally committed as revision 10572 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move all model related tables into their own structAurelien Jacobs2007-09-24
| | | | Originally committed as revision 10571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Sort CODEC_ID list.Diego Biurrun2007-09-24
| | | | Originally committed as revision 10570 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename vp56_b6to3 to vp56_b2pAurelien Jacobs2007-09-24
| | | | Originally committed as revision 10569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some simplifications and uniformisationAurelien Jacobs2007-09-24
| | | | Originally committed as revision 10568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove check for input buffer size as it does not guarantee thatKostya Shishkov2007-09-24
| | | | | | | decoder will not run out of output buffer bounds (and all suspected decoders have their own checks now). Originally committed as revision 10567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add support for yuva420p colorspace (yuv420p + alpha)Aurelien Jacobs2007-09-24
| | | | Originally committed as revision 10565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factor out dequant table lookup outside loops, gives a 1-2% speed-upAndreas Öman2007-09-24
| | | | | | | | | patch by Andreas Öman %andreas A olebyn P nu% original thread: Date: Sep 24, 2007 12:59 PM Subject: [FFmpeg-devel] [PATCH] h264: factor out dequant table lookup outside loops Originally committed as revision 10564 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not try to decode more data than output buffer may holdKostya Shishkov2007-09-24
| | | | Originally committed as revision 10560 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VIS-specific code should be enabled conditional to HAVE_VIS, not ARCH_SPARC.Diego Biurrun2007-09-23
| | | | Originally committed as revision 10559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some experimental iterative quantization codeMichael Niedermayer2007-09-23
| | | | | | | disabled as it is VERY slow gain is 0.1-0.2 psnr at low qp Originally committed as revision 10556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move VIS CFLAGS settings into configure.Diego Biurrun2007-09-23
| | | | Originally committed as revision 10555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VIS-specific code should be compiled conditional to HAVE_VIS, not ARCH_SPARC.Diego Biurrun2007-09-23
| | | | Originally committed as revision 10554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix decoding of VMDs representing sprites (Last Dynasty, Woodruff).Kostya Shishkov2007-09-23
| | | | | | Fixes issue 101 Originally committed as revision 10552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply skip_loop_filter before checking if we can parallelize with the selectedReimar Döffinger2007-09-22
| | | | | | loop filter Originally committed as revision 10549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Guard against output buffer overflowsKostya Shishkov2007-09-22
| | | | Originally committed as revision 10548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not decode more data than output buffer may holdKostya Shishkov2007-09-22
| | | | Originally committed as revision 10547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* HDYC fourcc, sample hdyc/Test2.aviBaptiste Coudurier2007-09-21
| | | | Originally committed as revision 10541 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify H.264 decode_cabac_mb_cbp_luma(), giving a ~0.5% speedup.Andreas Öman2007-09-21
| | | | | | | | patch by Andreas Öman, andreas olebyn nu Date: Thu, 20 Sep 2007 12:59:19 +0200 Subject: [FFmpeg-devel] [PATCH] simplify h264's decode_cabac_mb_cbp_luma() Originally committed as revision 10537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allcodecs.h and allformats.h are not used anymoreAurelien Jacobs2007-09-20
| | | | Originally committed as revision 10536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove last dependencies on allformats.h and allcodecs.hAurelien Jacobs2007-09-20
| | | | Originally committed as revision 10535 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove inline from function that is exported.Ivan Kalvachev2007-09-18
| | | | | | Issue noticed by Bernhard Rosenkraenzer. Originally committed as revision 10529 to svn://svn.ffmpeg.org/ffmpeg/trunk
* blackfin vsad primitivesMarc Hoffman2007-09-17
| | | | Originally committed as revision 10521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* properly tell the compiler that A0 and A1 are clobberedMarc Hoffman2007-09-17
| | | | Originally committed as revision 10520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant ARCH_SPARC #ifdef, the file is compiled conditional toDiego Biurrun2007-09-17
| | | | | | ARCH_SPARC anyway. Originally committed as revision 10517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove obsolete and wrong extern declarationAurelien Jacobs2007-09-16
| | | | Originally committed as revision 10512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: typoDiego Biurrun2007-09-16
| | | | Originally committed as revision 10507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix image corruption when with multi-threaded decoding.Andreas Öman2007-09-16
| | | | | | | | | | | dequant-tables were not correctly reinitialized in the slave contexts when a PPS came with updated matrices. Patch by Andreas Öman %andreas A olebyn P nu% Original thread: date: Sep 16, 2007 6:14 AM subject: [FFmpeg-devel] Parallelized h264 image corruption bug Originally committed as revision 10505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable error resilience in WMV3/VC-1 decoderKostya Shishkov2007-09-15
| | | | Originally committed as revision 10502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* HALFPQ should be used only for when PQUANT is selectedKostya Shishkov2007-09-15
| | | | Originally committed as revision 10500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In case when any quantizer may occur, HALFPQ should be zeroKostya Shishkov2007-09-15
| | | | Originally committed as revision 10499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip incomplete framesJustin Ruggles2007-09-15
| | | | Originally committed as revision 10497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better AC3 header error reportingJustin Ruggles2007-09-15
| | | | Originally committed as revision 10496 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix random dithering of zero-bit mantissasJustin Ruggles2007-09-15
| | | | Originally committed as revision 10495 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: rename variables. tbl->tab for consistency with other AC3 tablesJustin Ruggles2007-09-15
| | | | Originally committed as revision 10494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix decoding of DolbyNet AC3Justin Ruggles2007-09-15
| | | | Originally committed as revision 10493 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check unp_size for possible overflows tooKostya Shishkov2007-09-14
| | | | Originally committed as revision 10490 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass correct CPU flags to compilation of sparc/simple_idct_vis.o.Diego Biurrun2007-09-13
| | | | | | based on a patch by Denes Balatoni, dbalatoni interware hu Originally committed as revision 10486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add checks on input/output buffers size for some audio decodersKostya Shishkov2007-09-13
| | | | Originally committed as revision 10485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Monkey Audio decoderKostya Shishkov2007-09-13
| | | | Originally committed as revision 10484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix timestamps used for ratecontrolMichael Niedermayer2007-09-11
| | | | | | | | these were wrong (in pts vs dts sense) when b frames were in use they were also wrong if the average framerate was smaller than 1/timebase resulting in totally wrong final bitrate Originally committed as revision 10477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmeticMichael Niedermayer2007-09-10
| | | | Originally committed as revision 10465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make changing spatial_decomposition_count per frame workMichael Niedermayer2007-09-09
| | | | Originally committed as revision 10464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dsputil must be initialized before calling rtjpeg init.Reimar Döffinger2007-09-09
| | | | Originally committed as revision 10463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not ignore return of decode_header()Michael Niedermayer2007-09-09
| | | | Originally committed as revision 10461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not force the halfpel filter coeffs to be retransmitted on every frameMichael Niedermayer2007-09-09
| | | | | | if always_reset is set Originally committed as revision 10460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow changing of the spatial_decomposition_count and quantization tablesMichael Niedermayer2007-09-09
| | | | | | per frame (this is untested as the encoder does not use it yet) Originally committed as revision 10458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* perform init after reading the values needed for initMichael Niedermayer2007-09-09
| | | | | | fixes decoding of files with spatial_decomposition_count!=5 Originally committed as revision 10457 to svn://svn.ffmpeg.org/ffmpeg/trunk