[FFmpeg-cvslog] avformat/argo_asf: Use memcpy to copy string without its NUL

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sun Sep 26 04:07:30 2021 +0200| [3022f7487474ebb2812ae5e05b4be9b40431c20e] | committer: Andreas Rheinhardt avformat/argo_asf: Use memcpy to copy string without its NUL This avoids a -Wstringop-truncation warning from GCC which takes issue with the

[FFmpeg-cvslog] avformat/dv: Set AVFMTCTX_NOHEADER flag

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Aug 28 12:51:14 2021 +0200| [2b787ef766941a7565ac143f52d2f5954b9db6e9] | committer: Andreas Rheinhardt avformat/dv: Set AVFMTCTX_NOHEADER flag Audio streams are only added when a packet is read. Signed-off-by: Andreas Rheinhardt > http://gi

[FFmpeg-cvslog] avfilter/vf_selectivecolor: reduce number of operations with r/g/b/a pointers

2021-09-26 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Sat Sep 25 21:10:42 2021 +0200| [314ee127f3cf29905fbb38998ab2a65de0856f75] | committer: Paul B Mahol avfilter/vf_selectivecolor: reduce number of operations with r/g/b/a pointers > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=314ee127f3cf299

[FFmpeg-cvslog] avfilter/vf_selectivecolor: refactor some repeating calculations

2021-09-26 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Sat Sep 25 20:48:03 2021 +0200| [69f4fdd10d7a7657efbf90da1546273538b1e97d] | committer: Paul B Mahol avfilter/vf_selectivecolor: refactor some repeating calculations > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=69f4fdd10d7a7657efbf90da1546

[FFmpeg-cvslog] avfilter/vf_colorbalance: fix min/max check that can never be true

2021-09-26 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Sun Sep 26 11:16:04 2021 +0200| [7b5df3b545a3829459b9980d632f3002a28948b6] | committer: Paul B Mahol avfilter/vf_colorbalance: fix min/max check that can never be true While here change doubles to floats. > http://git.videolan.org/gitweb.cgi/ffmpeg.git/

[FFmpeg-cvslog] avfilter/vf_swaprect: Use ff_formats_pixdesc_filter()

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Sep 25 23:38:26 2021 +0200| [aff855148a098c70c0a55c58aeb1205d839ed516] | committer: Andreas Rheinhardt avfilter/vf_swaprect: Use ff_formats_pixdesc_filter() Reviewed-by: Nicolas George Reviewed-by: Paul B Mahol Signed-off-by: Andreas Rheinha

[FFmpeg-cvslog] avfilter/formats: Avoid reallocations for video in ff_all_formats()

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sun Sep 26 00:28:19 2021 +0200| [f348a967a35c0946de0d9f6bedb1f4025b09b334] | committer: Andreas Rheinhardt avfilter/formats: Avoid reallocations for video in ff_all_formats() Up until now, the list of pixfmts is reallocated every time an entry is

[FFmpeg-cvslog] avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats*

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sun Sep 26 00:09:16 2021 +0200| [99feb59cf7ea9d6753502d76110ced96f128dac6] | committer: Andreas Rheinhardt avfilter/formats: Make ff_formats_pixdesc_filter return AVFilterFormats* Up until now, it has returned the AVFilterFormats list via an AVFil

[FFmpeg-cvslog] avcodec/tests/avcodec: Add basic sanity checks for AVCodec properties

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 05:15:02 2021 +0200| [0d97317429520b97d5817d713d6ffe7de78d0068] | committer: Andreas Rheinhardt avcodec/tests/avcodec: Add basic sanity checks for AVCodec properties Reviewed-by: Michael Niedermayer Signed-off-by: Andreas Rheinhardt

[FFmpeg-cvslog] avcodec/tests/utils: Rename to avcodec

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 02:27:17 2021 +0200| [136865413c04760aeeda6079002bc3c1f9ae230a] | committer: Andreas Rheinhardt avcodec/tests/utils: Rename to avcodec The current name comes from a time in which libavcodec/utils.c contained the whole core of libavcodec

[FFmpeg-cvslog] avcodec/tests/avcodec: Test AVCodec and AVCodecDescriptor consistency

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 02:34:50 2021 +0200| [d77798309fa9527cce3e5811e9cdd85214335846] | committer: Andreas Rheinhardt avcodec/tests/avcodec: Test AVCodec and AVCodecDescriptor consistency Reviewed-by: Michael Niedermayer Signed-off-by: Andreas Rheinhardt

[FFmpeg-cvslog] avcodec/tests/avcodec: Check consistency of function pointers

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 03:52:56 2021 +0200| [497c490a4e1689242e7385f04e2bef7408d3a5e2] | committer: Andreas Rheinhardt avcodec/tests/avcodec: Check consistency of function pointers Reviewed-by: Michael Niedermayer Signed-off-by: Andreas Rheinhardt > http:/

[FFmpeg-cvslog] avcodec/j2kenc: Fix AV_OPT_TYPE_CONST offsets

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 04:33:10 2021 +0200| [5aac4b669a4d0e69ad556eedb6305005198a309d] | committer: Andreas Rheinhardt avcodec/j2kenc: Fix AV_OPT_TYPE_CONST offsets They are supposed to be zero. Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/g

[FFmpeg-cvslog] avcodec/tests/avcodec: Sanity check AVCodec.priv_data_size

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 04:36:14 2021 +0200| [2b0f29507f40db38e88ec157dcb3acaf43abce65] | committer: Andreas Rheinhardt avcodec/tests/avcodec: Sanity check AVCodec.priv_data_size Reviewed-by: Michael Niedermayer Signed-off-by: Andreas Rheinhardt > http://gi

[FFmpeg-cvslog] avcodec/avcodec: Remove redundant assert

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 06:28:04 2021 +0200| [29e23ac71dd146df054e4e2fcef1dcef6a56454f] | committer: Andreas Rheinhardt avcodec/avcodec: Remove redundant assert It is now checked by FATE that no encoder capable of flushing uses frame threads, so this now redun

[FFmpeg-cvslog] avcodec/avcodec: Simplify check for flushing of bsf

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 03:48:50 2021 +0200| [b9fd9bce7328d8993c33f7892db3f1d58c8be18f] | committer: Andreas Rheinhardt avcodec/avcodec: Simplify check for flushing of bsf Just check for the existence of the bsf. This is equivalent to the old criterion of the

[FFmpeg-cvslog] avcodec/avcodec: Make sanity check stricter

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 04:42:50 2021 +0200| [482850992cb12a65b6754d8dee6544e7b4d2f80d] | committer: Andreas Rheinhardt avcodec/avcodec: Make sanity check stricter If an AVCodec has a private class, its priv_data_size must be > 0 and at the end of a successful

[FFmpeg-cvslog] avcodec/tests/avcodec: Check codec caps for consistency

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 06:23:57 2021 +0200| [d6176c1458ea2c9a027d394619c754086827] | committer: Andreas Rheinhardt avcodec/tests/avcodec: Check codec caps for consistency Reviewed-by: Michael Niedermayer Signed-off-by: Andreas Rheinhardt > http://git.v

[FFmpeg-cvslog] avcodec/internal: Update AVCodecInternal.is_copy documentation

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri Sep 24 18:06:28 2021 +0200| [78ec2f3bd70a3f065967b68b0ddc51ba3f552410] | committer: Andreas Rheinhardt avcodec/internal: Update AVCodecInternal.is_copy documentation Forgotten in 1f4cf92cfbd3accbae582ac63126ed5570ddfd37. Signed-off-by: Andrea

[FFmpeg-cvslog] swscale/yuv2rgb: fix conversion to X2RGB10

2021-09-26 Thread Manuel Stoeckl
ffmpeg | branch: master | Manuel Stoeckl | Thu Sep 23 23:22:29 2021 -0400| [ca594df622abae0c59ef735d63f071db983a35f7] | committer: Michael Niedermayer swscale/yuv2rgb: fix conversion to X2RGB10 This resolves a problem where conversions from YUV to X2RGB10LE would produce color values a factor

[FFmpeg-cvslog] swscale: add input/output support for X2BGR10LE

2021-09-26 Thread Manuel Stoeckl
ffmpeg | branch: master | Manuel Stoeckl | Fri Sep 24 19:09:15 2021 -0400| [32329397e289cc70550f110b72820ef3d219f7e0] | committer: Michael Niedermayer swscale: add input/output support for X2BGR10LE Signed-off-by: Manuel Stoeckl Signed-off-by: Michael Niedermayer > http://git.videolan.org/g

[FFmpeg-cvslog] lavu/pix_fmt: add pixel format for x2bgr10

2021-09-26 Thread Manuel Stoeckl
ffmpeg | branch: master | Manuel Stoeckl | Thu Sep 23 23:22:31 2021 -0400| [0760d9153c39e95e175c434e56916e7d950a4f03] | committer: Michael Niedermayer lavu/pix_fmt: add pixel format for x2bgr10 The new format (given in big/little endian forms) matches the existing X2RGB10 format, except with B

