[FFmpeg-cvslog] examples/avio_reading: return AVERROR_EOF at EOF.

2017-10-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Fri Oct 27 20:46:27 2017 +0200| [bfb1a946255f9b12dccc6b12f5a865852f487a87] | committer: Jan Ekström examples/avio_reading: return AVERROR_EOF at EOF. Signed-off-by: Nicolas George > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavf/avio: temporarily accept 0 as EOF.

2017-10-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Fri Oct 27 20:46:28 2017 +0200| [a606f27f4c610708fa96e35eed7b7537d3d8f712] | committer: Jan Ekström lavf/avio: temporarily accept 0 as EOF. Print a warning to let applicatios fix their use. After a deprecation period, check with a low-level assert

[FFmpeg-cvslog] lavf/aviobuf: return EINVAL when reading from a write-only context.

2017-10-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Fri Oct 27 20:46:29 2017 +0200| [158a79c31d55d0b82ff3f514c586f5be033ad0c2] | committer: Jan Ekström lavf/aviobuf: return EINVAL when reading from a write-only context. Signed-off-by: Nicolas George > http://git.videolan.org/gitweb.cgi/ffmpeg.git

[FFmpeg-cvslog] lavfi/testsrc2: fix hang with very small sizes.

2017-10-31 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Oct 30 10:04:55 2017 +0100| [a8305b0ea3ccfe00a50cd3312bfcc455c78aacb5] | committer: Nicolas George lavfi/testsrc2: fix hang with very small sizes. Move a subtraction to the other side of the equal to avoid overflows. > http://git.videolan.

[FFmpeg-cvslog] lavfi: check links properties after configuring them.

2017-11-02 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Wed Nov 1 21:15:00 2017 +0100| [345e7072ab867ee1e56cbf857dbc93d37f168294] | committer: Nicolas George lavfi: check links properties after configuring them. For now, check the image size. Inspired by a patch from Paul B Mahol. Invalid sizes would be

[FFmpeg-cvslog] lavfi/framepool: use av_image_check_size2().

2017-11-02 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Wed Nov 1 21:38:39 2017 +0100| [d5995c531d6e9e20e126ae64665783abe959d82b] | committer: Nicolas George lavfi/framepool: use av_image_check_size2(). Allow filters to handle larger frames. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavc/pngdec: fix av_bprint_finalize() usage.

2017-11-09 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Nov 9 09:21:05 2017 +0100| [dfa859b85a524a116ef1b0275e8d104675a56055] | committer: Nicolas George lavc/pngdec: fix av_bprint_finalize() usage. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dfa859b85a524a116ef1b0275e8d104675a56

[FFmpeg-cvslog] lavf/concatdec: properly init streams timestamp parameters.

2017-12-31 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sat Dec 30 12:17:08 2017 +0100| [e45f7bca735ff7ba965ec1e441199dc7aeb0c8fc] | committer: Nicolas George lavf/concatdec: properly init streams timestamp parameters. pts_wrap_bits defaults to 33 (like MPEG), that causes valid timestamps to be unwrapped

[FFmpeg-cvslog] lavfi/framesync: document frame ownership for dualinput.

2018-01-03 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Jan 2 14:50:59 2018 +0100| [9ace76697ac1e43aa4da4c7333ec4a296907c336] | committer: Nicolas George lavfi/framesync: document frame ownership for dualinput. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi/framesync: remove an invalid free.

2018-01-03 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Jan 2 14:51:18 2018 +0100| [29b5f3115d9f217758bebd1d00e541aa3e739d2a] | committer: Nicolas George lavfi/framesync: remove an invalid free. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=29b5f3115d9f217758bebd1d00e541aa3e739

[FFmpeg-cvslog] tools/uncoded_frame: use buffersink accessors.

2018-01-06 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sat Jan 6 14:14:04 2018 +0100| [34dfe36971aafd2b3bef04f1e78b2813e2f0b73f] | committer: Nicolas George tools/uncoded_frame: use buffersink accessors. No longer access buffersink's link structure directly. > http://git.videolan.org/gi

[FFmpeg-cvslog] tools/uncoded_frame: remove use of AVStream.codec.

