Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
e73688ef
Commit
e73688ef
authored
Dec 08, 2019
by
Gyan Doshi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: rename scale.c,h to scale_eval
scale.c is too generic; scale_eval is more representative
parent
9f7b2b37
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
12 deletions
+12
-12
Makefile
libavfilter/Makefile
+5
-5
scale_eval.c
libavfilter/scale_eval.c
+1
-1
scale_eval.h
libavfilter/scale_eval.h
+2
-2
vf_scale.c
libavfilter/vf_scale.c
+1
-1
vf_scale_cuda.c
libavfilter/vf_scale_cuda.c
+1
-1
vf_scale_npp.c
libavfilter/vf_scale_npp.c
+1
-1
vf_scale_vaapi.c
libavfilter/vf_scale_vaapi.c
+1
-1
No files found.
libavfilter/Makefile
View file @
e73688ef
...
...
@@ -359,12 +359,12 @@ OBJS-$(CONFIG_ROBERTS_OPENCL_FILTER) += vf_convolution_opencl.o opencl.o
opencl/convolution.o
OBJS-$(CONFIG_ROTATE_FILTER)
+=
vf_rotate.o
OBJS-$(CONFIG_SAB_FILTER)
+=
vf_sab.o
OBJS-$(CONFIG_SCALE_FILTER)
+=
vf_scale.o
scale.o
OBJS-$(CONFIG_SCALE_CUDA_FILTER)
+=
vf_scale_cuda.o
vf_scale_cuda.ptx.o
scale.o
OBJS-$(CONFIG_SCALE_NPP_FILTER)
+=
vf_scale_npp.o
scale.o
OBJS-$(CONFIG_SCALE_FILTER)
+=
vf_scale.o
scale
_eval
.o
OBJS-$(CONFIG_SCALE_CUDA_FILTER)
+=
vf_scale_cuda.o
vf_scale_cuda.ptx.o
scale
_eval
.o
OBJS-$(CONFIG_SCALE_NPP_FILTER)
+=
vf_scale_npp.o
scale
_eval
.o
OBJS-$(CONFIG_SCALE_QSV_FILTER)
+=
vf_scale_qsv.o
OBJS-$(CONFIG_SCALE_VAAPI_FILTER)
+=
vf_scale_vaapi.o
scale.o
vaapi_vpp.o
OBJS-$(CONFIG_SCALE2REF_FILTER)
+=
vf_scale.o
scale.o
OBJS-$(CONFIG_SCALE_VAAPI_FILTER)
+=
vf_scale_vaapi.o
scale
_eval
.o
vaapi_vpp.o
OBJS-$(CONFIG_SCALE2REF_FILTER)
+=
vf_scale.o
scale
_eval
.o
OBJS-$(CONFIG_SCROLL_FILTER)
+=
vf_scroll.o
OBJS-$(CONFIG_SELECT_FILTER)
+=
f_select.o
OBJS-$(CONFIG_SELECTIVECOLOR_FILTER)
+=
vf_selectivecolor.o
...
...
libavfilter/scale.c
→
libavfilter/scale
_eval
.c
View file @
e73688ef
...
...
@@ -19,7 +19,7 @@
*/
#include <stdint.h>
#include "scale.h"
#include "scale
_eval
.h"
#include "libavutil/eval.h"
#include "libavutil/mathematics.h"
#include "libavutil/pixdesc.h"
...
...
libavfilter/scale.h
→
libavfilter/scale
_eval
.h
View file @
e73688ef
...
...
@@ -16,8 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef AVFILTER_SCALE_H
#define AVFILTER_SCALE_H
#ifndef AVFILTER_SCALE_
EVAL_
H
#define AVFILTER_SCALE_
EVAL_
H
#include "avfilter.h"
...
...
libavfilter/vf_scale.c
View file @
e73688ef
...
...
@@ -29,7 +29,7 @@
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "scale.h"
#include "scale
_eval
.h"
#include "video.h"
#include "libavutil/avstring.h"
#include "libavutil/internal.h"
...
...
libavfilter/vf_scale_cuda.c
View file @
e73688ef
...
...
@@ -35,7 +35,7 @@
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "scale.h"
#include "scale
_eval
.h"
#include "video.h"
static
const
enum
AVPixelFormat
supported_formats
[]
=
{
...
...
libavfilter/vf_scale_npp.c
View file @
e73688ef
...
...
@@ -37,7 +37,7 @@
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "scale.h"
#include "scale
_eval
.h"
#include "video.h"
#define CHECK_CU(x) FF_CUDA_CHECK_DL(ctx, device_hwctx->internal->cuda_dl, x)
...
...
libavfilter/vf_scale_vaapi.c
View file @
e73688ef
...
...
@@ -26,7 +26,7 @@
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "scale.h"
#include "scale
_eval
.h"
#include "video.h"
#include "vaapi_vpp.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment