Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
7a806c68
Commit
7a806c68
authored
Aug 21, 2015
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/hevcdsp: rename sao_band_filter c functions
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
e32a9926
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
hevcdsp.c
libavcodec/hevcdsp.c
+1
-1
hevcdsp_template.c
libavcodec/hevcdsp_template.c
+4
-4
No files found.
libavcodec/hevcdsp.c
View file @
7a806c68
...
@@ -216,7 +216,7 @@ void ff_hevc_dsp_init(HEVCDSPContext *hevcdsp, int bit_depth)
...
@@ -216,7 +216,7 @@ void ff_hevc_dsp_init(HEVCDSPContext *hevcdsp, int bit_depth)
hevcdsp->sao_band_filter[1] = \
hevcdsp->sao_band_filter[1] = \
hevcdsp->sao_band_filter[2] = \
hevcdsp->sao_band_filter[2] = \
hevcdsp->sao_band_filter[3] = \
hevcdsp->sao_band_filter[3] = \
hevcdsp->sao_band_filter[4] = FUNC(sao_band_filter
_0, depth);
\
hevcdsp->sao_band_filter[4] = FUNC(sao_band_filter
, depth);
\
hevcdsp->sao_edge_filter[0] = \
hevcdsp->sao_edge_filter[0] = \
hevcdsp->sao_edge_filter[1] = \
hevcdsp->sao_edge_filter[1] = \
hevcdsp->sao_edge_filter[2] = \
hevcdsp->sao_edge_filter[2] = \
...
...
libavcodec/hevcdsp_template.c
View file @
7a806c68
...
@@ -301,10 +301,10 @@ IDCT_DC(32)
...
@@ -301,10 +301,10 @@ IDCT_DC(32)
#undef SCALE
#undef SCALE
#undef ADD_AND_SCALE
#undef ADD_AND_SCALE
static
void
FUNC
(
sao_band_filter
_0
)(
uint8_t
*
_dst
,
uint8_t
*
_src
,
static
void
FUNC
(
sao_band_filter
)(
uint8_t
*
_dst
,
uint8_t
*
_src
,
ptrdiff_t
stride_dst
,
ptrdiff_t
stride_src
,
ptrdiff_t
stride_dst
,
ptrdiff_t
stride_src
,
int16_t
*
sao_offset_val
,
int
sao_left_class
,
int16_t
*
sao_offset_val
,
int
sao_left_class
,
int
width
,
int
height
)
int
width
,
int
height
)
{
{
pixel
*
dst
=
(
pixel
*
)
_dst
;
pixel
*
dst
=
(
pixel
*
)
_dst
;
pixel
*
src
=
(
pixel
*
)
_src
;
pixel
*
src
=
(
pixel
*
)
_src
;
...
...
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