2018-01-06 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sat Jan 6 14:34:00 2018 +0100| [01735b4852c65081eaead3d9d405ef30fbb5a6ee] | committer: Nicolas George tools/uncoded_frame: remove use of AVStream.codec. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavf/concatdec: remove unrelated change during codecpar merge.

2016-04-26 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Apr 24 14:01:18 2016 +0200| [b8fa374fb6eba995a9d5dd50f714f9faff43b81b] | committer: Nicolas George lavf/concatdec: remove unrelated change during codecpar merge. Clearing the extradata is not related to the codecpar change, and it breaks if

[FFmpeg-cvslog] lavf/concatdec: clear extradata when inserting h264_mp4toannexb bsf.

2016-04-26 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Apr 25 13:46:10 2016 +0200| [0cb19c30c6a14418eaa6858db303602815fe3ab1] | committer: Nicolas George lavf/concatdec: clear extradata when inserting h264_mp4toannexb bsf. Fix remuxing H.264-in-MP4 to Matroska, possibly others. > h

[FFmpeg-cvslog] lavf/udp: fix dead code.

2016-06-03 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Fri Jun 3 11:05:20 2016 +0200| [8b05a7ffe4d78c68cd0091aefa8b380c7c4afe7a] | committer: Nicolas George lavf/udp: fix dead code. Since d607861, service can not be NULL, only "0". An UDP address with neither local port nor address leaves bo

Re: [FFmpeg-cvslog] Merge commit '11a9320de54759340531177c9f2b1e31e6112cc2'

2017-05-05 Thread Nicolas George
to learn how to use the new system correctly. Regards, -- Nicolas George ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

[FFmpeg-cvslog] lavfi: print the error message when threading init fails.

2017-06-19 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jun 19 10:28:41 2017 +0200| [d790f18ac0c3ef82459ebb526039d42b1ea73bc2] | committer: Nicolas George lavfi: print the error message when threading init fails. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi/testsrc2: fix completely transparent alpha.

2017-07-25 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Jul 20 17:35:44 2017 +0200| [bbc7cfbf1e0b02323d4af512612342d2627080d8] | committer: Nicolas George lavfi/testsrc2: fix completely transparent alpha. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] Revert "Revert "lavfi/buffersrc: push the frame deeper if requested.""

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Jul 16 17:03:50 2017 +0200| [1daacba91f7c8a29858fb2de58f8695f33308fa7] | committer: Nicolas George Revert "Revert "lavfi/buffersrc: push the frame deeper if requested."" This reverts commit 04aa09c4bcf2d5a634a35da3

[FFmpeg-cvslog] lavfi: copy framesync into framesync2.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Jul 16 17:17:00 2017 +0200| [cffea1b4837bf09ffadd5dd2eca48e51cb9e69ff] | committer: Nicolas George lavfi: copy framesync into framesync2. framesync2 will be the base for the version using activate. Most of the logic will be the same, but the code

[FFmpeg-cvslog] lavfi: make FFERROR_NOT_READY available to filters.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 14:33:11 2017 +0200| [b77f041dff5f669d1d297697a34023de1c33a33f] | committer: Nicolas George lavfi: make FFERROR_NOT_READY available to filters. I am not entirely sure that this return code is useful, but having and using it makes no harm

[FFmpeg-cvslog] lavfi: add outlink helper functions.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 14:34:41 2017 +0200| [ed1c884b9e0d7f63199d5d47350b1fa65374d126] | committer: Nicolas George lavfi: add outlink helper functions. These wrappers cost nothing, they make the namespace more consistent and they will be useful if/when locking

[FFmpeg-cvslog] lavfi/framesync2: rename all conflicting symbols.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Jul 16 17:26:48 2017 +0200| [873306f265de255f9ef30a77b3e9b8c33d16dab8] | committer: Nicolas George lavfi/framesync2: rename all conflicting symbols. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi/framesync2: implement "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 14:36:42 2017 +0200| [4e0e9ce2dc67a94c98d40a46e91fe5aa53ad0376] | committer: Nicolas George lavfi/framesync2: implement "activate" design. With this helper API, filters that used the first framesync helper API can easily be chan

