[FFmpeg-cvslog] configure: enable ffnvcodec, nvenc, nvdec for ppc6le

2019-05-08 Thread Ruta Gadkari
ffmpeg | branch: master | Ruta Gadkari | Tue Mar 12 14:12:04 2019 +0530| [cc86982fc5f6ae7a25f448931dd3fc2b80c2ce0b] | committer: Timo Rothenpieler configure: enable ffnvcodec, nvenc, nvdec for ppc6le Adding the support to build FFMPEG with HW accelerated decode and encode on PPC64 little endi

[FFmpeg-cvslog] avcodec/cuviddec: add capability check for maximum macroblock count

2019-05-08 Thread Ruta Gadkari
ffmpeg | branch: master | Ruta Gadkari | Fri May 3 13:59:11 2019 +0530| [80155795bb433fe588a957be9fb96a0a2608a00f] | committer: BtbN avcodec/cuviddec: add capability check for maximum macroblock count Cuvid supports clips with a limit on maximum number of macroblocks. This check was missing a

[FFmpeg-cvslog] avfilter/af_afftfilt: switch to activate

2019-05-08 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Wed May 8 15:03:22 2019 +0200| [c539dd992cea8313ecb7565bb74645c81d7bf333] | committer: Paul B Mahol avfilter/af_afftfilt: switch to activate > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c539dd992cea8313ecb7565bb74645c81d7bf333 --- libav

[FFmpeg-cvslog] libavfilter/dnn: avoid memcpy for tensorflow dnn output

2019-05-08 Thread Guo , Yejun
ffmpeg | branch: master | Guo, Yejun | Thu Apr 25 10:14:25 2019 +0800| [7adfb6132e0823de06f92ecbcb485eeb4260d407] | committer: Pedro Arthur libavfilter/dnn: avoid memcpy for tensorflow dnn output use TF_Tensor's cpu address to avoid extra memcpy. Signed-off-by: Guo, Yejun Signed-off-by: Pedr

[FFmpeg-cvslog] libavfilter/dnn_backend_tf.c: set layer_add_res for input layer

2019-05-08 Thread Guo , Yejun
ffmpeg | branch: master | Guo, Yejun | Thu Apr 25 10:13:49 2019 +0800| [014b6a56f8e4020dd9ec2255266cd0a24c885c0c] | committer: Pedro Arthur libavfilter/dnn_backend_tf.c: set layer_add_res for input layer otherwise, the following check will return error if layer_add_res is randomly initialized.

[FFmpeg-cvslog] libavfilter/dnn: support multiple outputs for tensorflow model

2019-05-08 Thread Guo , Yejun
ffmpeg | branch: master | Guo, Yejun | Thu Apr 25 10:14:33 2019 +0800| [25c1cd909fa6c8b6b778dc24192dc3ec780324b0] | committer: Pedro Arthur libavfilter/dnn: support multiple outputs for tensorflow model some models such as ssd, yolo have more than one output. the clean up code in this patch i

[FFmpeg-cvslog] libavfilter/dnn: remove limit for the name of DNN model input/output

2019-05-08 Thread Guo , Yejun
ffmpeg | branch: master | Guo, Yejun | Thu Apr 25 10:14:08 2019 +0800| [05f86f05bb5060492dd3ff22c23628e4e4334a1e] | committer: Pedro Arthur libavfilter/dnn: remove limit for the name of DNN model input/output remove the requirment that the name of DNN model input/output should be "x"/"y", Sig

[FFmpeg-cvslog] libavfilter/dnn: determine dnn output during execute_model instead of set_input_output

2019-05-08 Thread Guo , Yejun
ffmpeg | branch: master | Guo, Yejun | Thu Apr 25 10:14:17 2019 +0800| [e2b92896c4ca609c851ea8c1a1bfd5d0918a5269] | committer: Pedro Arthur libavfilter/dnn: determine dnn output during execute_model instead of set_input_output Currently, within interface set_input_output, the dims/memory of t

[FFmpeg-cvslog] libavfilter/vf_sr: refine code to remove keyword 'else'

2019-05-08 Thread Guo , Yejun
ffmpeg | branch: master | Guo, Yejun | Thu Apr 25 10:14:01 2019 +0800| [05aec8bb13cc1d698f76c6972a23521a3fba5596] | committer: Pedro Arthur libavfilter/vf_sr: refine code to remove keyword 'else' remove 'else' since there is always 'return' in 'if' scope, so the code will be clean for later ma

[FFmpeg-cvslog] libavfilter/dnn: add more data type support for dnn model input

2019-05-08 Thread Guo , Yejun
ffmpeg | branch: master | Guo, Yejun | Thu Apr 25 10:14:42 2019 +0800| [c636dc9819ebab1a84237cc017a6a3d35ebc9cdc] | committer: Pedro Arthur libavfilter/dnn: add more data type support for dnn model input currently, only float is supported as model input, actually, there are other data types, t

