- 14 Feb, 2012 1 commit
-
-
Diego Biurrun authored
-
- 13 Feb, 2012 18 commits
-
-
Ronald S. Bultje authored
They were introduced in an earlier commit that introduced use of named arguments. One cause was a typo, a second cause appears to be a bug in x264asm that I work around by not using named arguments.
-
Aneesh Dogra authored
Signed-off-by:
Janne Grunau <janne-libav@jannau.net>
-
Matthew Szatmary authored
If muxing into mpegts, 4 byte startcodes for the first NAL of an access unit is required. Thus it is simplest for the RTP depacketizer to just use 4 byte startcodes everywhere. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Diego Biurrun authored
This avoids unused variable warnings when zlib/bzlib are not available.
-
Diego Biurrun authored
This allows dropping the av_unused argument from them.
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
Recent versions of gcc (4.4+) no longer give false positive warnings.
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
When segmenting the output from the mpegts muxer, one can now set this option when cutting to a new segment, to make sure the next segment starts with PAT/PMT/SDT. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Ronald S. Bultje authored
-
Ronald S. Bultje authored
This allows removing any gray16-specific code, which is essentially identical to the per-plane code in yuv2plane*().
-
Ronald S. Bultje authored
-
Ronald S. Bultje authored
-
Ronald S. Bultje authored
-
Diego Biurrun authored
Also give a more suitable name to the MMI-optimized IDCT; it is not PS2-specific, as the name currently suggests.
-
Diego Biurrun authored
This fixes compilation with -Werror=missing-prototypes.
-
Diego Biurrun authored
-
- 12 Feb, 2012 9 commits
-
-
Ronald S. Bultje authored
-
Ronald S. Bultje authored
"dstw" can collide with the word-version of the "dst" argument, causing all kind of weird stuff down the pipe.
-
Ronald S. Bultje authored
Most of the function had been converted before, but I forgot this particular location.
-
Andrey Utkin authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Andrey Utkin authored
Set output files duration to recording_time option, if given. Rationale: to save duration into metadata for file that is written to non-seekable output, for formats like FLV (with metadata at beginning). Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- 11 Feb, 2012 12 commits
-
-
Justin Ruggles authored
This should have been updated in b590f3a7.
-
Aneesh Dogra authored
Signed-off-by:
Ronald S. Bultje <rsbultje@gmail.com>
-
Aneesh Dogra authored
Signed-off-by:
Ronald S. Bultje <rsbultje@gmail.com>
-
Ronald S. Bultje authored
At very small dimensions, this calculation could lead to zero-sized filters, which leads to uninitialized output, zero-sized allocations, loop overflows in SIMD that uses do{..}while(i++<filtersize); instead of for(i=0;i<filtersize;i++){..} and several other similar failures. Therefore, require a minimum filtersize of 1. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
Simplifies use of verbatim mode.
-
Justin Ruggles authored
Otherwise it is not needed because it matches the frame size as encoded in the extradata.
-
Justin Ruggles authored
This avoids an indirection and will simplify implementation of encode2()
-
Justin Ruggles authored
-
Justin Ruggles authored
Gives a better estimate of buffer requirements and a better decision of whether or not to use verbatim mode.
-
Justin Ruggles authored
-