[FFmpeg-cvslog] avcodec/utils: ARGO writes 4x4 blocks without regard to the image dimensions

2021-09-26 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Fri Sep 3 16:51:07 2021 +0200| [018b611b4ba74a5cecfb8a75a637b49840e7c320] | committer: Michael Niedermayer avcodec/utils: ARGO writes 4x4 blocks without regard to the image dimensions Fixes: out of array access Fixes: 37197/clusterfuzz-testcase

[FFmpeg-cvslog] avcodec/h274: fix bad left shifts

2021-09-26 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Tue Sep 14 20:23:52 2021 +0200| [991b3deea90c6fc01ec575522760f58c650eba11] | committer: Michael Niedermayer avcodec/h274: fix bad left shifts Fixes: left shift of negative value -3 Fixes: 37788/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H

[FFmpeg-cvslog] avcodec/flicvideo: Check remaining bytes in FLI*COPY

2021-09-26 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Tue Sep 14 20:31:39 2021 +0200| [5f835efbca874ad42cb954e6788588f52a57a7a2] | committer: Michael Niedermayer avcodec/flicvideo: Check remaining bytes in FLI*COPY Fixes: Timeout Fixes: 37795/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLIC_f

[FFmpeg-cvslog] avcodec/mxpegdec: Check for AVDISCARD_ALL

2021-09-26 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Tue Sep 14 20:16:27 2021 +0200| [20afd3a63a75a160f61a98a8dcfe06f527ea19b4] | committer: Michael Niedermayer avcodec/mxpegdec: Check for AVDISCARD_ALL Fixes: Fixes NULL pointer dereference Fixes: 36610/clusterfuzz-testcase-minimized-ffmpeg_AV_COD

[FFmpeg-cvslog] avformat/mov: Fix last mfra check

2021-09-26 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Wed Sep 15 21:52:00 2021 +0200| [451ceb5131fa67b0b380d4823981e421909c16db] | committer: Michael Niedermayer avformat/mov: Fix last mfra check Fixes: signed integer overflow: 9223372036854775360 + 536870912 cannot be represented in type 'long' Fi

[FFmpeg-cvslog] tools/target_dec_fuzzer: Adjust threshold for WMV2

2021-09-26 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Wed Sep 15 20:48:55 2021 +0200| [8e67cfe15b062362cdc22be2a31167efc55b1e13] | committer: Michael Niedermayer tools/target_dec_fuzzer: Adjust threshold for WMV2 Fixes: Timeout Fixes: 37737/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMV2_fuz

[FFmpeg-cvslog] avcodec/apedec: Fix integer overflow in filter_fast_3320()

2021-09-26 Thread Michael Niedermayer
ffmpeg | branch: master | Michael Niedermayer | Fri Sep 17 21:40:59 2021 +0200| [0e45886e6ea272f453cb949e95c3bfd8380974c5] | committer: Michael Niedermayer avcodec/apedec: Fix integer overflow in filter_fast_3320() Fixes: signed integer overflow: 2145649668 + 3956526 cannot be represented in

[FFmpeg-cvslog] avfilter/elbg: Extend filter to include alpha values in the quantization procedure

2021-09-26 Thread Soft Works
ffmpeg | branch: master | Soft Works | Sun Sep 26 04:57:25 2021 +| [8983c3d7e4acf9b216599cce218acbea498154c7] | committer: Michael Niedermayer avfilter/elbg: Extend filter to include alpha values in the quantization procedure Usage example: ffmpeg -y -loglevel verbose -i "..\fate-suite\a

[FFmpeg-cvslog] avfilter/vf_colorchannelmixer: simplify code a little

2021-09-26 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Sun Sep 26 17:04:23 2021 +0200| [e4327f97b19360dbc155a72493ad749975113d50] | committer: Paul B Mahol avfilter/vf_colorchannelmixer: simplify code a little > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e4327f97b19360dbc155a72493ad749975113d5

[FFmpeg-cvslog] avfilter/vf_colorlevels: refactor code so all components are processed in same loop

2021-09-26 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Sun Sep 26 13:02:03 2021 +0200| [4727e30ec3372ea3d758c28338d65f0c67539b02] | committer: Paul B Mahol avfilter/vf_colorlevels: refactor code so all components are processed in same loop This is also faster. > http://git.videolan.org/gitweb.cgi/ffmpeg.gi

