Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Move AVPacket up a bit, so that structs/functions that include AVPacket canThilo Borgmann
themselves be reasonably positioned. Patch by Thilo Borgmann thilo.borgmann googlemail com, see mailinglist thread "[FFmpeg-devel] Google Summer of Code participation". Originally committed as revision 18350 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07use av_freep() instead of av_free() + =NULL.Aurelien Jacobs
Originally committed as revision 18349 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Fix the copyright yearLuca Abeni
Originally committed as revision 18348 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Add support for H.263 video in the RTP muxerMartin Storsjö
patch by Martin Storsjö (martin AT martin DOT st) Originally committed as revision 18347 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Do not return payload type 34 for H.263 (it is deprecated)Luca Abeni
Originally committed as revision 18346 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Move scale factor computation to its own function. Patch by KenanKenan Gillet
Gillet. Originally committed as revision 18345 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Try to honor even completely invalid motion vectors as far as isMichael Niedermayer
easy. Fixes issue961. Originally committed as revision 18344 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Only insert the SPS and PPS NALs in sprop-parameter-setsMartin Storsjö
Patch by Martin Storsjö (martin AT martin DOT st) Originally committed as revision 18343 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-06Add missing entry corresponding to r18163.Stefano Sabatini
Originally committed as revision 18342 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-06Cosmetics: remove empty line.Stefano Sabatini
Originally committed as revision 18341 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-06Fix minor version for the r18116 entry: minor was not bumped in thatStefano Sabatini
revision. Originally committed as revision 18340 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-06Add convenience macros for 5.0/5.1 back speaker configurations.Justin Ruggles
Originally committed as revision 18339 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-06mlpdec: Filters and matrices may change only once per substream per access unit.Ramiro Polla
Originally committed as revision 18338 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-06mlpdec: There must be no extraword for MLP.Ramiro Polla
Originally committed as revision 18337 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-06mlpdec: Validate non-restart bit from the substream header.Ramiro Polla
Originally committed as revision 18336 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-06mlpdec: matrix_out_ch must not be greater than max_matrix_channel, and not ↵Ramiro Polla
max_channel. Originally committed as revision 18335 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-05swscale: Remove X86 commented out code.Ramiro Polla
Originally committed as revision 29149 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-05Make sure the last bits of huffyuv frames are zeroed.Michael Niedermayer
Fixes issue946 Originally committed as revision 18334 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-05swscale: Use function pointers for swScale functions.Ramiro Polla
Originally committed as revision 29145 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-05swscale: {}-related cosmetics.Ramiro Polla
Originally committed as revision 29144 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-05swscale: Add const to some swScale functions' parameters.Ramiro Polla
Originally committed as revision 29143 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-05ARM: NEON optimized put_signed_pixels_clampedDavid Conrad
Originally committed as revision 18333 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-05ARM: NEON optimised add_pixels_clampedMåns Rullgård
Based on patch by David Conrad. Originally committed as revision 18332 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-04Add missing static qualifier from function declaration. Patch by KenanKenan Gillet
Gillet. Originally committed as revision 18331 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-04Rename FF_MM_MMXEXT to FF_MM_MMX2, for both clarity and consistencyStefano Sabatini
with libswscale. Originally committed as revision 18330 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-04Remove JACK input device addition entry.Stefano Sabatini
The addition of a new component is not considered an API change. Originally committed as revision 18329 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Do not fail on zero packets.Michael Niedermayer
Originally committed as revision 18328 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Mark line_skip3 asm argument as output-only instead of using av_uninit.Reimar Döffinger
Originally committed as revision 18327 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Mark put_signed_pixels_clamped_mmx output operands as early-clobber becauseReimar Döffinger
they are. Hopefully fixes some FATE errors, too. Originally committed as revision 18326 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Use DECLARE_ASM_CONST for non-global ff_vector128 constant used via MANGLEReimar Döffinger
Originally committed as revision 18325 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Add VC-1 bitstream decoding through VA API.Gwenole Beauchesne
Originally committed as revision 18324 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Update after the last two commits.Stefano Sabatini
Originally committed as revision 18323 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Implement JACK input device.Olivier Guilyardi
Patch by Olivier Guilyardi list samalyse com. See the thread: "[FFmpeg-devel] [PATCH] libavdevice: JACK demuxer". Originally committed as revision 18322 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Implement av_fifo_space().Olivier Guilyardi
Patch by Olivier Guilyardi list et samalyse DOT c0m. Originally committed as revision 18321 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Fix lzo-test linking: -llzo2 should be in ELIBS, not EXTRALIBS.Diego Biurrun
Originally committed as revision 18320 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Rewrite put_signed_pixels_clamped_mmx() to eliminate mmx.h from dsputil_mmx.c.Alex Converse
Originally committed as revision 18319 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Update after the last API change.Stefano Sabatini
Originally committed as revision 18318 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02Move AVPacket declaration from avformat.h to avcodec.h.Thilo Borgmann
Patch by Thilo Borgmann thilo dot borgmann at googlemail _dot_ com. Originally committed as revision 18317 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02swscale: Remove mmx2 params from h[yc]scale().Ramiro Polla
Originally committed as revision 29129 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-02swscale: Split h[yc]scale_fast() into their own functions.Ramiro Polla
Originally committed as revision 29128 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-02swscale: Execute sfence and emms depending on runtime flags.Ramiro Polla
Originally committed as revision 29127 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-02Map MOV fourcc YUV2 correctly to PIX_FMT_YUYV422.Jai Menon
Patch by Jai Menon Originally committed as revision 18316 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02ReindentReimar Döffinger
Originally committed as revision 18315 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02Support DVD subtitles in mov/mp4 as created by Nero.Reimar Döffinger
See also http://samples.mplayerhq.hu/sub/NeroMP4/unsupported-embedded-subs-2.mp4 Originally committed as revision 18314 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02Register VA API HW accelerators.Gwenole Beauchesne
Pending bits from earlier approved patches: https://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2009-March/066111.html https://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2009-April/066918.html Originally committed as revision 18313 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02Add VA API deps.Gwenole Beauchesne
Originally committed as revision 18312 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02Add hwaccel configury. This generates CONFIG_<CODEC>_<HWACCEL>_HWACCELGwenole Beauchesne
from registered HW accelerated codecs with REGISTER_HWACCEL(). Originally committed as revision 18311 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02Replace manual setting of the removed av_log_level variable by theDiego Biurrun
corresponding call to av_log_set_level(). Originally committed as revision 18310 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-02Add VA API pixfmt (only VLD is available ATM).Gwenole Beauchesne
Originally committed as revision 18309 to svn://svn.ffmpeg.org/ffmpeg/trunk