summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Metadata demuxer.Anton Khirnov2010-12-27
| | | | Originally committed as revision 26102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Metadata muxerAnton Khirnov2010-12-27
| | | | | | Dumps all metadata to a text file for easy manual editing. Originally committed as revision 26101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow output formats without any streams.Anton Khirnov2010-12-27
| | | | | | Required for future metadata format. Originally committed as revision 26100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo.Ronald S. Bultje2010-12-26
| | | | Originally committed as revision 26099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend documentation for format and noformat filters, and removeStefano Sabatini2010-12-26
| | | | | | | explicit reference to the ffmpeg tool command for keeping the docs more generic. Originally committed as revision 26098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add erode libopencv filter.Stefano Sabatini2010-12-26
| | | | Originally committed as revision 26097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add dilate libopencv filter.Stefano Sabatini2010-12-26
| | | | Originally committed as revision 26096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump libavformat minor version, forgotten in r26094Peter Ross2010-12-26
| | | | Originally committed as revision 26095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Windows Televison (WTV) demuxerPeter Ross2010-12-26
| | | | Originally committed as revision 26094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make guid utility function visibile to other modules (ff_guidcmp, ff_get_guid)Peter Ross2010-12-26
| | | | Originally committed as revision 26093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add ff_find_stream_indexPeter Ross2010-12-26
| | | | Originally committed as revision 26092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add ff_get_bmp_headerPeter Ross2010-12-26
| | | | Originally committed as revision 26091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify tff setting code in MPV_frame_start().Michael Niedermayer2010-12-25
| | | | Originally committed as revision 26090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify AVFMT_TS_DISCONT and muxers.Michael Niedermayer2010-12-25
| | | | Originally committed as revision 26089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix size of monoblack_pal array, code uses 16 values unconditionally.Daniel Verkamp2010-12-25
| | | | | | Patch by Daniel Verkamp [daniel drv nu]. Originally committed as revision 26088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Port pred4x4_down_left_mmxext (H.264 intra prediction) from x264 to FFmpeg.Daniel Kang2010-12-24
| | | | | | | | | LGPL relicensing approved by original authors: Holger Lubitz <holger lubitz org>, Jason Garrett-Glaser <darkshikari gmail com> and Loren Merritt <lorenm at u dot washington dot edu>. Patch by Daniel Kang <daniel dot d dot kang at gmail com>, as part of Google's GCI 2010. Originally committed as revision 26087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* For rounding in chroma MC SSSE3, use 16-byte pw_3/4 instead of reading 8 bytesRonald S. Bultje2010-12-24
| | | | | | and then using movlhps to dup it into the higher half of the register. Originally committed as revision 26086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* There is no complete G.729 decoder in libavcodec.Carl Eugen Hoyos2010-12-24
| | | | Originally committed as revision 26085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: line wrap and vertical alignmentJustin Ruggles2010-12-23
| | | | Originally committed as revision 26084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure that the 2nd CRC value does not match the AC-3 sync word.Justin Ruggles2010-12-23
| | | | | | | | | This is optional for encoders, but it's a good idea and has minimal impact on performance. This will change the output for some files, but it happens not to affect the regression tests. Originally committed as revision 26083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Store CRC context locally to reduce number of calls to av_crc_get_table().Justin Ruggles2010-12-23
| | | | Originally committed as revision 26082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded local variable, frame_size, in output_frame_end().Justin Ruggles2010-12-23
| | | | Originally committed as revision 26081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix braino: by -> with.Stefano Sabatini2010-12-23
| | | | Originally committed as revision 26080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Redesign the libopencv wrapper to make it more generic. Accept bothStefano Sabatini2010-12-23
| | | | | | | | | FILTERNAME=ARGS and FILTERNAME:ARGS syntax. The same filter class will be used for managing all the libopencv filtering functions. Originally committed as revision 26079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add dependency for the libavfitler.html file.Stefano Sabatini2010-12-23
| | | | Originally committed as revision 26078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtsp: Require the transport reply from the server to match the requestMartin Storsjö2010-12-23
| | | | | | | | | This fixes a crash if we requested TCP interleaved transport, but the server replies with transport data for UDP. According to the RFC, the server isn't allowed to respond with another transport type than the one requested. Originally committed as revision 26077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Makefile: Fix dependencies of componentsMartin Storsjö2010-12-22
| | | | | | | | | This fixes compilation with --disable-everything --enable-<component>, for all encoders, decoders, muxers, demuxers, parsers, protocols, bsfs, indevs, outdevs and filters at the moment. (All those that work without any external dependencies at least.) Originally committed as revision 26076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix av_file_map(): replace stat(filename, &st) with fstat(fd, &st).Stefano Sabatini2010-12-22
| | | | | | | The file might be replaced between open() and stat(). Spotted by Mans. Originally committed as revision 26075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace lstat() with stat() in av_file_map(). The lstat() use was wrong.Stefano Sabatini2010-12-22
| | | | Originally committed as revision 26074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_file_map() and av_file_unmap() functions.Stefano Sabatini2010-12-22
| | | | Originally committed as revision 26073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: fix comment after change in clipping rangeJustin Ruggles2010-12-22
| | | | Originally committed as revision 26072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change FIX15() back to clipping to -32767..32767.Justin Ruggles2010-12-21
| | | | | | | | This avoids a 16-bit overflow in mdct512() due to a -32768 value in costab. References updated for acodec-ac3, lavf-rm, and seek-ac3_rm tests. Thanks to Måns Rullgård for finding the bug. Originally committed as revision 26071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add emms_c() after exp_diff calculations.Justin Ruggles2010-12-21
| | | | | | | Fixes AC-3 encoding on OpenBSD 4.8 x86_32 and hopefully other similar configurations. Originally committed as revision 26070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pre-calculate crc_inv at codec init.Justin Ruggles2010-12-21
| | | | | | 20% faster output_frame_end(). Originally committed as revision 26069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix make checkheadersMartin Storsjö2010-12-21
| | | | | | amrwbdata.h uses offsetof(), which is defined in stddef.h. Originally committed as revision 26068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix more matroska/webm muxer dependenciesMartin Storsjö2010-12-21
| | | | | | | This fixes building with --disable-everything --enable-muxer=matroska and/or --enable-muxer=webm Originally committed as revision 26067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a missing dependency for the WebM muxerMartin Storsjö2010-12-21
| | | | | | | This fixes one of the issues found if building with --disable-everything --enable-muxer=webm Originally committed as revision 26066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* g722: Move the low_inv_quant6 table up to the common tablesMartin Storsjö2010-12-21
| | | | | | | Since SVN rev 25866, this table is used by the trellis encoder, too, not only by the decoder. Originally committed as revision 26065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase STDDEV tolerance for the fate-amrwb-14k25 test so it pass inVitor Sessak2010-12-20
| | | | | | x86_64 boxes. Originally committed as revision 26064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AMR-WB FATE testsVitor Sessak2010-12-20
| | | | Originally committed as revision 26063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sdp: Add a framesize attribute to H.263 SDP descriptionsMartin Storsjö2010-12-20
| | | | | | | | While not mentioned in RFC 4629, this is required for H.263 in 3GPP TS 26.234. It is in practice required for playback with Android stagefright and on Samsung bada phones. Originally committed as revision 26062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix crash if invalid bit-rate was read from file.David Czech2010-12-20
| | | | | | | | Fixes issue 2426. Patch by David Czech, davidczech510 gmail Originally committed as revision 26061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix avfilter_draw_slice() copy code with alpha planes.Stefano Sabatini2010-12-19
| | | | Originally committed as revision 26060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert commit r22596.Stefano Sabatini2010-12-19
| | | | | | | | | | | | | | | | | commit ab8610aa176c13b5e25a2d8770df28a14665e169 Author: koorogi <koorogi@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b> Date: Thu Mar 18 23:13:04 2010 +0000 The vflip filter does not need to keep ownership of a picture reference. Avoid creating and releasing useless extra picture references in the start_frame and end_frame callbacks. Originally committed as revision 22596 to svn://svn.ffmpeg.org/ffmpeg/trunk The new reference creation is required when the linesizes are used by the previous filters in the filterchain, for example as in "pad=W:H:X:Y,vflip". Originally committed as revision 26059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix crash in gradfun:end_frame() when inpic == outpic, so it has to beStefano Sabatini2010-12-19
| | | | | | freed just once. Originally committed as revision 26058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix -lowres with ffplay.Anatoly Nenashev2010-12-19
| | | | | | Patch by Anatoly Nenashev, anatoly d nenashev a ovsoft d ru Originally committed as revision 26057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVERROR_*_NOT_FOUND codes.Nicolas George2010-12-19
| | | | Originally committed as revision 26056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Discard partial packet of last frame for fate-wmv8-drm to avoid test failsReimar Döffinger2010-12-18
| | | | | | due to VC-1 decoder overreads resulting in different output. Originally committed as revision 26055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add test for ASF -cryptokey that tests only demuxing, but both audio and videoReimar Döffinger2010-12-18
| | | | | | to complement the existing video-only decode test. Originally committed as revision 26054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change ASF demuxer to return incomplete last packets.Reimar Döffinger2010-12-18
| | | | | | | Whether the behaviour for streams using scrambling makes sense is unclear. Originally committed as revision 26053 to svn://svn.ffmpeg.org/ffmpeg/trunk