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
2012-12-20lavr: add option for dithering during sample format conversion to s16Justin Ruggles
2012-12-20mpeg12: do not decode extradata more than once.Anton Khirnov
Fixes CVE-2012-2803. CC: libav-stable@libav.org
2012-12-20cmdutils: pass number of groups to split_commandline().Anton Khirnov
This makes the code simpler and avoids mixing designated and non-designated initializers in a potentially unsafe way in avconv.
2012-12-19mov: handle h263 and flv1 for codec_tag 'H','2','6','3'Janne Grunau
The sample in https://bugzilla.libav.org/show_bug.cgi?id=393 and samples/F4V/H263_NM_f.mp4 both have codec_tag H263 for different codecs. H263 is apparently used by Flash Media Server for Sorensen Spark videos. Patch based on commit 5442083b1c541dd166b3adf39131259fc846a62b by Carl Eugen Hoyos. Fixes bug 393.
2012-12-19h264: fix sps parsing for SVC and CAVLC 4:4:4 Intra profilesVictor Lopez
Fixes bug 396. CC: libav-stable@libav.org
2012-12-19mpegvideo: increase edge_emu_buffer size for VC1Janne Grunau
The VC1 decoder uses edge_emu_buffer simultaneously for luma and chroma and needs more space. That was not a problem before f1d8763a02b5fce since the size for edge_emu_buffer was always calculated with 2 byte per pixel since the linesize was not known. Fixes occasionally fate errors in vc1_sa10143.
2012-12-19lavc: merge latest x86inc.asm fixes with x264Ronald S. Bultje
Unbreak NASM support. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2012-12-18avcodec: bump minor for adaptive h264 frame-mtJanne Grunau
Also adds forgotten Changelog entry.
2012-12-18avconv: pass the actually selected decoder to filter_codec_opts().Anton Khirnov
2012-12-18avconv: use new options parser.Anton Khirnov
2012-12-18cmdutils: don't log an error in opt_default().Anton Khirnov
It results in spurious errors when using the new preparser.
2012-12-18cmdutils: add a commandline pre-parser.Anton Khirnov
It splits the commandline into a more convenient internal representation for further parsing. This will allow e.g. - processing global options first independently of their location on the commandline, eliminating ugly hacks for processing e.g. cpuflags first - better options validation and error reporting. It is now possible for the parser to know that it's applying an input option to an output file or vice versa and act accordingly.
2012-12-18cmdutils: split parse_option().Anton Khirnov
Separate the code that searches for the option to use and the code that actually writes it. The writing code will be reused by the new options parser.
2012-12-18cmdutils: add a macro to simplify grow_array() calls.Anton Khirnov
2012-12-18h264: support frame parameter changes during frame-mtJanne Grunau
Fixes CVE-2012-2782.
2012-12-18mpegvideo: allocate scratch buffers after linesize is knownJanne Grunau
Since we can't know which stride a custom get_buffer() implementation is going to use we have to allocate this scratch buffers after the linesize is known. It was pretty safe for 8 bit per pixel pixel formats since we always allocated memory for up to 16 bits per pixel. It broke hoever with cmdutis.c's alloc_buffer() and high pixel bit depth since it allocated larger edges than mpegvideo expected. Fixes fuzzed sample nasa-8s2.ts_s244342.
2012-12-18ff_h264_direct_ref_list_init: fix B slice check.Michael Niedermayer
Fixes null pointer dereference. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
2012-12-18h264: increase dist_scale_factor for up to 32 referencesJanne Grunau
Compute dist_scale_factor_field only for MBAFF since that is the only case in which it is used.
2012-12-18misc typo, style and wording fixesDiego Biurrun
2012-12-18configure: formatting cosmeticsDiego Biurrun
2012-12-18h264: use mbaff ref indices in fill_colmap() only for mbaff referencesMichael Niedermayer
Prevents writing beyond array bounds. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2012-12-18h264: prevent decoding of slice NALs in extradataJanne Grunau
It is not posible to call get_buffer during frame-mt codec initialization. Libavformat might pass huge amounts of data as extradata after parsing broken files. The 'extradata' for the fuzzed sample sample_varPAR_s5374_r001-02.avi is 2.8M large and contains multiple slices.
2012-12-17doxy: Clarify what avpriv_set_pts_info doesDerek Buitenhuis
The "pts for a given stream" was nonsensical. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2012-12-17au: Reorder code so that both muxer and demuxer are under #ifdefsDiego Biurrun
This reduces code size when either piece has been disabled.
2012-12-17fate: Move RALF test into lossless audio groupDiego Biurrun
2012-12-17cosmetics: Use consistent names for multiple inclusion guards.Diego Biurrun
2012-12-17avresample: use valid log context in mixing functionsHendrik Leppkes
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-12-17lavr: remove automatic context close/open for resampling compensationJustin Ruggles
It adds unnecessary complication for insignificant usability improvement. The user really should know if they'll need resampling compensation before opening the context. Note that only the documentation has changed. The current functionality will still work until the next major bump.
2012-12-17lavr: only save/restore the mixing matrix if mixing is being doneJustin Ruggles
2012-12-16rtpdec_vp8: Cosmetics: Fix bad alignment/indentationMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-12-16rtpenc: Allow including a SDES/CNAME block in RTCP SR packetsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-12-16rtpenc_vp8: Include the picture number in VP8 packetsMartin Storsjö
This makes it easier for receivers to decide what to do if data is lost. Refactor calculating the max payload size, to avoid hardcoding the header size in too many places, reducing the number of lines that have to be touched if the header is adjusted further. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-12-15h264: fix memleak on error during SPS parsingJanne Grunau
Introduced in d7d6efe42b0d.
2012-12-15h264-mt: handle NAL_DPAs before calling ff_thread_finish_setupJanne Grunau
Since a NAL_DPA can start a new frame it has to be handled before ff_thread_finish_setup is called.
2012-12-15lavr: move AudioMix struct definition to audio_mix.cJustin Ruggles
2012-12-14vp56: release frames on errorLuca Barbato
Fixes CVE-2012-2783 CC: libav-stable@libav.org
2012-12-14vp56: make parse_header return standard error codesLuca Barbato
Returning 0 for failure is misleading. CC: libav-stable@libav.org
2012-12-14ivi_common: check that scan pattern is set before using it.Anton Khirnov
Fixes CVE-2012-2791. CC: libav-stable@libav.org
2012-12-14ivi_common: use proper logging context in ivi_decode_blocks().Anton Khirnov
2012-12-14ivi_common: make some functions and tables static.Anton Khirnov
2012-12-14asyncts: ignore min_delta only if first_pts is setJustin Ruggles
2012-12-14asyncts: merge two conditionsJustin Ruggles
2012-12-14x86inc: fully concatenate tokens to fix macro expansion for nasmJanne Grunau
Fixes build errors with nasm introduced in 6f40e9f070f7 for stack memory alignment. Noticed by BugMaster.
2012-12-14h264: initialize frame-mt context copies properlyJanne Grunau
2012-12-14mpegvideo: treat delayed pictures as usedJanne Grunau
This requires to move the avcodec_default_free_buffers() call to ff_MPV_common_end() since otherwise delayed pictures would get freed during a size change.
2012-12-14lavc: set frame parameters after decoding only if necessaryJanne Grunau
Direct rendering capable decoders call get_buffer() which will set the frame parameters. Prevents frames with wrong parameters when a decoder outputs delayed frames after a resolution or pixel format change.
2012-12-14h264: set parameters from SPS whenever it changesJanne Grunau
Fixes a crash in the fuzzed sample sample_varPAR.avi_s26638 with alternating bit depths.
2012-12-13asyncts: cosmetics: reindentJustin Ruggles
2012-12-13doc: improve documentation for the asyncts filter first_pts optionJustin Ruggles
Note the time base for the option. Add an additional example description.
2012-12-13asyncts: fix the asyncts behavior when using the first_pts optionJustin Ruggles
Currently it will do padding, but it does not properly handle start-of-stream trimming as documented.