[FFmpeg-cvslog] avformat/matroskaenc: Avoid seeking when writing level 1 elements

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:41:05 2019 +0200| [e04a24e70148e330bcdcfd7c049acbe1a821398f] | committer: James Almer avformat/matroskaenc: Avoid seeking when writing level 1 elements Up until now, the writing process for level 1 elements (those elements for which

[FFmpeg-cvslog] avformat/matroskaenc: Write CRC-32 in non-seekable mode

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:41:06 2019 +0200| [add68dcca958f0f6b42cabea6f546ceae5c7f16d] | committer: James Almer avformat/matroskaenc: Write CRC-32 in non-seekable mode Given that in both the seekable as well as the non-seekable mode dynamic buffers are used t

[FFmpeg-cvslog] avformat/matroskaenc: Fix BlockGroup size calculation

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:40:57 2019 +0200| [8b7964f8f83edeb8296086470123050b3546d213] | committer: James Almer avformat/matroskaenc: Fix BlockGroup size calculation The earlier code included the size of the BlockGroup's length field and the EBML ID in the ca

[FFmpeg-cvslog] avformat/matroskaenc: Don't waste bytes in EBML Header

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:40:59 2019 +0200| [4e6df068b5477eeb63a483e93bd63661712131ba] | committer: James Almer avformat/matroskaenc: Don't waste bytes in EBML Header Up until now the EBML Header length field has been written with eight bytes, although the EB

[FFmpeg-cvslog] avformat/matroskaenc: Slightly improve size bounds for cues

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:40:58 2019 +0200| [5d7d0fcd70b9d50f093df6f42f9124be55895575] | committer: James Almer avformat/matroskaenc: Slightly improve size bounds for cues The upper bounds currently used for determining the size of a CuePoint's length field c

[FFmpeg-cvslog] avformat/matroskaenc: Remove traces of secondary seek head

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:41:00 2019 +0200| [01506e6b663948c9e3666c6d35f7830f397ab78a] | committer: James Almer avformat/matroskaenc: Remove traces of secondary seek head Up until e7ddafd515dc9826915b739d0b977a63c21e96af the Matroska muxer wrote a secondary s

[FFmpeg-cvslog] avformat/matroskaenc: Simplify check for writing CRCs

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:41:01 2019 +0200| [30d07c74dbd9384e50535cfedde5237114a81bee] | committer: James Almer avformat/matroskaenc: Simplify check for writing CRCs Up until now, the check for whether to write CRC32 elements was always mkv->write_crc && mkv-

[FFmpeg-cvslog] avformat/matroskaenc: Improve log messages for blocks

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Tue Apr 23 21:45:52 2019 +0200| [9b932a855e4416a1a7fe207cc8af0782b96823ee] | committer: James Almer avformat/matroskaenc: Improve log messages for blocks Up until now, a block's relative offset has been reported as the offset in the log messages o

[FFmpeg-cvslog] avformat/matroskaenc: Change variable types

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:41:04 2019 +0200| [8f53fd2dfdea9f5fac4c49e6475e75fc2f59ef1e] | committer: James Almer avformat/matroskaenc: Change variable types A Matroska EBML ID can only be maximally four bytes long, so make the variables denoting EBML IDs uint3

[FFmpeg-cvslog] avformat/matroskaenc: Don't waste bytes writing level 1 elements

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:41:08 2019 +0200| [0b61ddb5766c8d5219150371db0649ff0cec730a] | committer: James Almer avformat/matroskaenc: Don't waste bytes writing level 1 elements Up until now, the length field of most level 1 elements has been written using eig

[FFmpeg-cvslog] avformat/matroskaenc: Improve log message

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:41:02 2019 +0200| [924424d86781a5cfa4b59910f5f305e5ac348b4e] | committer: James Almer avformat/matroskaenc: Improve log message Since 4e3bdf729a80f868b014ceb02901d87198b545a5 there is no reason any more to treat the seekable and non-

[FFmpeg-cvslog] avformat/matroskaenc: Cosmetics and typo

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:41:07 2019 +0200| [08f5d972994ef7160767d1bd99ef59b177db3199] | committer: James Almer avformat/matroskaenc: Cosmetics and typo Fixes intendation, whitespace, a typo and renames a variable (dyn_bc->cluster_bc) to make its meaning clea

[FFmpeg-cvslog] avformat/matroskaenc: Fix relative timestamp check

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:40:56 2019 +0200| [4ebeab15b037a21f195696cef1f7522daf42f3ee] | committer: James Almer avformat/matroskaenc: Fix relative timestamp check At this point, ts already includes the ts_offset so that the relative time written with the clus

[FFmpeg-cvslog] avformat/matroskaenc: Remove redundant check

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:41:03 2019 +0200| [4b2c24da462f90f49b7f072e8bc1bf47d55d1c8b] | committer: James Almer avformat/matroskaenc: Remove redundant check All places where end_ebml_master_crc32_preliminary are used already check for whether the output is se

[FFmpeg-cvslog] avformat/matroskaenc: Reduce usage of ebml_master

2019-05-08 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Sat Apr 20 01:41:10 2019 +0200| [48539b62fcbd994723a71cbc1750476cbee8eaac] | committer: James Almer avformat/matroskaenc: Reduce usage of ebml_master After the last few commits, the functions for writing master elements with CRC-32 elements didn't

[FFmpeg-cvslog] avfilter/af_atempo: Make ffplay display correct timestamps when seeking

2019-05-08 Thread Pavel Koshevoy
ffmpeg | branch: master | Pavel Koshevoy | Tue May 7 22:39:45 2019 -0600| [181031906e4984c1c539dc84d21386a4397e257e] | committer: Pavel Koshevoy avfilter/af_atempo: Make ffplay display correct timestamps when seeking NOTE: this is a refinement of the patch from Paul B Mahol offset all output