summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* lavfi/curves: add various const where it makes senseClément Bœsch2016-07-24
|
* lavfi/curves: remove pointless logging since the addition of plot optionClément Bœsch2016-07-24
|
* lavfi/curves: add plot optionClément Bœsch2016-07-24
|
* lavfi/curves: do not automatically insert points at x=0 and x=1Clément Bœsch2016-07-24
| | | | | | | | There is actually a need for the origin and end point not to be defined. We can not automatically insert them with the y value of the first and last point as it will influence the curves in a wrong way. Fixes #5397
* tests/fate/filter-audio: fate-filter-chorus: Randomly change parameters to ↵Michael Niedermayer2016-07-24
| | | | | | | | | | some values which pass on arm/mips/x86-32/64 If this still doesnt give the same results on all platforms then this should be disabled Found-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavutil/opt: Small bugfix in example.Kacper Michajłow2016-07-24
| | | | | | Fix const corectness and zero init the struct. This example code would actually crash when initializing string. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/tee: Rescale ts using av_packet_rescale_tsJan Sebechlebsky2016-07-23
| | | | | | | | | This ensures that AV_NOPTS_VALUE value is handled correctly. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
* libavcodec/dnxhdenc: add support for dnxhr encodingMark Reid2016-07-23
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavcodec/dnxhdenc: add support for variable mircoblock countsMark Reid2016-07-23
| | | | | | dnxhr has variable resolution, 8160 is the mb num for 1920x1080 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* tests/fate/dnxhd: add dnxhr prefix testsMark Reid2016-07-23
| | | | | | | | | | | | | | The data offset value in the prefix increases as the heights increases. This test adds a tests for some common dnxhr heights. can somebody add the following test footage to fate/dnxhd? https://dl.dropboxusercontent.com/u/170952/fate/dnxhd/prefix-256x1536.dnxhr https://dl.dropboxusercontent.com/u/170952/fate/dnxhd/prefix-256x1716.dnxhr https://dl.dropboxusercontent.com/u/170952/fate/dnxhd/prefix-256x2048.dnxhr https://dl.dropboxusercontent.com/u/170952/fate/dnxhd/prefix-256x2160.dnxhr https://dl.dropboxusercontent.com/u/170952/fate/dnxhd/prefix-256x3212.dnxhr Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavformat/movenc: add dnxhr compatibility for apple playersMark Reid2016-07-23
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* MAINTAINERS: add myself to the project serverNikolay Aleksandrov2016-07-23
| | | | | | | | I've been helping out with the project servers' maintenance and migration to the new machine hosted in Telepoint's data center in Sofia, BG. Signed-off-by: Nikolay Aleksandrov <razor@blackwall.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavformat/matroskadec: fix unsigned overflow to improve seekingChris Cunningham2016-07-23
| | | | | | | | | When seeking a file where codec delay is greater than 0, the timecode can become negative after offsetting by the codec delay. Failing to cast to a signed int64 will cause the check against skip_to_timecode to evaluate true for these negative values. This breaks the "skip_to" seek mechanism. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* ffmpeg.c: copy video profile when using stream_copyMark Reid2016-07-23
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* lavc/intrax8: Use correct printf specifier for size_t on Windows.Carl Eugen Hoyos2016-07-22
|
* avcodec/mpeg4_unpack_bframes_bsf: Check av_packet_from_data() return valueJan Sebechlebsky2016-07-22
| | | | | Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/mpeg4_unpack_bframes_bsf: Copy packet propsJan Sebechlebsky2016-07-22
| | | | | | | | | | | | | | | | mpeg4_unpack_bframes_bsf bitstream filters constructs resulting packet using av_packet_from_data() function. This function however modifies only buffer (data) and leaves other fields untouched, so the content of other fields of the output packet is undefined. It is working with old BSF API, since old API filters just data and the packet fields are copied in av_apply_bitstream_filters from input packet. This change fixes the behaviour for the new BSF API. Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libx264: Increase x264 opts character limit to 4096Sasi Inguva2016-07-22
| | | | | Signed-off-by: Sasi Inguva <isasi@google.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* doc/muxers: improve hlsenc descriptionSteven Liu2016-07-22
| | | | | Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* doc/muxers: add hls_flags option descriptionSteven Liu2016-07-22
| | | | | | Signed-off-by: Steven Liu <liuqi@gosun.com> Reviewed-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for extrastereo filterPetru Rares Sincraian2016-07-22
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/teeproto: Fix memset sizeofMichael Niedermayer2016-07-22
| | | | | Found-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libvpxenc,cosmetics: rename common fns vp8 -> vpxJames Zern2016-07-21
| | | | | | | + the context struct Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Zern <jzern@google.com>
* libvpxdec,cosmetics: rename common fns vp8 -> vpxJames Zern2016-07-21
| | | | | | | + the context struct Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Zern <jzern@google.com>
* avcodec/huffman: beautify: add space between #include and filename.Yong Lei2016-07-22
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* doc/protocols: Fix seperated typoMichael Niedermayer2016-07-22
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/ffv1dec: Test extradata_size instead of extradata for better robustnessMichael Niedermayer2016-07-21
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/mov: Do not allocate empty extradataMichael Niedermayer2016-07-21
| | | | | | Fixes Ticket5723 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/vf_psnr: Fix rounding error in average_maxMichael Niedermayer2016-07-21
| | | | | | | The intermediate was rounded to an integer Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavformat/rawenc: add dnxhr raw format extensionMark Reid2016-07-21
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libopenmpt: Add "date" to metadata.Jörn Heusipp2016-07-21
| | | | | Signed-off-by: Jörn Heusipp <osmanx@problemloesungsmaschine.de> Signed-off-by: Josh de Kock <josh@itanimul.li>
* libopenmpt: set stream duration and fix time baseJörn Heusipp2016-07-21
| | | | | | | | | Fix the confusion around the used time base. Check size returned from avio_size() Signed-off-by: Jörn Heusipp <osmanx@problemloesungsmaschine.de> Signed-off-by: Josh de Kock <josh@itanimul.li>
* docs/demuxers: add libopenmpt sectionJosh de Kock2016-07-21
| | | | Signed-off-by: Josh de Kock <josh@itanimul.li>
* libopenmpt: add subsong supportJosh de Kock2016-07-21
| | | | Signed-off-by: Josh de Kock <josh@itanimul.li>
* avformat/oggenc: add vp8 muxing supportJames Almer2016-07-20
| | | | | | Addresses ticket #5687 Signed-off-by: James Almer <jamrial@gmail.com>
* avformat: add an Ogg Video muxerJames Almer2016-07-20
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* Changelog: move a misplaced entry to the correct sectionJames Almer2016-07-20
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avformat/mux: Fix some codecpar non usesMichael Niedermayer2016-07-21
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for earwax filterPetru Rares Sincraian2016-07-20
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* fate: add test for dcshift filterPetru Rares Sincraian2016-07-20
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* x86/diracdsp: make ff_put_signed_rect_clamped_10_sse4 work on x86_32James Almer2016-07-20
| | | | | Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* libavcodec/dnxhd: add dnxhr profilesMark Reid2016-07-20
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* ffmpeg_opt: Delete duplicate “hwaccel_output_format” option.Jun Zhao2016-07-20
| | | | | | | Delete duplicate “hwaccel_output_format” option. Signed-off-by: Jun Zhao <mypopydev@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavcodec/libvpx: Add VPx alpha decode supportVignesh Venkatasubramanian2016-07-19
| | | | | | | VPx (VP8/VP9) alpha encoding has been part of FFmpeg. Now, add the ability to decode such files with alpha channel. Signed-off-by: Vignesh Venkatasubramanian <vigneshv@google.com>
* fate: add test for chorus filterPetru Rares Sincraian2016-07-20
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/avlanguage: make av_convert_lang_to() internalJames Almer2016-07-19
| | | | | | | The header was never installed and the function is only used in libavformat Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avformat/oggenc: fix page duration calculation when granule differs from ↵James Almer2016-07-19
| | | | | | | timestamp Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
* avformat/oggparsevp8: fix pts calculation on pages ending with an invisible ↵James Almer2016-07-19
| | | | | | frame Signed-off-by: James Almer <jamrial@gmail.com>
* configure: add support for new CPUsJames Almer2016-07-19
| | | | | | | | Add new -march values for Intel and AMD CPUs introduced with GCC 5 and 6, and improve SunCC flags accordingly. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/h264_slice: Move h264_init_ps() call into h264_field_start()Michael Niedermayer2016-07-20
| | | | | | This was missing from f512e4a39037ef798ec78170f734c7733abe3231 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>