summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 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
* Use mode=receive instead of mode=play if in RTSP muxer (instead of demuxer)Martin Storsjö2010-02-19
| | | | | | | | mode. Patch by Martin Storsjö <$firstname $firstname st>. Originally committed as revision 21912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make rtsp_close_streams() take a AVFormatContext instead of a RTSPStateMartin Storsjö2010-02-19
| | | | | | | | argument, so we can use AVFormatContext->* here in the future. Patch by Martin Storsjö <$firstname $firstname st>. Originally committed as revision 21911 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 16l trocadero: don't forget to free frame data buffer in APE decoderKostya Shishkov2010-02-19
| | | | Originally committed as revision 21910 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WavPack demuxer also depends on APE tag parserKostya Shishkov2010-02-19
| | | | Originally committed as revision 21909 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make Bink demuxer skip all zero audio tracks, not only the first oneKostya Shishkov2010-02-19
| | | | Originally committed as revision 21908 to svn://svn.ffmpeg.org/ffmpeg/trunk
* msmpeg4v* encoders depend on h263decDaniel Verkamp2010-02-19
| | | | Originally committed as revision 21907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare WMV1 decoder dependenciesDaniel Verkamp2010-02-19
| | | | Originally committed as revision 21906 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AEA demuxer requires raw.o for pcm_read_seekDaniel Verkamp2010-02-19
| | | | Originally committed as revision 21905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare CAF demuxer dependency on mpegaudioDaniel Verkamp2010-02-19
| | | | Originally committed as revision 21904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation of binkaudio_rdft when dct is disabledDaniel Verkamp2010-02-19
| | | | Originally committed as revision 21903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove a Huffman table from WMA which also exists in AACStefan Gehrer2010-02-19
| | | | Originally committed as revision 21902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memory leak for truncated framesVitor Sessak2010-02-19
| | | | Originally committed as revision 21901 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memory leak for truncated framesVitor Sessak2010-02-19
| | | | Originally committed as revision 21900 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove stale function declaration.Martin Storsjö2010-02-19
| | | | | | Patch by Martin Storsjö <$firstname $firstname st>. Originally committed as revision 21899 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing dependency of TwinVQVitor Sessak2010-02-19
| | | | Originally committed as revision 21898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove ivi5_scans8x8[0], it duplicates ff_zigzag_directStefan Gehrer2010-02-19
| | | | Originally committed as revision 21897 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename RTSP_STATE_PLAYING to _STREAMING, since that better covers theMartin Storsjö2010-02-19
| | | | | | | | future use of the rtsp* codebase for RTSP muxing. Patch by Martin Storsjö <$firstname $firstname st>. Originally committed as revision 21896 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent after last commitKostya Shishkov2010-02-19
| | | | Originally committed as revision 21895 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Since WavPack chunk can contain more samples than FFmpeg is guaranteed toKostya Shishkov2010-02-19
| | | | | | hold, decode it in several iterations outputting as many samples as possible. Originally committed as revision 21894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add the dependency for mpeg4audio.o of the ALS decoder.Thilo Borgmann2010-02-19
| | | | Originally committed as revision 21893 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do sequential bit reading outside of []-operators.Thilo Borgmann2010-02-19
| | | | Originally committed as revision 21892 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WavPack demuxer supports ID3v1 tags, so don't forget id3v1.o dependency for itKostya Shishkov2010-02-19
| | | | | | in Makefile Originally committed as revision 21891 to svn://svn.ffmpeg.org/ffmpeg/trunk