[FFmpeg-cvslog] lavfi/vf_stack: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 14:37:00 2017 +0200| [0dd8320e16bcdbe6b928e99489cf47abd16d3255] | committer: Nicolas George lavfi/vf_stack: move to "activate" design. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0dd8320e16bcdbe6b928e99489c

[FFmpeg-cvslog] lavfi/vf_threshold: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 16:29:35 2017 +0200| [d07e25de763ef7c991bac99e9c05eb290869ed79] | committer: Nicolas George lavfi/vf_threshold: move to "activate" design. Also fix missing dependency. > http://git.videolan.org/gitweb.cgi/ffmpeg.gi

[FFmpeg-cvslog] lavfi/vf_premultiply: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 16:33:20 2017 +0200| [b894415a703ed045b5b7c4c570960239c3e4d0a8] | committer: Nicolas George lavfi/vf_premultiply: move to "activate" design. > http://git.videolan.org/gitweb.cgi/ffmpeg.gi

[FFmpeg-cvslog] lavfi/vf_midequalizer: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 16:36:20 2017 +0200| [620608467f262a6941660e0dd27bdb73bb7fe847] | committer: Nicolas George lavfi/vf_midequalizer: move to "activate" design. > http://git.videolan.org/gitweb.cgi/ffmpeg.gi

[FFmpeg-cvslog] lavfi/vf_lut2: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 16:45:17 2017 +0200| [dbc4af862e74a7ee3a0e6f98a4e58d0615533301] | committer: Nicolas George lavfi/vf_lut2: move to "activate" design. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dbc4af862e74a7ee3a0e6f98a4e

[FFmpeg-cvslog] lavfi/vf_remap: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 16:31:44 2017 +0200| [dbf7a670942d078c12aa7944b1fd469e188e6da2] | committer: Nicolas George lavfi/vf_remap: move to "activate" design. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dbf7a670942d078c12aa7944b1f

[FFmpeg-cvslog] lavfi/vf_mergeplanes: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 16:40:28 2017 +0200| [0bc331bd57dc164acbbdd548ab4001fb4b95c97a] | committer: Nicolas George lavfi/vf_mergeplanes: move to "activate" design. > http://git.videolan.org/gitweb.cgi/ffmpeg.gi

[FFmpeg-cvslog] lavfi/vf_maskedmerge: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 16:38:18 2017 +0200| [a5e3b0c1934f76f21957d001853cf976a94da47b] | committer: Nicolas George lavfi/vf_maskedmerge: move to "activate" design. > http://git.videolan.org/gitweb.cgi/ffmpeg.gi

[FFmpeg-cvslog] lavfi/vf_maskedclamp: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 16:42:14 2017 +0200| [27d8af03ae0d0cd15c01ed3de3a37add63966fed] | committer: Nicolas George lavfi/vf_maskedclamp: move to "activate" design. > http://git.videolan.org/gitweb.cgi/ffmpeg.gi

[FFmpeg-cvslog] lavfi/vf_hysteresis: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 16:54:23 2017 +0200| [5dbb111900b6208813fe299912d4ba8297c4525e] | committer: Nicolas George lavfi/vf_hysteresis: move to "activate" design. > http://git.videolan.org/gitweb.cgi/ffmpeg.gi

[FFmpeg-cvslog] lavfi/vf_displace: move to "activate" design.

2017-07-30 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 17:00:23 2017 +0200| [8b2cd8e0e41284469cf1fb5051df329fb6d8d5c3] | committer: Nicolas George lavfi/vf_displace: move to "activate" design. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8b2cd8e0e41284469cf1fb5051d

[FFmpeg-cvslog] lavfi/framesync2: add dualinput helper functions.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 20:45:52 2017 +0200| [0ae8df4109da6bae77bef24fc889eceadd98c6b7] | committer: Nicolas George lavfi/framesync2: add dualinput helper functions. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi/f_streamselect: convert to framesync2.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 31 13:47:34 2017 +0200| [6bde475cf2f930ff929517f89f493a2ac4a2c3df] | committer: Nicolas George lavfi/f_streamselect: convert to framesync2. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6bde475cf2f930ff929517f89f493a2ac4a2c

[FFmpeg-cvslog] lavfi: add a preinit callback to filters.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 31 00:29:01 2017 +0200| [f8d7b5febba075035a94de5d7d1dc9083ad2f3ed] | committer: Nicolas George lavfi: add a preinit callback to filters. It is necessary for filters with child objects, to set the class and default options values. > h

[FFmpeg-cvslog] lavfi/vf_overlay: move to framesync2.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 17 20:46:31 2017 +0200| [19804024d5b26e9568ce2f21f15c6664717006cd] | committer: Nicolas George lavfi/vf_overlay: move to framesync2. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=19804024d5b26e9568ce2f21f15c666471700

[FFmpeg-cvslog] lavfi: search options on child objects.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Jul 30 16:57:12 2017 +0200| [dfa3aaa22a2bac6c98ed0eb4a42cd93347d9a954] | committer: Nicolas George lavfi: search options on child objects. The child objects must be allocated and inited in the preinit() callback. > http://git.videolan.

[FFmpeg-cvslog] lavfi/framesync2: add common options.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Jul 30 16:58:49 2017 +0200| [05a23b2565849c9ad96526c9e2ccdb9272add565] | committer: Nicolas George lavfi/framesync2: add common options. Also add functions and macros to help filters chaining these options to their own. > http://git.videolan.

[FFmpeg-cvslog] lavfi/vf_blend: convert to framesync2.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 31 11:02:14 2017 +0200| [c1d8d33a51e3ef36e6ce2e8428c5c33cfae5b02d] | committer: Nicolas George lavfi/vf_blend: convert to framesync2. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c1d8d33a51e3ef36e6ce2e8428c5c33cfae5b

[FFmpeg-cvslog] lavfi/vf_overlay: use framesync2 options.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Jul 30 17:00:00 2017 +0200| [878fd0545a930391baf1ded32550af1d1d2e8c88] | committer: Nicolas George lavfi/vf_overlay: use framesync2 options. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=878fd0545a930391baf1ded32550af1d1d2e8

[FFmpeg-cvslog] lavfi/vf_libvmaf: convert to framesync2.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 31 11:40:25 2017 +0200| [a8ab52fae7286d4e7eec9256a08b6ad0b1e39d6c] | committer: Nicolas George lavfi/vf_libvmaf: convert to framesync2. After this commit, the code compiles, but on my setup it segfaults before and after. It also prints the

[FFmpeg-cvslog] lavfi/vf_lut3d: convert to framesync2.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 31 12:03:03 2017 +0200| [eacb3ec961035b39e4bf69b589df9b110f591710] | committer: Nicolas George lavfi/vf_lut3d: convert to framesync2. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=eacb3ec961035b39e4bf69b589df9b110f591

[FFmpeg-cvslog] lavfi/vf_psnr: convert to framesync2.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 31 12:44:13 2017 +0200| [3bd11df459866d7303c1ad6779473528c2cfb76d] | committer: Nicolas George lavfi/vf_psnr: convert to framesync2. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3bd11df459866d7303c1ad6779473528c2cfb

[FFmpeg-cvslog] lavfi/vf_paletteuse: convert to framesync2.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 31 12:27:58 2017 +0200| [23000c3de5940271f6daa58d629871c9355cd37c] | committer: Nicolas George lavfi/vf_paletteuse: convert to framesync2. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=23000c3de5940271f6daa58d629871c9355cd

[FFmpeg-cvslog] vf_ssim: convert to framesync2.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 31 13:37:06 2017 +0200| [ef2176473d3d5ac5bf36aa9bcd7bba760121ad84] | committer: Nicolas George vf_ssim: convert to framesync2. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ef2176473d3d5ac5bf36aa9bcd7bba760121a

[FFmpeg-cvslog] lavfi: remove dualinput.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Jul 31 13:38:22 2017 +0200| [607900c905c4112bb43f2710bd76d98491d584a9] | committer: Nicolas George lavfi: remove dualinput. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=607900c905c4112bb43f2710bd76d98491d584a9 --- libavfil

[FFmpeg-cvslog] doc/filters: document framesync options.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Aug 10 13:32:19 2017 +0200| [844bc0d89e1d59f1593448bfc0fc52fec34e0946] | committer: Nicolas George doc/filters: document framesync options. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=844bc0d89e1d59f1593448bfc0fc52fec34e0

[FFmpeg-cvslog] lavfi: bump minor version after change in options.

2017-08-29 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Aug 29 15:46:36 2017 +0200| [7302d5e325977d4a8ff61422fdabdae0dc504ec0] | committer: Nicolas George lavfi: bump minor version after change in options. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] ffmpeg: use reordered duration for stream PTS.

2017-09-08 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Apr 3 14:40:44 2017 +0200| [36c111c40f4bd7da114df0e9c484833aa2cdf2dc] | committer: Nicolas George ffmpeg: use reordered duration for stream PTS. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=36c111c40f4bd7da114df0e9c484833aa2cdf

[FFmpeg-cvslog] lavfi/buffersrc: add av_buffersrc_close().

2017-09-08 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Apr 3 15:01:45 2017 +0200| [5ba2aef6ec47689300debd3ddd1f39cad010a971] | committer: Nicolas George lavfi/buffersrc: add av_buffersrc_close(). > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5ba2aef6ec47689300debd3ddd1f39cad010a

[FFmpeg-cvslog] lavfi: guess a timestamp for compat status change.

2017-09-08 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Sep 7 10:45:54 2017 +0200| [f5a9c63401c840024defeb50a3dab9f86551b67e] | committer: Nicolas George lavfi: guess a timestamp for compat status change. Use the earliest input with the same status. If that fails, print a warning and use the earliest

[FFmpeg-cvslog] ffmpeg: send EOF pts to filters.

2017-09-08 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Apr 6 10:40:12 2017 +0200| [8043d8eb3bf5e93709212850feb3441b9ec41b25] | committer: Nicolas George ffmpeg: send EOF pts to filters. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8043d8eb3bf5e93709212850feb3441b9ec41

[FFmpeg-cvslog] ffmpeg: rename a variable.

2017-09-08 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Apr 3 13:49:59 2017 +0200| [dfed8e2cbb48d750a16b6c2b4f764250f69ab4df] | committer: Nicolas George ffmpeg: rename a variable. Makes the reason of the "FIXME" comment more obvious. Avoid name conflicts for the next commi

[FFmpeg-cvslog] lavfi: add helper functions and macros for activate.

2017-09-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Aug 31 17:05:04 2017 +0200| [76613618d978f9dbee0f391a85a732f77fac75cd] | committer: Nicolas George lavfi: add helper functions and macros for activate. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi/af_agate: use helper macros.

2017-09-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Aug 31 16:53:35 2017 +0200| [567d318b1cc11c7733dfe2f43a4bfe16c001865c] | committer: Nicolas George lavfi/af_agate: use helper macros. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=567d318b1cc11c7733dfe2f43a4bfe16c0018

[FFmpeg-cvslog] lavfi: rename framesync2 to framesync.

2017-09-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Aug 31 19:47:37 2017 +0200| [5f5dcf44e3c40da8c2334b9d2e62f30739d644c0] | committer: Nicolas George lavfi: rename framesync2 to framesync. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5f5dcf44e3c40da8c2334b9d2e62f30739d64

[FFmpeg-cvslog] doc: update filter_design.txt.

2017-09-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Aug 31 17:05:31 2017 +0200| [064c9d45ff10fec5d735c4212881e93a0fd4] | committer: Nicolas George doc: update filter_design.txt. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=064c9d45ff10fec5d735c4212881e93a0fd4 ---

[FFmpeg-cvslog] lavfi: remove framesync.

2017-09-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Aug 31 17:42:57 2017 +0200| [1b8e061cc574d7d5ce7def14c5648eaef07d9187] | committer: Nicolas George lavfi: remove framesync. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1b8e061cc574d7d5ce7def14c5648eaef07d9187 --- libavfil

[FFmpeg-cvslog] lavfi/af_sidechaincompress: use helper macros.

2017-09-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Aug 31 17:40:26 2017 +0200| [61b0b03f3fdc7553bd17325ad8932223a83ea816] | committer: Nicolas George lavfi/af_sidechaincompress: use helper macros. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=61b0b03f3fdc7553bd17325ad8932223a83ea

[FFmpeg-cvslog] lavfi/framesync: reword repeatlast option help.