[FFmpeg-cvslog] avfilter/vf_colorchannelmixer: add extended preserve color support

2021-09-26 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Sun Sep 26 18:09:47 2021 +0200| [53f8a0312303d7d7ba52b28e71a4e6f94356944b] | committer: Paul B Mahol avfilter/vf_colorchannelmixer: add extended preserve color support > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=53f8a0312303d7d7ba52b28e71

[FFmpeg-cvslog] avfilter/vf_colorlevels: add preserve color option

2021-09-26 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Sun Sep 26 15:39:43 2021 +0200| [34102f8c07dee33e3dcd954f43dd15fc9925aee4] | committer: Paul B Mahol avfilter/vf_colorlevels: add preserve color option > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=34102f8c07dee33e3dcd954f43dd15fc9925aee4 -

[FFmpeg-cvslog] avfilter/vf_blend: add softdifference blend mode

2021-09-26 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Sun Sep 26 23:08:14 2021 +0200| [e2d40cd1d52306035756687257c00bed144928e1] | committer: Paul B Mahol avfilter/vf_blend: add softdifference blend mode > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e2d40cd1d52306035756687257c00bed144928e1 ---

[FFmpeg-cvslog] avutil/tests/opt: Set AVClass.version

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sun Sep 26 12:03:29 2021 +0200| [4e135347a7c2defaa62e27f7d0533d8963f6d539] | committer: Andreas Rheinhardt avutil/tests/opt: Set AVClass.version Reviewed-by: Paul B Mahol Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ff

[FFmpeg-cvslog] avutil/opt: Remove outdated version check

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sun Sep 26 11:48:33 2021 +0200| [386a4989df09582a4c35e86678243d24c66b9693] | committer: Andreas Rheinhardt avutil/opt: Remove outdated version check Reviewed-by: Paul B Mahol Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cg

[FFmpeg-cvslog] avformat/chromaprint: Add deinit function

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 01:52:23 2021 +0200| [dd1975b0bbcfdd7d02808b3deac43f8f4073731d] | committer: Andreas Rheinhardt avformat/chromaprint: Add deinit function Fixes memleaks in case the trailer is never written. Signed-off-by: Andreas Rheinhardt > http:/

[FFmpeg-cvslog] avformat/chromaprint: Improve returned error codes

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 06:57:44 2021 +0200| [aeee5e3967a0024615cea1bb2736ed120c566048] | committer: Andreas Rheinhardt avformat/chromaprint: Improve returned error codes Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=co

[FFmpeg-cvslog] avformat/filmstripenc: Simplify writing reserved elements

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 06:58:41 2021 +0200| [3042e71776a5f09b814c73430c7169e789847bbc] | committer: Andreas Rheinhardt avformat/filmstripenc: Simplify writing reserved elements Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.gi

[FFmpeg-cvslog] avfilter/audio, video: Remove references to avfilter_unref_buffer()

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 07:03:55 2021 +0200| [f7d59ca364c38860089b56826df47db032a80822] | committer: Andreas Rheinhardt avfilter/audio, video: Remove references to avfilter_unref_buffer() Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi

[FFmpeg-cvslog] fate/demux: Move caf test to its own file

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 23 05:35:46 2021 +0200| [e02447e41e2ea91fbaae1c4f65a276b924d6e9e8] | committer: Andreas Rheinhardt fate/demux: Move caf test to its own file Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e0

[FFmpeg-cvslog] fate/caf: Add remux tests

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 23 07:46:44 2021 +0200| [3a47e87d554363d9fe2ebf4ca79a5c498c5569c5] | committer: Andreas Rheinhardt fate/caf: Add remux tests These test both the muxer as well as the demuxer. Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/g

[FFmpeg-cvslog] avformat/cafenc: Fix memleak when trailer is never written

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 23 04:09:59 2021 +0200| [d94b641b4a3ac3cbb009c8818b0eaf3e15795dca] | committer: Andreas Rheinhardt avformat/cafenc: Fix memleak when trailer is never written Do this by using the AVStream's priv_data for the buffer holding the packet size

