summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Optimize unpack_vectors() by not shuffling around redundant vectors.Mike Melanson2009-12-19
| | | | | | | | Inspired by guidance from Dark Shikari. On a Core 2 Duo 2.0 GHz, this change decodes the 10-minute Big Buck Bunny 1080p short about 2 seconds faster. Originally committed as revision 20895 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More sane error message when extradata has not been set.Michael Niedermayer2009-12-18
| | | | Originally committed as revision 20894 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Swap red and blue when decoding r210.Carl Eugen Hoyos2009-12-18
| | | | Originally committed as revision 20893 to svn://svn.ffmpeg.org/ffmpeg/trunk
* It appears that waveformatextensible is mandatory for more cases thanMichael Niedermayer2009-12-18
| | | | | | | just channels>2. The 16bit case is from MSDN, the 48khz is from less a reliable www page (sorry i cant find the URL anymore). Originally committed as revision 20892 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add decoder for R210 (uncompressed 10-bit RGB) codec.Reimar Döffinger2009-12-17
| | | | Originally committed as revision 20891 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CD+G demuxer and decoderMichael Tison2009-12-17
| | | | | | Patch by Michael Tison (gmail address: blackspike@....) Originally committed as revision 20890 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l : make sure probe buffer is large enough.Jai Menon2009-12-17
| | | | Originally committed as revision 20889 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only add 1 index entry per keyframe.Michael Niedermayer2009-12-16
| | | | | | Idea from a patch by samsung. Originally committed as revision 20888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set bits_per_raw_sample appropriately in dpx decoder.Reimar Döffinger2009-12-16
| | | | Originally committed as revision 20887 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse ID3v[12] metadata from TTA files.Jai Menon2009-12-16
| | | | | | As a side-effect, this commit also fixes issue 1310. Originally committed as revision 20886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: make celp_filters.* formatting more consistent with the rest ofVitor Sessak2009-12-16
| | | | | | FFmpeg Originally committed as revision 20885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize ff_celp_lp_synthesis_filterf(). 50% faster in my tests.Vitor Sessak2009-12-16
| | | | Originally committed as revision 20884 to svn://svn.ffmpeg.org/ffmpeg/trunk
* List myself as the maintainer of celp_filters.*Vitor Sessak2009-12-16
| | | | Originally committed as revision 20883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update ffm reference checksums as a result of r20869.Jai Menon2009-12-16
| | | | Originally committed as revision 20882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reply to RTMP ping with the same value as received by client.Martin Storsjö2009-12-16
| | | | | | Patch by Martin Storsjö ($name at $name dot \163\164) Originally committed as revision 20881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -vlang option to set ISO 639 video stream language code.Matthieu Crapet2009-12-16
| | | | | | | | This is similar to existing -alang & -slang options. Patch by Matthieu Crapet m${surname} ^ gmail com. Originally committed as revision 20880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Undo r20874: It broke AAC decoding.Carl Eugen Hoyos2009-12-16
| | | | Originally committed as revision 20879 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable, fixes the warning:Diego Biurrun2009-12-15
| | | | | | libavformat/apetag.c:38: warning: unused variable `l' Originally committed as revision 20878 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use positive logic in opt_target() for selecting the PAL/othersStefano Sabatini2009-12-15
| | | | | | options, make its semantics mildly easier to compile by human minds. Originally committed as revision 20877 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify freeing of audio_language and subtitle_language.Matthieu Crapet2009-12-15
| | | | | | Patch by Matthieu, mcrapet gmail com Originally committed as revision 20875 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum and constant to avoid three icc warnings.Carl Eugen Hoyos2009-12-15
| | | | Originally committed as revision 20874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a typo in documentation.Ramiro Polla2009-12-15
| | | | Originally committed as revision 20873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize opt+1 out in parse_options(), simplify.Stefano Sabatini2009-12-14
| | | | Originally committed as revision 20872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define _XOPEN_SOURCE as 600 before including a XSI extension header.Carl Eugen Hoyos2009-12-14
| | | | Originally committed as revision 20871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use symbolic names for PAL/NTSC/FILM rather than numeric constants in ↵Stefano Sabatini2009-12-14
| | | | | | | | opt_target(). Improve readability. Originally committed as revision 20870 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix breakage introduced by setting the sample_fmt to SAMPLE_FMT_NONE ↵Benjamin Larsson2009-12-14
| | | | | | | | (r20623). This makes streaming to ffserver work again. Originally committed as revision 20869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct typoVitor Sessak2009-12-14
| | | | Originally committed as revision 20868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Don't spawn a subshell when disabling vdpau.Alex Converse2009-12-14
| | | | Originally committed as revision 20867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert flvdec.c part of r20836Michael Niedermayer2009-12-14
| | | | | | | | | | Log: Use AV_METADATA_DONT_STRDUP* / use av_malloced metadata instead of strduped arrays of fixed length. Code from ffmbc with changes to adapt to our metadata API. Reason: memleak & fix is not trivial Originally committed as revision 20866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include dup/drop info if any frames where duplicated or dropedMichael Niedermayer2009-12-14
| | | | | | | instead of when verbose>1. From ffmbc0.3 Originally committed as revision 20865 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Off by 1 bugfix for nb_frames_dup.Michael Niedermayer2009-12-14
| | | | | | From ffmbc0.3 Originally committed as revision 20864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge init & declaration of buf_end.Michael Niedermayer2009-12-14
| | | | | | From ffmbc0.3 Originally committed as revision 20863 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set reordered_opaque in default_reget_buffer() with internal buffers.Michael Niedermayer2009-12-14
| | | | | | From ffmbc0.3, this one appears to be a bugfix. Originally committed as revision 20862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check sample_aspect_ratio validity for mpeg4/h263/h263p encoding.Michael Niedermayer2009-12-14
| | | | | | Merged from ffmbc0.3 Originally committed as revision 20861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use PIX_FMT_NONE for -1 when enum PixelFormat is expected (fixes two icc ↵Carl Eugen Hoyos2009-12-14
| | | | | | warnings). Originally committed as revision 20860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum PixelFormat as type for input_pixfmt to avoid one icc warning.Carl Eugen Hoyos2009-12-14
| | | | Originally committed as revision 20859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support compressed formats in the V4L2 input device.Luca Abeni2009-12-14
| | | | | | Patch by klchxbec AT freenet DOT de. Originally committed as revision 20858 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for V4L2 compressed formats in the table used for convertingLuca Abeni2009-12-14
| | | | | | | between V4L2 formats and ffmpeg's formats/codecs. Patch by klchxbec AT freenet DOT de. Originally committed as revision 20857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the correct type for the V4L2 format.Luca Abeni2009-12-14
| | | | Originally committed as revision 20856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return pkt->size in v4l2_read_packet().Luca Abeni2009-12-14
| | | | | | | mmap_read_frame() takes care of ensuring that the packet size is correct. Originally committed as revision 20855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable vdpau support if the detected libvdpau does not support MPEG-4.Alex Converse2009-12-14
| | | | Originally committed as revision 20854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FLV 8-bit PCM is unsigned, not signedDaniel Verkamp2009-12-14
| | | | | | Fixes issue #1569 Originally committed as revision 20853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize ic->streams[i] out,Michael Niedermayer2009-12-14
| | | | | | change from ffmbc Originally committed as revision 20852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Place { of the function where indent -kr wants it.Michael Niedermayer2009-12-14
| | | | | | Also more consistent with the rest of the code. Originally committed as revision 20851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure the Metadata: header is not printed if the only metadata will notMichael Niedermayer2009-12-13
| | | | | | be displayed. (idea from ffmbc) Originally committed as revision 20850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move dump_metadata() to where it is in ffmbc, looks better.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2009-12-13
| | | | Originally committed as revision 20848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip dumping language twice.Michael Niedermayer2009-12-13
| | | | | | This looks too ugly. Idea also from ffmbc. Originally committed as revision 20847 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dump metadata for AVStreams & AVPrograms too.Michael Niedermayer2009-12-13
| | | | Originally committed as revision 20846 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize dump_metadata() out.Michael Niedermayer2009-12-13
| | | | | | | Idea from ffmbc, code not, mine is a fraction of the size due to simpler metadata API. Originally committed as revision 20845 to svn://svn.ffmpeg.org/ffmpeg/trunk