2017-09-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Sep 12 11:14:25 2017 +0200| [9bad5e53191092ee17c0a95c597cccd527594d10] | committer: Nicolas George lavfi/framesync: reword repeatlast option help. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi/framesync: remove dead code.

2017-09-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Sep 12 11:23:39 2017 +0200| [549ef6ef9a8168281640b9cd0240abe071cbbda3] | committer: Nicolas George lavfi/framesync: remove dead code. Fix CID 1416960. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] doc/muxers: fix default value for image2 option start_number.

2017-04-04 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Apr 3 12:13:30 2017 +0200| [0c20f9fcab41fe7468a898919d2e3cf7bb6b432a] | committer: Nicolas George doc/muxers: fix default value for image2 option start_number. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] ffmpeg: do not report EOF on filters as an error.

2017-04-23 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Apr 23 14:22:22 2017 +0200| [0dfb4d4b438b7203b3aaef9fc6ffebc57df140d8] | committer: Nicolas George ffmpeg: do not report EOF on filters as an error. Also print the error message in case of real error. > http://git.videolan.org/gitweb.

[FFmpeg-cvslog] lavd/xcbgrab: do not try to create refcounted packets.

2016-11-03 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Oct 23 13:57:41 2016 +0200| [0bd1be65e88d6a4f367e698d7a2b105424eb1905] | committer: Nicolas George lavd/xcbgrab: do not try to create refcounted packets. The framework will allocate a buffer and copy the data to it, that takes time. But it avoids

[FFmpeg-cvslog] lavfi: split frame_count between input and output.

2016-11-13 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Aug 30 15:28:41 2016 +0200| [183ce55b0de0a597b838d08bbac67f54c27ed42f] | committer: Nicolas George lavfi: split frame_count between input and output. AVFilterLink.frame_count is supposed to count the number of frames that were passed on the link

[FFmpeg-cvslog] fate/colorkey: disable audio stream.

2016-11-13 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Aug 30 20:12:20 2016 +0200| [22aa649c13b452f11353958a51f073f5fbc3bcaa] | committer: Nicolas George fate/colorkey: disable audio stream. The test is not supposed to cover audio. Also, using -vframes along with an audio stream depends on the exact

[FFmpeg-cvslog] lavfi: make filter_frame non-recursive.

2016-12-18 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Jan 3 15:44:42 2016 +0100| [02aa0701ae0dc2def8db640c9e3c06dc1b5de70c] | committer: Nicolas George lavfi: make filter_frame non-recursive. A lot of changes happen at the same time: - Add a framequeue fifo to AVFilterLink. - split

[FFmpeg-cvslog] lavfi: add FFFrameQueue API.

2016-12-18 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Dec 3 20:05:14 2015 +0100| [62b11db0a08cbb8c338e413a0d1707a8c81ae24e] | committer: Nicolas George lavfi: add FFFrameQueue API. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=62b11db0a08cbb8c338e413a0d1707a8c81ae24e --- libavfil

[FFmpeg-cvslog] lavfi/framequeue: avoid empty structs.

2016-12-20 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Dec 19 08:55:30 2016 +0100| [bec8ea20c88e89dbfbe89c590a74c9818dfcfcce] | committer: Nicolas George lavfi/framequeue: avoid empty structs. Fix compilation on MSVC. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi: take_samples: free frames after taking all samples.

2016-12-22 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Dec 22 10:26:03 2016 +0100| [ff8b17c998dca3f0026466638430ed183426bdde] | committer: Nicolas George lavfi: take_samples: free frames after taking all samples. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] avfilter/af_amerge: detect EOF immediately

2016-12-22 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Dec 22 12:04:12 2016 +0100| [8156b5ac94368e5d4ddc66675ededf9b5dd507ab] | committer: Marton Balint avfilter/af_amerge: detect EOF immediately Fix an infinite loop in forward_status_change(). Signed-off-by: Nicolas George Signed-off-by: Marton

[FFmpeg-cvslog] lavfi: avfilter_graph_request_oldest: request a frame again before returning.

2016-12-23 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Fri Dec 23 11:18:09 2016 +0100| [373f21a91126d052cd310d675f43f548a407649e] | committer: Nicolas George lavfi: avfilter_graph_request_oldest: request a frame again before returning. With min_samples, if a frame arrives but is too small, it clears