[FFmpeg-cvslog] avformat/cafenc: Fix potential integer overflow

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 07:21:05 2021 +0200| [42fe438482dd0f1f59d86e27a88a616ad966706b] | committer: Andreas Rheinhardt avformat/cafenc: Fix potential integer overflow (As long as avio_write() only accepts an int, it makes no sense to try to support sizes that

[FFmpeg-cvslog] avformat/icoenc: Simplify writing bitmask

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 21:52:24 2021 +0200| [7d5e27b473a1ba013a9eb63f57e1e2e445200f6f] | committer: Andreas Rheinhardt avformat/icoenc: Simplify writing bitmask Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7d

[FFmpeg-cvslog] avformat/cafenc: Don't segfault upon allocation error

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 23 02:38:49 2021 +0200| [19a6b51fe61b915b734319b5d917192108df8188] | committer: Andreas Rheinhardt avformat/cafenc: Don't segfault upon allocation error If an array for the packet sizes could not be successfully reallocated when writing a

[FFmpeg-cvslog] avformat/icoenc: Use avcodec_get_name() instead of codec descriptor

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 22:36:23 2021 +0200| [63a5e83de8189372fcf8c543a01f1a0c28860ccb] | committer: Andreas Rheinhardt avformat/icoenc: Use avcodec_get_name() instead of codec descriptor Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi

[FFmpeg-cvslog] avformat/movenc: Limit ism_lookahead to a sane value

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 20:36:21 2021 +0200| [1cf3c59b58f4380d5ce166a67331777891d06eef] | committer: Andreas Rheinhardt avformat/movenc: Limit ism_lookahead to a sane value There can only be a maximum of 255 entries in a tfrf tag, so using more makes no sense;

[FFmpeg-cvslog] avformat/movenc: Simplify reserving space for tfrf tags

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 21:54:02 2021 +0200| [2c47a9491184d8dc7e3b751c9003af024f018ac8] | committer: Andreas Rheinhardt avformat/movenc: Simplify reserving space for tfrf tags Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.git/

[FFmpeg-cvslog] avformat/matroskaenc: Simplify writing qt-compatibility header

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 21:55:43 2021 +0200| [62c8b96a1362622c73f988db05f66a0ebd15211b] | committer: Andreas Rheinhardt avformat/matroskaenc: Simplify writing qt-compatibility header Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmp

[FFmpeg-cvslog] avformat/mpegenc: Simplify writing padding/stuffing

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 21:58:33 2021 +0200| [dbc76e4e70a43fbe6dd7c7c899b134e4c26f43f5] | committer: Andreas Rheinhardt avformat/mpegenc: Simplify writing padding/stuffing Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=c

[FFmpeg-cvslog] avformat/asfenc: Simplify writing error correction data

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 22:38:57 2021 +0200| [b98e397252b1950240e04e47e92d17fd8275073a] | committer: Andreas Rheinhardt avformat/asfenc: Simplify writing error correction data Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.git/

[FFmpeg-cvslog] fate/demux: Move Sony OpenMG audio (oma) test into a new file

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 23 13:52:57 2021 +0200| [fc439f776dc6f4d9e1904cc72c3f3ecab79e6f96] | committer: Andreas Rheinhardt fate/demux: Move Sony OpenMG audio (oma) test into a new file Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpe

[FFmpeg-cvslog] fate/oma: Add remux tests for ATRAC3 and ATRAC3P

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 23 14:41:23 2021 +0200| [ffe9867bc22aba87fb016e16a4c628e010f404b3] | committer: Andreas Rheinhardt fate/oma: Add remux tests for ATRAC3 and ATRAC3P They already uncovered an uninitialized-value bug in the ATRAC3 code in the demuxer; and pr

[FFmpeg-cvslog] avformat/omaenc: Simplify writing padding

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed Sep 22 23:47:58 2021 +0200| [c8e75076f1d5a53a58da9d14574721f9404c99d4] | committer: Andreas Rheinhardt avformat/omaenc: Simplify writing padding Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c8

[FFmpeg-cvslog] avformat/avienc: Simplify writing padding

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 23 01:10:51 2021 +0200| [5eafbf0b087034771c680f15c6f43608dab5422e] | committer: Andreas Rheinhardt avformat/avienc: Simplify writing padding Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5e

[FFmpeg-cvslog] avformat/gxfenc: Simplify writing padding/reserved elements

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 23 01:11:52 2021 +0200| [9fab059eabf19da13cd80267fba3e9d035c1c08b] | committer: Andreas Rheinhardt avformat/gxfenc: Simplify writing padding/reserved elements Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.

[FFmpeg-cvslog] avformat/mxfenc: Simplfy writing padding

2021-09-26 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Sep 23 02:16:41 2021 +0200| [c3222931aba47b313a5b5b9f3796f08433c5f3b9] | committer: Andreas Rheinhardt avformat/mxfenc: Simplfy writing padding Signed-off-by: Andreas Rheinhardt > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c32