summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Macroblock and block Huffman code sets are to be used by both Indeo 4 andKostya Shishkov2010-02-22
| | | | | | | | Indeo 5, so make them global and move their initialization to the common place as well. And fix static VLC initialization, as ff_ivi_create_huff_from_desc() used old way to do so. Originally committed as revision 21962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make Bink decoder to stop decoding planes after all bits are used.Kostya Shishkov2010-02-22
| | | | | | | This prevents crashes during decoding grayscale Bink files like samples from Impossible Creatures game demo. Originally committed as revision 21961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make opt_default() print an error message and exit if the optionStefano Sabatini2010-02-22
| | | | | | supplied is not recognized. Originally committed as revision 21960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct bundle lengths calculation for small Bink files.Kostya Shishkov2010-02-22
| | | | | | This fixes issue 1764. Originally committed as revision 21959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16Kostya Shishkov2010-02-22
| | | | | | Patch by Kostya, minor fixes by me. Originally committed as revision 21958 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure a set r_frame_rate is not overriden by a guess.Michael Niedermayer2010-02-22
| | | | | | Also make sure we dont waste time in this case with collecting timestamps. Originally committed as revision 21957 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation for --enable-version3 --enable-libopencore_amrwb (only).Carl Eugen Hoyos2010-02-22
| | | | Originally committed as revision 21956 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Attempt to fix the completely random values returned by ff_avc_find_startcode().Michael Niedermayer2010-02-22
| | | | Originally committed as revision 21955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert "Suppress icc warnings about unknown attributes"Måns Rullgård2010-02-22
| | | | | | This reverts r21884. Apparently people want those warnings. Originally committed as revision 21954 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: change argument/return type of bswap_16() to unsigned 32-bitMåns Rullgård2010-02-22
| | | | | | This avoids unnecessary masking otherwise added by the compilers. Originally committed as revision 21953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: add missing preserve8 directivesMåns Rullgård2010-02-22
| | | | Originally committed as revision 21952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get/show_bits() can read up to MIN_CACHE_BITS bitsMåns Rullgård2010-02-21
| | | | | | | The limit for get/show_bits_long() to use get/show_bits() directly should be MIN_CACHE_BITS, not 17. Originally committed as revision 21951 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Suppress armcc warnings about unknown attributesMåns Rullgård2010-02-21
| | | | Originally committed as revision 21950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix timestamp association for mpeg2 field pictures.Michael Niedermayer2010-02-21
| | | | | | Fixes /MPlayer/incoming/codec_copy_fails_vob_to_mpeg-ts/codec_copy_fails_vob_to_mpeg-ts.vob Originally committed as revision 21949 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deobfuscate LE SHOW_[SU]BITS; these are simple sign/zero-extendMåns Rullgård2010-02-21
| | | | Originally committed as revision 21948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add zero_extend() functionMåns Rullgård2010-02-21
| | | | Originally committed as revision 21947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More accurate value for log2(10)Måns Rullgård2010-02-21
| | | | Originally committed as revision 21946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable mb_xy.avcoder2010-02-21
| | | | | | Patch by avcoder, ffmpeg gmail Originally committed as revision 21945 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support to an option -f which forces the format to use for openingStefano Sabatini2010-02-21
| | | | | | the probed multimedia resource. Originally committed as revision 21944 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AMR-NB floating-point based decoder.Vitor Sessak2010-02-21
| | | | | | Code produced during SoC by Robert Swain and Colin McQuillan. Originally committed as revision 21943 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid using log2, it is not available everywhere.Reimar Döffinger2010-02-21
| | | | | | Should fix compilation on FreeBSD. Originally committed as revision 21942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable, fixes warnings of the type:Diego Biurrun2010-02-21
| | | | | | libavcodec/h264.h:816: warning: unused variable `mb_xy' Originally committed as revision 21941 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMåns Rullgård2010-02-21
| | | | Originally committed as revision 21940 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid negative shifts in build_table()Måns Rullgård2010-02-21
| | | | | | | | A shift by a negative amount has undefined behaviour. Even though the result of this shift is never used, the shift itself could cause an exception of some kind. Originally committed as revision 21939 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memory leak for truncated packets in idCin demuxerVitor Sessak2010-02-21
| | | | Originally committed as revision 21938 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink video decoderKostya Shishkov2010-02-21
| | | | Originally committed as revision 21937 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FFprobe tool.Stefano Sabatini2010-02-21
| | | | | | | | | | This is a simplified / cleaned-up version of the SourceForge program: http://sourceforge.net/projects/ffprobe/ Syntax / features may be different, in particular the options -show_packets and -show_frames are not yet supported in this version. Originally committed as revision 21936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the official FFmpeg spelling: "ffmpeg" -> "FFmpeg".Stefano Sabatini2010-02-21
| | | | Originally committed as revision 21935 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Put all the options shared amongst the ff* tools under a dedicatedStefano Sabatini2010-02-21
| | | | | | section "Generic options". Originally committed as revision 21934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Indent.Ramiro Polla2010-02-21
| | | | Originally committed as revision 21933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VC1: fix missing include h263.hMåns Rullgård2010-02-21
| | | | Originally committed as revision 21932 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify determing whether fragments are codedDavid Conrad2010-02-21
| | | | | | No measurable speed difference Originally committed as revision 21931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle Theora's continued runs in superblock coding.David Conrad2010-02-21
| | | | | | | This doesn't really matter yet since 4:2:0 1080p has only 3060 superblocks, but larger resolutions or 4:4:4 1080p could hit this case. Originally committed as revision 21930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decode fully coded superblocks in the same manner as partial superblocks and qpiDavid Conrad2010-02-21
| | | | | | No speed difference, but it will simplify the special 4129 case. Originally committed as revision 21929 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the special 4129 case for long-run bit strings a #define and explain itDavid Conrad2010-02-21
| | | | Originally committed as revision 21928 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use memset to set the runs partially coded superblocksDavid Conrad2010-02-21
| | | | | | | Much faster for long runs (e.g. nearly uncoded frames), slightly faster for the general case. Originally committed as revision 21927 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure we dont write more bytes into filename than the array is long.Michael Niedermayer2010-02-20
| | | | | | | just a precaution in case the size of the source array is increased or made dynamically allocateable. Originally committed as revision 21926 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not attempt to open references through absolute pathes.Michael Niedermayer2010-02-20
| | | | | | This would allow an attacker to test remotely if a local file exists. Originally committed as revision 21925 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace log2f(10) with a constantMåns Rullgård2010-02-20
| | | | Originally committed as revision 21924 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Free encoder extradata in avcodec_close(). Should fix several small memoryVitor Sessak2010-02-20
| | | | | | | | leaks when encoding (at least for asv, wma and aac). Fix also issue 1577. Originally committed as revision 21923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add casts to correct return type in macros for missing libm funcsMåns Rullgård2010-02-20
| | | | Originally committed as revision 21922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* x86_fft.o depends on MMX and FFT.Ramiro Polla2010-02-20
| | | | Originally committed as revision 21921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Delete avconfig.h on distcleanMåns Rullgård2010-02-20
| | | | Originally committed as revision 21920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Delete all test related files in testclean ruleMåns Rullgård2010-02-20
| | | | Originally committed as revision 21919 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove tables of codebook vector values which are contained inStefan Gehrer2010-02-20
| | | | | | another table Originally committed as revision 21918 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Gcc attribute may_alias is not supported (or silently ignored) by all ↵Carl Eugen Hoyos2010-02-20
| | | | | | supported compilers. Originally committed as revision 21917 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not leave uninitialized data in the packet in MPC demuxer. Should allow forVitor Sessak2010-02-20
| | | | | | adding a demuxer test to FATE. Originally committed as revision 21916 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split rtsp_read_header() into two functions, so that the main part (now alsoMartin Storsjö2010-02-19
| | | | | | | | known as rtsp_connect()) can be used in the RTSP muxer. Patch by Martin Storsjö <$firstname $firstname st>. Originally committed as revision 21915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split out input-specific parts of rtsp_read_header() into its own, new,Martin Storsjö2010-02-19
| | | | | | | | | function (rtsp_setup_input_streams()), as preparation for the upcoming RTSP muxer. Patch by Martin Storsjö <$firstname $firstname st>. Originally committed as revision 21914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only send out NAT-punching RTP/RTCP packets when we're in demuxer mode, i.e.Martin Storsjö2010-02-19
| | | | | | | | don't send them when acting as a RTSP muxer. Patch by Martin Storsjö <$firstname $firstname st>. Originally committed as revision 21913 to svn://svn.ffmpeg.org/ffmpeg/trunk