[FFmpeg-cvslog] lavf/framesync: detect EOF immediately.

2016-12-24 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sat Dec 24 10:33:33 2016 +0100| [3b64e3ea45c580c5e158c086f2eb7c65635fc33b] | committer: Nicolas George lavf/framesync: detect EOF immediately. Fix an infinite loop in forward_status_change(). > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=com

[FFmpeg-cvslog] lavfi/buffersrc: push the frame deeper if requested.

2016-12-24 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Fri Dec 23 21:39:46 2016 +0100| [0ff5567a30be6d7c804e95997ae282d6bacd76c3] | committer: Nicolas George lavfi/buffersrc: push the frame deeper if requested. Reduce peak memory consumption with ffmpeg in certain cases. > http://git.videolan.

[FFmpeg-cvslog] lavfi: add AVFilter.activate.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Dec 19 08:38:15 2016 +0100| [3ff01feda30a131e877c01619761c2b62e45c9e8] | committer: Nicolas George lavfi: add AVFilter.activate. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3ff01feda30a131e877c01619761c2b62e45c

[FFmpeg-cvslog] lavfi: merge two variables after a recent commit.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Dec 20 15:49:17 2016 +0100| [846f1421349e923b100ce290ba25b5b5b897b437] | committer: Nicolas George lavfi: merge two variables after a recent commit. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi: export ff_filter_set_ready() to the library.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Dec 20 15:57:19 2016 +0100| [918891e1468f34b9f52423e1779f909ddd9dc34d] | committer: Nicolas George lavfi: export ff_filter_set_ready() to the library. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi: cosmetic: remove forward declaration.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Fri Dec 23 15:40:27 2016 +0100| [7910127a8ee12f0c4761646cecc4f0271a50b6a9] | committer: Nicolas George lavfi: cosmetic: remove forward declaration. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7910127a8ee12f0c4761646cecc4f0271a50b

[FFmpeg-cvslog] lavfi: make two functions static.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sat Dec 24 16:56:50 2016 +0100| [c619a4e5259b6304475d889d0eae8ff661d518a7] | committer: Nicolas George lavfi: make two functions static. ff_request_frame_to_filter() and ff_filter_frame_to_filter() are only used in avfilter.c. > h

[FFmpeg-cvslog] lavd/lavfi: use buffersink accessors.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Dec 18 12:35:25 2016 +0100| [063b1a42c65cd99e400e1a8468228e1ed4af4b09] | committer: Nicolas George lavd/lavfi: use buffersink accessors. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=063b1a42c65cd99e400e1a8468228e1ed4af4

[FFmpeg-cvslog] lavfi: add ff_inlink_request_frame().

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sat Dec 24 13:16:59 2016 +0100| [9eb4c79afd437a2913088cb1593892625a3125fc] | committer: Nicolas George lavfi: add ff_inlink_request_frame(). > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9eb4c79afd437a2913088cb1593892625a312

[FFmpeg-cvslog] lavfi: add ff_inlink_acknowledge_status().

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Dec 20 15:56:48 2016 +0100| [4c24f3ac166a0138cd33de71674ab8b383f41e30] | committer: Nicolas George lavfi: add ff_inlink_acknowledge_status(). Also introduce libavfilter/filters.h for all functions needed to implement filters. > h

[FFmpeg-cvslog] lavfi: add helpers to consume frames from link FIFOs.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Dec 20 14:58:37 2016 +0100| [d360ddf03b8461dbc78c90b40cab3cc14d449f07] | committer: Nicolas George lavfi: add helpers to consume frames from link FIFOs. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi: document that AVFilterLink is not for applications.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Dec 27 17:18:33 2016 +0100| [485617ea0f7bfe3715389b23edf977ffef293d15] | committer: Nicolas George lavfi: document that AVFilterLink is not for applications. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavf/hlsenc: fix typo in last commit.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Jan 12 14:01:22 2017 +0100| [57789cfb9d899205fc2c5b79733a43dce67c67df] | committer: Nicolas George lavf/hlsenc: fix typo in last commit. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=57789cfb9d899205fc2c5b79733a43dce67c6

