You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-29 05:57:37 +02:00
avfilter/vf_colordetect: Rename header to vf_colordetectdsp.h
It is more in line with our naming conventions. Reviewed-by: Martin Storsjö <martin@martin.st> Reviewed-by: Niklas Haas <ffmpeg@haasn.dev> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
*/
|
||||
|
||||
#include "libavutil/aarch64/cpu.h"
|
||||
#include "libavfilter/vf_colordetect.h"
|
||||
#include "libavfilter/vf_colordetectdsp.h"
|
||||
|
||||
int ff_detect_alpha_full_neon(const uint8_t *color, ptrdiff_t color_stride,
|
||||
const uint8_t *alpha, ptrdiff_t alpha_stride,
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
#include "formats.h"
|
||||
#include "video.h"
|
||||
|
||||
#include "vf_colordetect.h"
|
||||
#include "vf_colordetectdsp.h"
|
||||
|
||||
enum ColorDetectMode {
|
||||
COLOR_DETECT_COLOR_RANGE = 1 << 0,
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef AVFILTER_COLORDETECT_H
|
||||
#define AVFILTER_COLORDETECT_H
|
||||
#ifndef AVFILTER_COLORDETECTDSP_H
|
||||
#define AVFILTER_COLORDETECTDSP_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
@@ -195,4 +195,4 @@ ff_detect_alpha16_limited_c(const uint8_t *color, ptrdiff_t color_stride,
|
||||
return transparent ? FF_ALPHA_TRANSPARENT : 0;
|
||||
}
|
||||
|
||||
#endif /* AVFILTER_COLORDETECT_H */
|
||||
#endif /* AVFILTER_COLORDETECTDSP_H */
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
#include "libavutil/attributes.h"
|
||||
#include "libavutil/x86/cpu.h"
|
||||
#include "libavfilter/vf_colordetect.h"
|
||||
#include "libavfilter/vf_colordetectdsp.h"
|
||||
|
||||
#define DETECT_RANGE_FUNC(FUNC_NAME, ASM_FUNC_NAME, C_FUNC_NAME, SHIFT, MMSIZE) \
|
||||
int ASM_FUNC_NAME(const uint8_t *src, ptrdiff_t stride, \
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
#include <string.h>
|
||||
#include "checkasm.h"
|
||||
|
||||
#include "libavfilter/vf_colordetect.h"
|
||||
#include "libavfilter/vf_colordetectdsp.h"
|
||||
#include "libavutil/mem_internal.h"
|
||||
|
||||
#define WIDTH 540
|
||||
|
||||
Reference in New Issue
Block a user