aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* avcodec/sheervideo: add 10-bit interlaced RGB(A) supportPaul B Mahol2016-06-121-0/+233
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/utvideodec: add support for UQRG and UQRA formatsPaul B Mahol2016-06-122-0/+46
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavu/file_open: Use current directory for temporary files also on Android.Carl Eugen Hoyos2016-06-111-1/+1
| | | | Fixes ticket #5620.
* lavc/libutvideodec: Do not set bits_per_raw_sample.Carl Eugen Hoyos2016-06-111-3/+0
| | | | It is not always 8 but never different from the pix_fmt property.
* avcodec/utvideodec: fix multiple slices for UQY2 and other issuesPaul B Mahol2016-06-111-9/+18
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/vf_histogram: indent histogram optionsDave Rice2016-06-111-4/+4
|
* avfilter/vf_histogram: shortcuts for histogram optionsDave Rice2016-06-111-0/+3
|
* avcodec/utvideo: add support for UQY2Paul B Mahol2016-06-113-40/+242
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/mpc8: Correct end truncationMichael Niedermayer2016-06-111-2/+6
| | | | | | Fixes Ticket5478 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* lavc/videotoolboxenc: set extradata when opening codecRick Kern2016-06-111-85/+241
| | | | | | | | VideoToolbox doesn't supply parameter sets until the first frame is done encoding. This spins up a temporary encoder and encodes a single frame to get this data. Signed-off-by: Rick Kern <kernrj@gmail.com>
* lavc/videotoolboxenc: fix allocated buffer sizeRick Kern2016-06-111-129/+94
| | | | | | | Allocates a buffer with padding, and with enough room for start codes when length codes are smaller. Signed-off-by: Rick Kern <kernrj@gmail.com>
* libavformat/flvenc: support for codec configuration change mid streamIvan2016-06-111-0/+13
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavformat/flvenc: refactoring: extracted method for writing codec headersIvan2016-06-111-52/+64
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/mp3dec: Increase probe score slightly when the whole data from ↵Michael Niedermayer2016-06-111-1/+6
| | | | | | | | begin to end is mp3 Improves score for 1000-frames-of-noise-encoded-with-lame.mp3 without file extension Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* vaapi_encode_h26[45]: Reject bitrate targets higher than 2^31Mark Thompson2016-06-102-0/+12
|
* avcodec/cfhd: Set dimensions unconditionallyMichael Niedermayer2016-06-101-0/+5
| | | | | | | Fixes Ticket5215 Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/sheervideo: add support for 10-bit interlaced YCbCr(A) 4:2:2Paul B Mahol2016-06-101-0/+242
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/sheervideo: fix argx format supportPaul B Mahol2016-06-101-2/+2
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* swscale: add input support for gbrap10 pixel formatPaul B Mahol2016-06-102-0/+12
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avutil: add 10-bit planar RGB with alphaPaul B Mahol2016-06-102-0/+32
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* ffmpeg: Add cuvid hwaccel supportTimo Rothenpieler2016-06-105-0/+249
|
* avcodec/cuvid: add cuvid decoderTimo Rothenpieler2016-06-107-1/+751
|
* avcodec/mpegvideo: Do not clear the parse context during initMichael Niedermayer2016-06-101-3/+1
| | | | | | | It is allocated before, this cannot work Fixes Ticket5613 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* swscale: fix ring buffer size when scaling slices of a framePedro Arthur2016-06-102-6/+51
| | | | | The ring buffer size should be able to store input lines when there is not enough lines to output a single line.
* swscale: fix crash with swscale-test when using slicesPedro Arthur2016-06-101-2/+2
|
* avcodec/sheervideo: add support for 10-bit interlaced YCbCr(A) 4:4:4(:4)Paul B Mahol2016-06-101-0/+233
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* MAINTAINERs cleanup (remove myself from things i de facto dont maintain)Michael Niedermayer2016-06-101-5/+4
| | | | | | | | | | x86 is maintained entirely by others these days ML, mostly too remove myself from a few spots that have other maintainers and where i just dont know the code that well anyway to do an ideal job Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/sheervideo: fix prediction for ybyr formatPaul B Mahol2016-06-101-1/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/sheervideo: fix predictions for c82p formatPaul B Mahol2016-06-101-1/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_loudnorm: add dual_mono optionKyle Swanson2016-06-092-0/+14
| | | | Signed-off-by: Kyle Swanson <k@ylo.ph>
* avformat/utils: Do not overwrite, but use sample_fmt from contextMichael Niedermayer2016-06-091-0/+3
| | | | | | Fixes Ticket 3759 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/utils: Open decoder even if there are no packets if parameters are ↵Michael Niedermayer2016-06-091-2/+11
| | | | | | missing Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/utils: Initialize st in loopMichael Niedermayer2016-06-091-0/+2
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/sheervideo: supports some other 8bit formatsPaul B Mahol2016-06-091-0/+4
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/sheervideo: add interlaced YCbCr(A) 4:2:2:4 8-bit supportPaul B Mahol2016-06-091-0/+178
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avutil/opt: Fix max/min checking in av_opt_set() for AV_OPT_TYPE_VIDEO_RATEMichael Niedermayer2016-06-092-3/+8
| | | | | | Fixes Ticket5618 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat: Fix max value of AV_OPT_TYPE_VIDEO_RATEMichael Niedermayer2016-06-096-6/+6
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter: Fix max value of AV_OPT_TYPE_VIDEO_RATEMichael Niedermayer2016-06-0912-22/+22
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avdevice: Fix max value of AV_OPT_TYPE_VIDEO_RATEMichael Niedermayer2016-06-094-4/+4
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/sheervideo: add interlaced YCbCr(A) 4:4:4:4 8-bit supportPaul B Mahol2016-06-091-0/+200
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* x86/showcqt: use three operand format for some instructionsJames Almer2016-06-082-5/+5
| | | | | | Fixes failures with yasm 1.1.0 and older Signed-off-by: James Almer <jamrial@gmail.com>
* x86/showcqt: add missing preprocessor checksJames Almer2016-06-081-0/+6
| | | | | | Old yasm/nasm versions don't support some of these Signed-off-by: James Almer <jamrial@gmail.com>
* aacsbr: reduce element type mismatch warning severityRostislav Pehlivanov2016-06-081-1/+1
| | | | | | | | | | | | All HE-AAC samples with an LFE channel make this warning get spammed on every frame. Turning off SBR for LFE channels makes sense (since it has much less coefficients than normal channels do), so this error print is of no value in this case. It makes sense to keep the error in other cases, hence why it's still around, degraded to warning severity since the decoder will still attempt to decode without SBR. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* avfilter/src_movie: call open_stream after guess_channel_layoutMuhammad Faiz2016-06-091-3/+3
| | | | | | | fix error 'Channel layout change is not supported' when opening wav file Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
* avfilter/avf_showcqt: set range on fps/rate/r optionMuhammad Faiz2016-06-091-3/+3
| | | | | | see Ticket #5618 Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
* x86/aacdec: use HADDPS macroJames Almer2016-06-082-33/+7
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avutil/x86util: move haddps sse emulation from showcqtJames Almer2016-06-082-16/+16
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* MAINTAINERS: Add myself as maintainer for VAAPI encodersMark Thompson2016-06-081-0/+1
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/h264: Put context_count check backMichael Niedermayer2016-06-081-4/+6
| | | | | | Fixes assertion failure Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/avf_showcqt: cqt_calc optimization on x86Muhammad Faiz2016-06-085-0/+281
| | | | | | | | | | | | | | | | | | | | | | | on x86_64: time PSNR plain 3.303 inf SSE 1.649 107.087535 SSE3 1.632 107.087535 AVX 1.409 106.986771 FMA3 1.265 107.108437 on x86_32 (PSNR compared to x86_64 plain): time PSNR plain 7.225 103.951979 SSE 1.827 105.859282 SSE3 1.819 105.859282 AVX 1.533 105.997661 FMA3 1.384 105.885377 FMA4 test is not available Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>