summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
* Set bits_per_coded_sample in the raw video encoder.Jai Menon2010-01-08
| | | | | | | Aside from being the correct thing to do, this also fixes issue 1299. Originally committed as revision 21083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a few CONFIG_MPEG4_DECODER that should be there.Michael Niedermayer2010-01-08
| | | | Originally committed as revision 21082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the mpeg4 encoder and decoder off h263.cMichael Niedermayer2010-01-07
| | | | Originally committed as revision 21079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add multi-channel correlation support for ALS.Thilo Borgmann2010-01-07
| | | | Originally committed as revision 21074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix red/blue swap for 4xa files.Carl Eugen Hoyos2010-01-07
| | | | Originally committed as revision 21070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize short-term prediction by reducing index arithmetic.Thilo Borgmann2010-01-07
| | | | Originally committed as revision 21069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some const qualifiers.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document decide_ac_pred() and restore_ac_coeffs().Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move restore_ac_coeffs() call into decode_ac_pred().Michael Niedermayer2010-01-07
| | | | | | This makes decode_ac_pred() easier to understand. Originally committed as revision 21062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move restore_ac_coeffs() up so its declared before its use.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More doxyMichael Niedermayer2010-01-07
| | | | Originally committed as revision 21060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document ff_h263_show_pict_info().Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize if() surrounding every ff_h263_show_pict_info() call.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2 more if(CONFIG_*_DECODER)Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split out intel H263 decoder.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flv.h should ideally be included in flvdec.cMichael Niedermayer2010-01-07
| | | | Originally committed as revision 21053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move forgotton "AVCodec flv_encoder" over to flvenc.c.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21052 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split flv decoding out.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split out flv encoding.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21050 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document aspect_to_info().Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21049 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cleanup aspect_to_info().Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document several more things.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21047 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document *VLC_BITS.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify h263_get_picture_format().Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark h263_get_picture_format() av_const to indicate that it has no funnyMichael Niedermayer2010-01-07
| | | | | | sideeffects and reads no global memory. Originally committed as revision 21044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document h263_get_picture_format().Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l: Fix compilation after r21037.Carl Eugen Hoyos2010-01-06
| | | | Originally committed as revision 21039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Stop the approximation in bessel() once it does no longer improve.Michael Niedermayer2010-01-06
| | | | | | This is faster. Originally committed as revision 21038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle more ADPCM codecs in av_get_bits_per_sample().Daniel Verkamp2010-01-06
| | | | | | | | This removes some special-case code from riff.c. CODEC_ID_ADPCM_G726 is still handled in riff.c as before because it is not guaranteed to be fixed 4 bits per sample. Originally committed as revision 21037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use correct context for av_log(), should prevent a crash for malformed files.Francesco Lavra2010-01-05
| | | | | | Patch by Francesco Lavra (francescolavra at interfree dot it). Originally committed as revision 21031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a few explanatory comments to cornercase workarounds.Diego Biurrun2010-01-05
| | | | Originally committed as revision 21030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace array operator [] with direct access via pointer.Thilo Borgmann2010-01-05
| | | | | | Solves issue 1657. Originally committed as revision 21029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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