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
f0ce9913
Commit
f0ce9913
authored
Jun 12, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename tpel_template.c ---> pel_template.c
The new name more accurately describes what the file is about.
parent
4321e507
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
h264qpel_template.c
libavcodec/h264qpel_template.c
+1
-1
hpeldsp.c
libavcodec/hpeldsp.c
+1
-1
pel_template.c
libavcodec/pel_template.c
+3
-3
qpeldsp.c
libavcodec/qpeldsp.c
+1
-1
tpeldsp.c
libavcodec/tpeldsp.c
+1
-1
No files found.
libavcodec/h264qpel_template.c
View file @
f0ce9913
...
...
@@ -24,7 +24,7 @@
#include "bit_depth_template.c"
#include "hpel_template.c"
#include "
t
pel_template.c"
#include "pel_template.c"
static
inline
void
FUNC
(
copy_block2
)(
uint8_t
*
dst
,
const
uint8_t
*
src
,
int
dstStride
,
int
srcStride
,
int
h
)
{
...
...
libavcodec/hpeldsp.c
View file @
f0ce9913
...
...
@@ -33,7 +33,7 @@
#define BIT_DEPTH 8
#include "hpel_template.c"
#include "
t
pel_template.c"
#include "pel_template.c"
#define PIXOP2(OPNAME, OP) \
static inline void OPNAME ## _no_rnd_pixels8_l2_8(uint8_t *dst, \
...
...
libavcodec/
t
pel_template.c
→
libavcodec/pel_template.c
View file @
f0ce9913
...
...
@@ -25,7 +25,7 @@
#include "bit_depth_template.c"
#define DEF_
TPEL(OPNAME, OP)
\
#define DEF_
PEL(OPNAME, OP)
\
static inline void FUNCC(OPNAME ## _pixels2)(uint8_t *block, \
const uint8_t *pixels, \
ptrdiff_t line_size, \
...
...
@@ -74,7 +74,7 @@ CALL_2X_PIXELS(FUNCC(OPNAME ## _pixels16), \
#define op_avg(a, b) a = rnd_avg_pixel4(a, b)
#define op_put(a, b) a = b
DEF_
T
PEL
(
avg
,
op_avg
)
DEF_
T
PEL
(
put
,
op_put
)
DEF_PEL
(
avg
,
op_avg
)
DEF_PEL
(
put
,
op_put
)
#undef op_avg
#undef op_put
libavcodec/qpeldsp.c
View file @
f0ce9913
...
...
@@ -33,7 +33,7 @@
#define BIT_DEPTH 8
#include "hpel_template.c"
#include "
t
pel_template.c"
#include "pel_template.c"
#include "qpel_template.c"
#define QPEL_MC(r, OPNAME, RND, OP) \
...
...
libavcodec/tpeldsp.c
View file @
f0ce9913
...
...
@@ -29,7 +29,7 @@
#include "tpeldsp.h"
#define BIT_DEPTH 8
#include "
t
pel_template.c"
#include "pel_template.c"
static
inline
void
put_tpel_pixels_mc00_c
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
int
stride
,
int
width
,
int
height
)
...
...
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