- 18 Dec, 2012 14 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
It results in spurious errors when using the new preparser.
-
Anton Khirnov authored
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.
-
Anton Khirnov authored
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.
-
Anton Khirnov authored
-
Janne Grunau authored
Fixes CVE-2012-2782.
-
Janne Grunau authored
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.
-
Michael Niedermayer authored
Fixes null pointer dereference. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
-
Janne Grunau authored
Compute dist_scale_factor_field only for MBAFF since that is the only case in which it is used.
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Michael Niedermayer authored
Prevents writing beyond array bounds. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
-
Janne Grunau authored
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.
-
- 17 Dec, 2012 7 commits
-
-
Derek Buitenhuis authored
The "pts for a given stream" was nonsensical. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Diego Biurrun authored
This reduces code size when either piece has been disabled.
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Hendrik Leppkes authored
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
-
Justin Ruggles authored
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.
-
Justin Ruggles authored
-
- 16 Dec, 2012 3 commits
-
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
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>
-
- 15 Dec, 2012 3 commits
-
-
Janne Grunau authored
Introduced in d7d6efe4.
-
Janne Grunau authored
Since a NAL_DPA can start a new frame it has to be handled before ff_thread_finish_setup is called.
-
Justin Ruggles authored
-
- 14 Dec, 2012 5 commits
-
-
Luca Barbato authored
Fixes CVE-2012-2783 CC: libav-stable@libav.org
-
Luca Barbato authored
Returning 0 for failure is misleading. CC: libav-stable@libav.org
-
Anton Khirnov authored
Fixes CVE-2012-2791. CC: libav-stable@libav.org
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- 13 Dec, 2012 8 commits
-
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Janne Grunau authored
Fixes build errors with nasm introduced in 6f40e9f0 for stack memory alignment. Noticed by BugMaster.
-
Janne Grunau authored
-
Janne Grunau authored
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.
-
Janne Grunau authored
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.
-
Janne Grunau authored
Fixes a crash in the fuzzed sample sample_varPAR.avi_s26638 with alternating bit depths.
-
Justin Ruggles authored
-