summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Cosmetics: Fix indentation and comment after r21027.Carl Eugen Hoyos2010-01-05
| | | | Originally committed as revision 21028 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support decoding raw 2bpp in mov, fixes issue 1528.Carl Eugen Hoyos2010-01-05
| | | | Originally committed as revision 21027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve readability of 4bpp raw decoder and prepare for supporting 2bpp.Carl Eugen Hoyos2010-01-05
| | | | Originally committed as revision 21026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last commitVitor Sessak2010-01-04
| | | | Originally committed as revision 21019 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing "static" qualifierVitor Sessak2010-01-04
| | | | Originally committed as revision 21018 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The H.263 wrong_run table is only for encoding; only enable it in such cases.avcoder2010-01-04
| | | | | | patch by avcoder, ffmpeg gmail com Originally committed as revision 21013 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VAAPI: fix WMV3 decoding of videos with an odd number of macroblocks per line.Gwenole Beauchesne2010-01-04
| | | | Originally committed as revision 21012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix XvMC. XvMCCreateBlocks() may not allocate 16-byte aligned blocks,Gwenole Beauchesne2010-01-04
| | | | | | so we can't use SSE-optimized routines. Originally committed as revision 21011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document avcodec_pix_fmt_to_codec_tag().Stefano Sabatini2010-01-03
| | | | Originally committed as revision 21006 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() andStefano Sabatini2010-01-03
| | | | | | XXX_license() functions, consistent with the rest of FFmpeg. Originally committed as revision 21005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce number of ASM constraints for ff_lpc_compute_autocorr_sse2 since itReimar Döffinger2010-01-02
| | | | | | | causes no significant speed difference and can avoid compilation issues with --enable-pic. Originally committed as revision 21003 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Small ELBG optimization: use last pixel as a initial guess for the codebookVitor Sessak2010-01-02
| | | | | | entry. Originally committed as revision 21001 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adjust threshold for xvid packed b frame detection.Michael Niedermayer2010-01-01
| | | | | | | | Also add xvid_build check. If you note any packed bitstream regression, check this commit first and report it. Fixes issue1652 Originally committed as revision 20997 to svn://svn.ffmpeg.org/ffmpeg/trunk
* It appears s->bitstream_buffer_size has to be 0 at the end so rather use assert.Michael Niedermayer2010-01-01
| | | | Originally committed as revision 20996 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove residual use of the doxygen markup which is deprecated,Stefano Sabatini2010-01-01
| | | | | | consistent with r19122. Originally committed as revision 20989 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused function msmpeg4_memsetw().Diego Biurrun2009-12-31
| | | | | | It is an exact duplicate of memsetw() in h263.c. Originally committed as revision 20986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix colourspace for 16 bit raw video in mov, fixes issue 1527 on big-endian.Carl Eugen Hoyos2009-12-31
| | | | Originally committed as revision 20985 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support raw black&white in mov, fixes issue 1654.Carl Eugen Hoyos2009-12-30
| | | | Originally committed as revision 20984 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move MPEG-4 encoding functions around to avoid forward declarations.Diego Biurrun2009-12-30
| | | | Originally committed as revision 20981 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Move ff_mpeg4_pred_dc() to an appropriate place.Diego Biurrun2009-12-30
| | | | | | | It is used by both encoders and decoders and should not be below a CONFIG_ENCODERS preprocessor check. Originally committed as revision 20980 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move MPEG-4 decoding functions around to avoid forward declarations.Diego Biurrun2009-12-30
| | | | Originally committed as revision 20979 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move H.263-related functions around to avoid forward declarations.Diego Biurrun2009-12-30
| | | | Originally committed as revision 20978 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Reorder functions to avoid forward declarations.Diego Biurrun2009-12-30
| | | | Originally committed as revision 20977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary forward declaration for msmpeg4_memsetw().Diego Biurrun2009-12-30
| | | | Originally committed as revision 20976 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of pointless CONFIG_ANY_H263 preprocessor definition.Diego Biurrun2009-12-30
| | | | Originally committed as revision 20975 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add required header #includes for mpegvideo.h and config.h.Diego Biurrun2009-12-30
| | | | Originally committed as revision 20974 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Eliminate CONFIG_ANY_H263_DECODER preprocessor definition.Diego Biurrun2009-12-30
| | | | | | | It is just a logical OR of several decoder definitions, all of which depend on CONFIG_H263_DECODER. So it can just be replaced by the latter. Originally committed as revision 20973 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of pointless CONFIG_WMV_DECODER definition.Diego Biurrun2009-12-30
| | | | Originally committed as revision 20972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of pointless CONFIG_WMV2 definition.Diego Biurrun2009-12-30
| | | | Originally committed as revision 20971 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify CONFIG_ANY_H263_DECODER preprocessor definition:Diego Biurrun2009-12-30
| | | | | | There is no need to list decoders that enable the H.263 decoder anyway. Originally committed as revision 20970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused definitions: CONFIG_MSMPEG4 and CONFIG_WMV_ENCODER.Diego Biurrun2009-12-29
| | | | Originally committed as revision 20969 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless CONFIG_MLP_DECODER preprocessor check.Diego Biurrun2009-12-29
| | | | | | The file is only ever compiled if the MLP decoder is enabled. Originally committed as revision 20968 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Neither the H.264 nor the SVQ3 decoder depend on the H.264 parser.Diego Biurrun2009-12-29
| | | | Originally committed as revision 20967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The MLP decoder depends on the MLP parser.Diego Biurrun2009-12-29
| | | | Originally committed as revision 20966 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable the TrueHD decoder when the MLP decoder is enabled.Diego Biurrun2009-12-29
| | | | | | They share all code, there is no point in enabling one but not the other. Originally committed as revision 20965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare AC-3 parser dependency of AC-3 decoder and EAC-3 demuxer in configure.Diego Biurrun2009-12-29
| | | | Originally committed as revision 20964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix colours for QT JPEG2000, fixes issue 1540.Carl Eugen Hoyos2009-12-29
| | | | Originally committed as revision 20963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use correct pixfmt for 32 bit raw in mov also on big-endian, fixes issue 1630.Carl Eugen Hoyos2009-12-29
| | | | Originally committed as revision 20962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare AAC parser dependencies in configure.Diego Biurrun2009-12-29
| | | | | | This affects the AAC decoder, S/PDIF muxer and ADTS to ASC bitstream filter. Originally committed as revision 20961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The S/P-DIF muxer depends on mpeg4audio.o.Diego Biurrun2009-12-29
| | | | Originally committed as revision 20960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare WMV1/WMV2/VC-1 decoder dependency on the H.263 decoder in configure.Diego Biurrun2009-12-29
| | | | Originally committed as revision 20959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add H.264 bitstream decoding through VAAPI.Gwenole Beauchesne2009-12-29
| | | | Originally committed as revision 20957 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vc1_parser.o does not depend on h263dec.o and intrax8.o.Diego Biurrun2009-12-29
| | | | Originally committed as revision 20956 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare dependencies of RV10/RV20 decoders on the H.263 decoder in configure.Diego Biurrun2009-12-28
| | | | Originally committed as revision 20953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare dependencies for H.263 family decoders in configure.Diego Biurrun2009-12-28
| | | | Originally committed as revision 20952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare the dependency of the H.263 decoder on the H.263 parser in configure.Diego Biurrun2009-12-28
| | | | Originally committed as revision 20951 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace CONFIG_ANY_H263_ENCODER definition by CONFIG_H263_ENCODER.Diego Biurrun2009-12-28
| | | | | | | CONFIG_ANY_H263_ENCODER is just a logical OR of H.263 family definitions, for which the build system enables CONFIG_H263_ENCODER anyway. Originally committed as revision 20950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless '#if 1' preprocessor directives.Diego Biurrun2009-12-28
| | | | Originally committed as revision 20949 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use VA_INVALID_ID instead of hard coded values.Gwenole Beauchesne2009-12-28
| | | | Originally committed as revision 20948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ff_vaapi_alloc_picture() to ff_vaapi_alloc_pic_param().Gwenole Beauchesne2009-12-28
| | | | Originally committed as revision 20942 to svn://svn.ffmpeg.org/ffmpeg/trunk