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
2016-06-08avcodec/sheervideo: fix order of operations for raw linesPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-06-07avcodec/sheervideo: add support for 8-bit interlaced (A)RGBPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-06-07avcodec: add BitJazz SheerVideo decoderPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-06-07avcodec/alsdec: Check r to prevent out of array readMichael Niedermayer
No testcase known Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-07lavc/mediacodec: improve error messagesMatthieu Bouron
2016-06-07lavc/mediacodec: bypass width/height restrictions when looking for a decoderMatthieu Bouron
Codec width/height restrictions seem hardcoded at the OMX level and seem arbitrary. Bypassing those restrictions allows a device to decode streams at higher resolutions. For example it allows a Nexus 5 to decode h264 streams with a resolution higher than 1920x1080.
2016-06-07lavc/mediacodec: rename MediaFormat field clazz to mediaformat_class for ↵Matthieu Bouron
consistency
2016-06-07lavc/mediacodec: move struct declarations at the beginMatthieu Bouron
2016-06-07lavc/mediacodec: rename jfields_mapping to jni_amediacodeclist_mappingMatthieu Bouron
2016-06-07lavc/mediacodec: do not delete a local reference twice in case of errorMatthieu Bouron
2016-06-07avcodec/utils: check skip_samples signednessMichael Niedermayer
Fixes Ticket5528 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-07avcodec/nvenc: Check capabilities for interlaced encodingTimo Rothenpieler
2016-06-06avcodec/exr: indent b44 uncompress functionMartin Vignali
2016-06-06avcodec/exr: fix decoding of B44 exr when all channel doesnt have the same ↵Martin Vignali
pixel type
2016-06-06avcodec/exr: move channel_line_size to thread dataMartin Vignali
In order to be used by b44 uncompress.
2016-06-06avcodec/exr: improve pxr24 uncompressMartin Vignali
Fix pxr24 uncompress when all channels doesnt have the same pixel type. The expected length after zip decoding, is now calculated channel by channel.
2016-06-06avcodec/exr: remove unneed scanline_size varMartin Vignali
2016-06-06avcodec/exr: fix tile decoding when all channels doesnt have the same pixel typeMartin Vignali
Also simplify the tile code, sharing more code with the scanline mode.
2016-06-06avcodec/exr: indent the if (layer_match) partMartin Vignali
2016-06-06avcodec/exr: fix layer detectionMartin Vignali
Only test a channel if the layer name match. Avoid to try to mix channel between the main layer (rgba layer), and the layer request by the user.
2016-06-06avcodec/bmp_parser: Check fsizeMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-06avcodec/bmp_parser: reset stateMichael Niedermayer
Fixes part of ticket 5598 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-06avcodec/bmp_parser: Fix remaining sizeMichael Niedermayer
Fixes part of ticket 5598 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-06avcodec/bmp_parser: Fix frame_start_found in cross frame casesMichael Niedermayer
Fixes part of ticket 5598 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-06avcodec/wmalosslessdec: Use unsigned operations for overflowing casesMichael Niedermayer
Fixes undefined behavior in fate-lossless-wma24-2 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-05avcodec/mpeg4videodec: Fix default low_delay flag value if not codedMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-05avcodec/mpeg4videodec: Print low_delay value with -debug 1 in ↵Michael Niedermayer
decode_vol_header() Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-05Seperate x264rgb encoder and only enable when its actually supportedMichael Niedermayer
This avoids enabling and building the x264rgb encoder when its actually not supported and thus would not work Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-05avcodec/cfhd: clear idwt_buf on allocationMichael Niedermayer
This avoids use of uninitialized variables and might make bugs in general easier to reproduce Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-05Check av_dup_packet() return codeMichael Niedermayer
Fixes: CID1338320 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-05avcodec/mpegvideo: Deallocate last/next picture earlierMichael Niedermayer
Fixes regression with mplayers direct rendering and reduces buffer count pressure in some cases Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-04avcodec/utils: initialize delay in avcodec_parameters_to_context()Michael Niedermayer
Fixes lost codec delayy Should fix Ticket5509 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-04avcodec/nvenc: Don't set packet durationTimo Rothenpieler
It's not expected to be set on video packets and causes issues in ffmpeg.c.
2016-06-03lavc/mediacodecdec_h264: rename input_ref to input_pktMatthieu Bouron
2016-06-03lavc/mediacodecdec_h264: switch to new BSF APIMatthieu Bouron
2016-06-03lavc/vaapi_encoder_{h264,h265}: fix bad format warningMatthieu Bouron
2016-06-02avcodec/magicyuv: set correct size of last slice for each planePaul B Mahol
Fixes invalid read. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-06-02avcodec/h264_refs: Fix pps_ref_count with multiple PPSMichael Niedermayer
Found-by: ubitux Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-02avcodec/h264_refs: Remove unused pps_countMichael Niedermayer
Found-by: ubitux Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-02avcodec/magicyuv: fix decoding of raw slicesPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-06-02avcodec/avpacket: Respect payload offset in av_grow_packetAndriy Lysnevych
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-01avcodec: Document where the AVOption names can be found for the fields of ↵Michael Niedermayer
AVCodecContext Missing docs found by: nevcairiel RFC: should we add support so that the C field names always work as av option names/keys ? Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-05-31avocdec: add MagicYUV decoderPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-05-31avcodec/bmp_parser: Fix stateMichael Niedermayer
Fixes Ticket5598 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-05-31avcodec/nvenc: Refactor timestamp generation logicTimo Rothenpieler
Directly adapted from libav
2016-05-31avcodec/nvenc: forward frame durationTimo Rothenpieler
2016-05-31avcodec/nvenc: Handle minqp-only case in set_vbrTimo Rothenpieler
2016-05-31avcodec/nvenc: twopass mode works in all modesTimo Rothenpieler
2016-05-31avcodec/nvenc: Fix forcing constqp rc modeTimo Rothenpieler
The CONSTQP enum value is 0, so this check failed for it.
2016-05-31avcodec/nvenc: don't enqueue timestamps until a frame was acceptedAndrey Turkin
Otherwise timestamps/pending FIFOs would go out of sync if nvEncodePicture ever fails. Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>