summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
...
* fixed mpeg2 interlaced DCTFabrice Bellard2001-08-11
| | | | Originally committed as revision 74 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed incomplete seek patchFabrice Bellard2001-08-11
| | | | Originally committed as revision 73 to svn://svn.ffmpeg.org/ffmpeg/trunk
* picture utilsFabrice Bellard2001-08-11
| | | | Originally committed as revision 72 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed mpeg2 qscale decodingFabrice Bellard2001-08-11
| | | | Originally committed as revision 71 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added interlaced MJPEG supportFabrice Bellard2001-08-11
| | | | Originally committed as revision 70 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added 422P, 444P support - added deinterlace support - added xxx to RGB24 ↵Fabrice Bellard2001-08-11
| | | | | | convertion Originally committed as revision 69 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix msmpeg4 seekFabrice Bellard2001-08-11
| | | | Originally committed as revision 68 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export for imgconvert usageFabrice Bellard2001-08-11
| | | | Originally committed as revision 67 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new img_convert API - added deinterlacing filterFabrice Bellard2001-08-11
| | | | Originally committed as revision 66 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed mb_intra_vlc decoding table sizeFabrice Bellard2001-08-11
| | | | Originally committed as revision 61 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return dummy quality to avoid bug in -sameq case - forgot emms in error caseFabrice Bellard2001-08-08
| | | | Originally committed as revision 60 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed mpeg1 first block bug (pb with black picture optimisation for B frames)Fabrice Bellard2001-08-08
| | | | Originally committed as revision 59 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed mpeg1 last block bug (mb stuffing code was not included in vlc table...)Fabrice Bellard2001-08-08
| | | | Originally committed as revision 58 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added forgotten emms() - fix various segmentation faults when using mjpegFabrice Bellard2001-08-08
| | | | Originally committed as revision 57 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Portability and testing issuesNick Kurshev2001-08-08
| | | | Originally committed as revision 55 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added mmx idctFabrice Bellard2001-08-07
| | | | Originally committed as revision 53 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed scan protosFabrice Bellard2001-08-07
| | | | Originally committed as revision 52 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed block permutation in encoder (not optimal - should move it in forward ↵Fabrice Bellard2001-08-07
| | | | | | DCT code) Originally committed as revision 51 to svn://svn.ffmpeg.org/ffmpeg/trunk
* updated scansFabrice Bellard2001-08-07
| | | | Originally committed as revision 50 to svn://svn.ffmpeg.org/ffmpeg/trunk
* changed quant matrix order (should fix mmx mpeg decoding bug)Fabrice Bellard2001-08-07
| | | | Originally committed as revision 49 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixed mjpeg matrix quant encoding and decodingFabrice Bellard2001-08-07
| | | | Originally committed as revision 48 to svn://svn.ffmpeg.org/ffmpeg/trunk
* permuted coefs in normal IDCT to avoid having different cases thereFabrice Bellard2001-08-07
| | | | Originally committed as revision 47 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added idct reference codeFabrice Bellard2001-08-07
| | | | Originally committed as revision 46 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added block permutation functionsFabrice Bellard2001-08-07
| | | | Originally committed as revision 45 to svn://svn.ffmpeg.org/ffmpeg/trunk
* updated dct-test to test IDCTs tooFabrice Bellard2001-08-07
| | | | Originally committed as revision 44 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added idct mmxFabrice Bellard2001-08-07
| | | | Originally committed as revision 43 to svn://svn.ffmpeg.org/ffmpeg/trunk
* updated mmx macrosFabrice Bellard2001-08-07
| | | | Originally committed as revision 42 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added idct mmx codeFabrice Bellard2001-08-07
| | | | Originally committed as revision 41 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use default huffman tables if none givenFabrice Bellard2001-08-06
| | | | Originally committed as revision 40 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added 422P and 444P support - fixed block parsing errorFabrice Bellard2001-08-06
| | | | Originally committed as revision 39 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added 422P and 444P formats (need to patch ffmpeg.c so that it is handled in ↵Fabrice Bellard2001-08-06
| | | | | | all the program) Originally committed as revision 38 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added correct component id handlingFabrice Bellard2001-08-06
| | | | Originally committed as revision 37 to svn://svn.ffmpeg.org/ffmpeg/trunk
* types fixFabrice Bellard2001-08-06
| | | | Originally committed as revision 36 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added MJPEG decoder + commentsFabrice Bellard2001-08-06
| | | | Originally committed as revision 35 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added MJPEG decoder, renamed mjpegenc.c to mjpeg.cFabrice Bellard2001-08-06
| | | | Originally committed as revision 34 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Suppressing external gas stuff to improve portability to Win32Nick Kurshev2001-08-05
| | | | Originally committed as revision 33 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_bits() specialization, gives 4\speedupArpi2001-08-04
| | | | Originally committed as revision 32 to svn://svn.ffmpeg.org/ffmpeg/trunk
* inlineing common case of get_bits() -> gives 2speedup. more optim coming soon...Arpi2001-08-03
| | | | Originally committed as revision 31 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MMX/MMXEXT iDCT support, using external functions currently defined in libmpeg2Arpi2001-08-03
| | | | | | | Gives average 13-20% mpeg decoding speedup on x86 systems. Originally committed as revision 30 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - removed #include ../config.h, because it's included from common.hArpi2001-08-02
| | | | | | | which is included from avcodec.h which is included from those files... Originally committed as revision 29 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adding fastmemcpy stuff to speedup mplayer projectNick Kurshev2001-08-02
| | | | Originally committed as revision 27 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added external cpuid code to solve -fPIC and gcc unclear constraints problemsFabrice Bellard2001-07-30
| | | | Originally committed as revision 25 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added cpuid.sFabrice Bellard2001-07-30
| | | | Originally committed as revision 24 to svn://svn.ffmpeg.org/ffmpeg/trunk
* renamed - use of s->dct_unquantize function pointer - SHOULD add faster h263 ↵Fabrice Bellard2001-07-30
| | | | | | mmx specific unquantization stuff Originally committed as revision 23 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use block[] in structure to have it aligned on 8 bytes for mmx optimizations ↵Fabrice Bellard2001-07-30
| | | | | | - dct_unquantize is always a function pointer - added specialized dct_unquantize_h263 Originally committed as revision 22 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use block[] in structure to have it aligned on 8 bytes for mmx optimizationsFabrice Bellard2001-07-30
| | | | Originally committed as revision 21 to svn://svn.ffmpeg.org/ffmpeg/trunk
* commentsFabrice Bellard2001-07-30
| | | | Originally committed as revision 20 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added HAVE_AV_CONFIG_HFabrice Bellard2001-07-30
| | | | Originally committed as revision 19 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added mpegvideo_mmx.c - added HAVE_AV_CONFIG_HFabrice Bellard2001-07-30
| | | | Originally committed as revision 18 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sync with mplayer's stuffNick Kurshev2001-07-30
| | | | Originally committed as revision 14 to svn://svn.ffmpeg.org/ffmpeg/trunk