[FFmpeg-cvslog] ffmpeg: use buffersink accessors.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Dec 18 12:34:35 2016 +0100| [d9b311d44c5d79d17df0eb9a3a11c47781d206e7] | committer: Nicolas George ffmpeg: use buffersink accessors. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d9b311d44c5d79d17df0eb9a3a11c47781d20

[FFmpeg-cvslog] lavfi: add ff_inlink_process_commands().

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Dec 20 16:53:23 2016 +0100| [0e3d2496e2eec1c911b169682067d53ea9a0388c] | committer: Nicolas George lavfi: add ff_inlink_process_commands(). > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0e3d2496e2eec1c911b169682067d53ea9a03

[FFmpeg-cvslog] lavfi: add ff_inlink_evaluate_timeline_at_frame().

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Dec 20 17:13:04 2016 +0100| [e7e4c8dfbe9d4be289d1181365fa6e5d9fef5349] | committer: Nicolas George lavfi: add ff_inlink_evaluate_timeline_at_frame(). > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi: use the consume helpers in ff_filter_frame_to_filter().

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Tue Dec 20 23:23:29 2016 +0100| [db4a71c0ff4a925d1c2d0b5bde6e2760ec55b2d0] | committer: Nicolas George lavfi: use the consume helpers in ff_filter_frame_to_filter(). > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi

[FFmpeg-cvslog] lavfi/tests/filtfmts: include internal.h.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Dec 18 12:35:50 2016 +0100| [e9ecada1d43d48601b17be85387d759a025c3590] | committer: Nicolas George lavfi/tests/filtfmts: include internal.h. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e9ecada1d43d48601b17be85387d759a025c3

[FFmpeg-cvslog] lavfi: pass min explicitly to samples_ready().

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Dec 22 14:21:24 2016 +0100| [2e5af443c376bd2019a633e5c61b97f116b01ad2] | committer: Nicolas George lavfi: pass min explicitly to samples_ready(). > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2e5af443c376bd2019a633e5c61b97f116b01

[FFmpeg-cvslog] lavfi/buffersink: add accessors for the stream properties.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sun Dec 18 12:31:24 2016 +0100| [dbe9dbed31f0bf04ee0a8b5b667dc9c313684197] | committer: Nicolas George lavfi/buffersink: add accessors for the stream properties. av_buffersink_get_frame_rate() did already exist; its argument becomes const. > h

[FFmpeg-cvslog] lavfi: move ff_update_link_current_pts() into the utility functions.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Fri Dec 23 16:00:57 2016 +0100| [d3cb140433fe1dfcd3c1f1bd5febe95b2b338a06] | committer: Nicolas George lavfi: move ff_update_link_current_pts() into the utility functions. It does not change anything for the existing filters and makes better code

[FFmpeg-cvslog] lavfi/buffersink: move to the new design.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Mon Dec 19 08:38:25 2016 +0100| [912969a33e313c57c906e87a7e2367b78a2160f4] | committer: Nicolas George lavfi/buffersink: move to the new design. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=912969a33e313c57c906e87a7e2367b78a216

[FFmpeg-cvslog] lavfi, ffmpeg: simplify filter names.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Apr 28 14:47:43 2016 +0200| [0b66c456f9caf5973943b5a0b008e920a655c3f9] | committer: Nicolas George lavfi, ffmpeg: simplify filter names. The names are only used for technical output and debugging. Make them similar to C identifiers for easier

[FFmpeg-cvslog] lavfi: disallow ff_request_frame for filters using activate.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Sat Dec 24 13:16:15 2016 +0100| [ae4650f0b9cbb96b868038bafe632614832fe86f] | committer: Nicolas George lavfi: disallow ff_request_frame for filters using activate. Having two different functions allows to have stricter tests and detect errors earlier

[FFmpeg-cvslog] lavfi: reindent after previous commit.

2017-01-12 Thread Nicolas George
ffmpeg | branch: master | Nicolas George | Thu Jan 12 13:36:02 2017 +0100| [aaae459a850ee367f5a0409a5f2ba8200a2b2fe5] | committer: Nicolas George lavfi: reindent after previous commit. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=aaae459a850ee367f5a0409a5f2ba8200a2b2

  1   2   3   >