summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Silence calls to git in version.sh.Ramiro Polla2010-01-07
| | | | Originally committed as revision 21068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for VERSION in source dir.Ramiro Polla2010-01-07
| | | | Originally committed as revision 21067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an entry for the sws_isSupportedInput() andStefano Sabatini2010-01-07
| | | | | | sws_isSupportedOutput() functions addition. Originally committed as revision 21066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement sws_isSupportedInput() and sws_isSupportedOutput().Stefano Sabatini2010-01-07
| | | | Originally committed as revision 30236 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Check for snapshot_version in source dir.Ramiro Polla2010-01-07
| | | | Originally committed as revision 21065 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
* Always set the destination address even if no port was found.Martin Storsjö2010-01-07
| | | | | | Patch by Martin Storsjo (martin AT martin DOT st) Originally committed as revision 21057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check the URL used for the SDP destination.Martin Storsjö2010-01-07
| | | | | | Patch by Martin Storsjo (martin AT martin DOT st) Originally committed as revision 21056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove const to avoid a bunch of GCC warnings against discarded qualifiers andZuxy Meng2010-01-07
| | | | | | incompatible pointer type. Originally committed as revision 30234 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* 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
* Fix stream copy & transcoding one stream at the same time.Michael Niedermayer2010-01-07
| | | | | | Fixes issue1660. Originally committed as revision 21042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct indention.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the definitions of data_buf and data_size closer to where they are used.Michael Niedermayer2010-01-07
| | | | Originally committed as revision 21040 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
* Add an entry for the avfilter_add_colorspace() API change.Stefano Sabatini2010-01-06
| | | | Originally committed as revision 21036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change avfilter_add_colorspace() to make it accept **avff rather thanStefano Sabatini2010-01-06
| | | | | | | | | *avff, so that an AVFilterFormats struct is created and returned by the function if *avff is NULL. Make the function use more convenient. Originally committed as revision 21035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix entry on concatenating multiple yuv4mpegpipe streams.John Van Sickle2010-01-06
| | | | | | patch by John Van Sickle, john.vansickle gmail com Originally committed as revision 21033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add another mjpeg fourcc to riff.c listBen Littler2010-01-05
| | | | Originally committed as revision 21032 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
* cosmetics, remove useless parentheses, add spaceBaptiste Coudurier2010-01-04
| | | | Originally committed as revision 21025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify error handling in mov_read_defaultBaptiste Coudurier2010-01-04
| | | | Originally committed as revision 21024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no more needed MOVAtom.offset fieldBaptiste Coudurier2010-01-04
| | | | Originally committed as revision 21023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless code skipping data at end of hdlr atom, already done in ↵Baptiste Coudurier2010-01-04
| | | | | | mov_read_default Originally committed as revision 21022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Register myself as libdirac libschroedinger and libtheora maintainerDavid Conrad2010-01-04
| | | | Originally committed as revision 21021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove forward declarations.Ronald S. Bultje2010-01-04
| | | | Originally committed as revision 21020 to svn://svn.ffmpeg.org/ffmpeg/trunk