Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-10-21libavformat/mxfdec: export track name metadataMark Reid
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-10-21avformat/mxfdec: Detect field_order based on video_line_mapTobias Rapp
Read video_line_map from MXF generic picture essence descriptor and use it to derive the coded field order. Use field_dominance to derive the display field order from coded field order. If field_dominance is not available the default value "1" is used as defined in SMPTE S377-1. Fixes field_order detection for a bunch of DV/DVCPRO files. The heuristic for deriving coded field order from video_line_map is inspired by MediaInfo. Signed-off-by: Tobias Rapp <t.rapp@noa-archive.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-10-20rsd: limit number of channelsAndreas Cadhalpun
Negative values don't make sense and too large values can cause overflows. For AV_CODEC_ID_ADPCM_THP this leads to a too small extradata buffer being allocated, causing out-of-bounds writes. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016-10-20dxva2: fix surface selection when compiled with both d3d11va and dxva2Hendrik Leppkes
Fixes a regression introduced in 9b462a0b9
2016-10-20avformat/flvenc: do not attempt to write duration and filesize when not seekableSteven Liu
Its impossible to update the filesize & duration values if seekback is not possible as with live streams Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-10-20lavc/sheervideo: Increase av_get_codec_tag_string() input buffer size.Carl Eugen Hoyos
A size of 32 is typically used.
2016-10-20avfilter/firequalizer: use zero phase kernelMuhammad Faiz
this makes real-valued kernel Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
2016-10-20avfilter/showcqt: add cscheme optionMuhammad Faiz
Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
2016-10-20lavf/riff: Document the interleaving of VSM4 video.Carl Eugen Hoyos
2016-10-20avformat: prevent triggering request_probe assert in ff_read_packetAndreas Cadhalpun
If probe_codec is called with pkt == NULL, it sets probe_packets to 0 and request_probe to -1. However, request_probe can change when calling s->iformat->read_packet and thus a probe_packets value of 0 doesn't guarantee a request_probe value of -1. In that case calling probe_codec again is necessary to prevent triggering the assert. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016-10-19FATE: Add test for muxing discontinuous MP4 fragments with large timestampsDerek Buitenhuis
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2016-10-19avformat/movenc: Skip duration check for discontinuous fragmentsMichael Niedermayer
Found-by: Daemon404 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-10-19lavf/mov: support gopro hero moments udta tagJean Caillé
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-10-19avfilter/vf_scale_npp: select cubic and lanczos as alternative where ↵Sven C. Dack
super-sampling is not supported Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
2016-10-19avcodec/nvenc_hevc: Added missing option -temporal_aqSven C. Dack
The option is present in h264_nvenc, but was missing from hevc_nvenc. Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
2016-10-19avcodec/nvenc: add test for Temporal AQ supportSven C. Dack
Adds a check to see if the hardware supports temporal aq. Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
2016-10-19lavc/mediacodec: use more meaningful filenamesMatthieu Bouron
Adds the following changes: * mediacodecdec.{c,h} -> mediacodecdec_common.{c,h} * mediacodecdec_h2645.c -> mediacodecdec.c
2016-10-19lavc: add mpeg4 mediacodec decoderMatthieu Bouron
2016-10-19lavc: add vp8/vp9 mediacodec decodersMatthieu Bouron
2016-10-19lavc/mediacodec_wrapper: do not discard codecs reporting they do not support ↵Matthieu Bouron
any profile Depending on the device, some (VP8/VP9/...) decoders report that they do not support any profiles.
2016-10-19avfilter/firequalizer: add cubic_interpolate function on gainMuhammad Faiz
smoother version of gain_interpolate Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
2016-10-19avformat/matroskadec: fix BitsPerChannel element's default valueJames Almer
The element is currently ignored, so there's no effective functionality change with this. Signed-off-by: James Almer <jamrial@gmail.com>
2016-10-19avformat/matroskadec: clarify some Colour element defaults using enum valuesJames Almer
This way it's more clear what the default values refer to, as Undetermined/Unspecified is 0 for some, 2 for others. Signed-off-by: James Almer <jamrial@gmail.com>
2016-10-19avformat/mov: pass the demuxer's AVFormatContext to avpriv_request_sample()James Almer
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
2016-10-19lavc/videotoolboxenc: skip SEI allocation when side data is not presentAman Gupta
Signed-off-by: Rick Kern <kernrj@gmail.com>
2016-10-19avformat/matroskadec: support parsing Chroma Location elementsJames Almer
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
2016-10-18aacenc: add SIMD optimizations for abs_pow34 and quantizationRostislav Pehlivanov
Performance improvements: quant_bands: with: 681 decicycles in quant_bands, 8388453 runs, 155 skips without: 1190 decicycles in quant_bands, 8388386 runs, 222 skips Around 42% for the function Twoloop coder: abs_pow34: with/without: 7.82s/8.17s Around 4% for the entire encoder Both: with/without: 7.15s/8.17s Around 12% for the entire encoder Fast coder: abs_pow34: with/without: 3.40s/3.77s Around 10% for the entire encoder Both: with/without: 3.02s/3.77s Around 20% faster for the entire encoder Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com> Tested-by: Michael Niedermayer <michael@niedermayer.cc> Reviewed-by: James Almer <jamrial@gmail.com>
2016-10-18lavf/mp3enc: write encoder delay/padding upon closingJon Toohill
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016-10-18lavc/libmp3lame: send encoder delay/padding in packet side dataJon Toohill
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016-10-18avfilter/firequalizer: add dumpfile and dumpscale optionMuhammad Faiz
Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
2016-10-18swresample/resample: fix return value of build_filterMuhammad Faiz
return AVERROR code on error Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
2016-10-18avcodec/mediacodec: Factor duplicate includeMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-10-18doc/examples/demuxing_decoding: Drop AVFrame->pts useMichael Niedermayer
This code is not correct for git master Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-10-18lavf/avidec: Be more verbose when ignoring very large tag size.Carl Eugen Hoyos
2016-10-18fate: add swr-convertaudio testMuhammad Faiz
test for flt to s16 should pass on correct rounding to nearest Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
2016-10-18avformat/tests/gitignore: add fifo_muxer entryZhao Zhili
Reviewed-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-10-18lavf/avidec: Do not fail for very large idx1 tags.Carl Eugen Hoyos
Fixes demuxing the sample file from github pull request 197, the size of its idx1 tag is 6171936 bytes, followed by a JUNK tag of 9505704 bytes.
2016-10-17westwood_aud: prevent division by zeroAndreas Cadhalpun
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016-10-17astdec: fix division by zeroAndreas Cadhalpun
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016-10-17avfilter/showcqt: add font optionMuhammad Faiz
this is fontconfig pattern Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
2016-10-17avfilter/firequalizer: optimize gain/gain_entry commandMuhammad Faiz
do not rebuild when gain/gain_entry command are equal with old gain/gain_entry Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
2016-10-17doc: Update x264 option a53cc, forgotten in 93e04102.Carl Eugen Hoyos
2016-10-17aiffdec: fix division by zeroAndreas Cadhalpun
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016-10-17lavc/videotoolboxenc: Enable a53cc by default.Carl Eugen Hoyos
2016-10-17matroskadec: fix NULL pointer dereferenceAndreas Cadhalpun
The problem was introduced in commit 1273bc6. Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016-10-17lavc/videotoolboxenc: Error log formatting.Rick Kern
Signed-off-by: Rick Kern <kernrj@gmail.com>
2016-10-17lavc/videotoolboxenc: Update a53cc handlingRick Kern
Handles insertion into existing SEI NAL unit, inserts emulation prevention bytes. Signed-off-by: Rick Kern <kernrj@gmail.com>
2016-10-17lavc/videotoolboxenc: flush/free frames on closeRick Kern
Prevents encode callback from running after codec is closed. Fixes a crash when an error is returned. Signed-off-by: Rick Kern <kernrj@gmail.com>
2016-10-17lavc/videotoolboxenc: implement a53ccAman Gupta
Signed-off-by: Rick Kern <kernrj@gmail.com>
2016-10-17mov: move stsd finalization to an appropriate placeHendrik Leppkes
mov_finalize_stsd_codec parses stream information from the ALAC extradata, so run it after the extradata processing is completed in mov_read_stsd. Fixes playback of 96kHz ALAC streams muxed by qaac or the reference alac encoder. Fixes trac ticket #5826