- 06 Sep, 2019 4 commits
-
-
Paul B Mahol authored
-
Paul B Mahol authored
-
Paul B Mahol authored
-
Paul B Mahol authored
In preparation of SIMD assembly.
-
- 04 Sep, 2019 1 commit
-
-
Guo, Yejun authored
Signed-off-by:
Guo, Yejun <yejun.guo@intel.com> Signed-off-by:
Pedro Arthur <bygrandao@gmail.com>
-
- 02 Sep, 2019 7 commits
-
-
Paul B Mahol authored
-
Paul B Mahol authored
It is not clear what was real intention of previous commit to this filter. It was not working correctly, hopefully this is fixed now. It never checked that new x/y/w/h are actually valid, hopeffully this is fixed now. It uses named variables in expressions that are never set, still not fixed. It does not set named variables that uses actual frame widht/height, making actual expressions less usable for our users, still now fixed.
-
Paul B Mahol authored
-
Paul B Mahol authored
-
Paul B Mahol authored
-
Paul B Mahol authored
-
Steven Liu authored
Signed-off-by:
Steven Liu <lq@chinaffmpeg.org>
-
- 01 Sep, 2019 1 commit
-
-
Raphaël Zumer authored
Signed-off-by:
Raphaël Zumer <rzumer@tebako.net> Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 31 Aug, 2019 1 commit
-
-
Paul B Mahol authored
-
- 30 Aug, 2019 5 commits
-
-
Paul B Mahol authored
-
Guo, Yejun authored
Signed-off-by:
Guo, Yejun <yejun.guo@intel.com> Signed-off-by:
Pedro Arthur <bygrandao@gmail.com>
-
Guo, Yejun authored
currently, the layer number is at the beginning of the .model file, so we have to scan twice in python script, the first scan to get the layer number. Only one scan needed after put the layer number at the end of .model file. Signed-off-by:
Guo, Yejun <yejun.guo@intel.com> Signed-off-by:
Pedro Arthur <bygrandao@gmail.com>
-
Guo, Yejun authored
the info can be saved in dnn operand object without regenerating again and again, and it is also needed for layer split/merge, and for memory reuse. to make things step by step, this patch just focuses on c code, the change within python script will be added later. Signed-off-by:
Guo, Yejun <yejun.guo@intel.com> Signed-off-by:
Pedro Arthur <bygrandao@gmail.com>
-
Eugene Lyapustin authored
-
- 28 Aug, 2019 1 commit
-
-
Paul B Mahol authored
-
- 26 Aug, 2019 2 commits
-
-
Xuewei Meng authored
Signed-off-by:
Steven Liu <lq@chinaffmpeg.org>
-
Xuewei Meng authored
Add the support of dehaze filter in existing derain filter source code. As the processing procedure in FFmpeg is the same for current derain and dehaze, we reuse the derain filter source code. The model training and generation scripts are in repo https://github.com/XueweiMeng/derain_filter.gitReviewed-by:
Steven Liu <lq@onvideo.cn> Signed-off-by:
Xuewei Meng <xwmeng96@gmail.com>
-
- 22 Aug, 2019 3 commits
-
-
Jarek Samic authored
-
Jarek Samic authored
-
Jarek Samic authored
-
- 21 Aug, 2019 2 commits
-
-
Paul B Mahol authored
-
Paul B Mahol authored
-
- 20 Aug, 2019 5 commits
-
-
Zhong Li authored
Partly fix tiket#8065 Signed-off-by:
Zhong Li <zhong.li@intel.com>
-
Zhong Li authored
32 bytes alignment is not needed and increases the failure possibilty of SFC (low power scaling mode) Signed-off-by:
Zhong Li <zhong.li@intel.com>
-
Jun Zhao authored
fix memory leak in error path Reviewed-by:
Guo, Yejun <yejun.guo@intel.com> Signed-off-by:
Jun Zhao <barryjzhao@tencent.com>
-
Jun Zhao authored
ff_merge_samplerates will be deallocate a or b in some case, so add a check before free the format. Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Jun Zhao <barryjzhao@tencent.com>
-
Jun Zhao authored
ff_filter_frame fail will free the frame, so we just returen after this function fail. Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Jun Zhao <barryjzhao@tencent.com>
-
- 19 Aug, 2019 5 commits
-
-
Guo, Yejun authored
Signed-off-by:
Guo, Yejun <yejun.guo@intel.com> Signed-off-by:
Pedro Arthur <bygrandao@gmail.com>
-
Guo, Yejun authored
if it is initialized randomly, the tensorflow lib will report error message such as: Attempt to add output -7920 of depth_to_space4 not in range [0, 1) to node with type Identity Signed-off-by:
Guo, Yejun <yejun.guo@intel.com> Signed-off-by:
Pedro Arthur <bygrandao@gmail.com>
-
Eugene Lyapustin authored
Signed-off-by:
Eugene Lyapustin <unishifft@gmail.com>
-
Eugene Lyapustin authored
Signed-off-by:
Eugene Lyapustin <unishifft@gmail.com>
-
Eugene Lyapustin authored
Signed-off-by:
Eugene Lyapustin <unishifft@gmail.com>
-
- 17 Aug, 2019 2 commits
-
-
Limin Wang authored
show real information instead of the unknown side data type message for HDR10 stream Signed-off-by:
Limin Wang <lance.lmwang@gmail.com> Signed-off-by:
James Almer <jamrial@gmail.com>
-
Limin Wang authored
At the moment scene change detection score uses all planes to detect scene changes. In this regard this is similar how the frozen frames detection works. However, in classic encoding scene change detection typically only uses the Y plane. We might get more resonable scores for scene change if we also use only the Y plane for calculating the score if the pixel format is YUV. Although this will require additional work once packed YUV formats are added, because for the moment the generic scene sad score calculation has no way to ignore some components in a packed format. Signed-off-by:
Limin Wang <lance.lmwang@gmail.com> Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 14 Aug, 2019 1 commit
-
-
Andreas Rheinhardt authored
98e419cb added SIMD for the convolution filter for x64 systems. As usual, it used a check of the form if (ARCH_X86_64) ff_convolution_init_x86(s); and thereby relied on the compiler eliminating this pseudo-runtime check at compiletime for non x64 systems (for which ff_convolution_init_x86 isn't defined) to compile. But vf_convolution.c contains more than one filter and if the convolution filter is disabled, but one of the other filters (prewitt, sobel, roberts) is enabled, the build will fail on x64, because ff_convolution_init_x86 isn't defined in this case. Signed-off-by:
Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-