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
061dc203
Commit
061dc203
authored
Mar 08, 2016
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: Add missing ff_ prefix to internally visible h264_init_dequant_tables()
parent
69a63801
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
h264.c
libavcodec/h264.c
+1
-1
h264.h
libavcodec/h264.h
+1
-1
h264_slice.c
libavcodec/h264_slice.c
+2
-2
No files found.
libavcodec/h264.c
View file @
061dc203
...
...
@@ -313,7 +313,7 @@ int ff_h264_alloc_tables(H264Context *h)
}
if
(
!
h
->
dequant4_coeff
[
0
])
h264_init_dequant_tables
(
h
);
ff_
h264_init_dequant_tables
(
h
);
return
0
;
...
...
libavcodec/h264.h
View file @
061dc203
...
...
@@ -829,7 +829,7 @@ int ff_h264_decode_mb_cabac(const H264Context *h, H264SliceContext *sl);
void
ff_h264_init_cabac_states
(
const
H264Context
*
h
,
H264SliceContext
*
sl
);
void
h264_init_dequant_tables
(
H264Context
*
h
);
void
ff_
h264_init_dequant_tables
(
H264Context
*
h
);
void
ff_h264_direct_dist_scale_factor
(
const
H264Context
*
const
h
,
H264SliceContext
*
sl
);
void
ff_h264_direct_ref_list_init
(
const
H264Context
*
const
h
,
H264SliceContext
*
sl
);
...
...
libavcodec/h264_slice.c
View file @
061dc203
...
...
@@ -335,7 +335,7 @@ static void init_dequant4_coeff_table(H264Context *h)
}
}
void
h264_init_dequant_tables
(
H264Context
*
h
)
void
ff_
h264_init_dequant_tables
(
H264Context
*
h
)
{
int
i
,
x
;
init_dequant4_coeff_table
(
h
);
...
...
@@ -1194,7 +1194,7 @@ int ff_h264_decode_slice_header(H264Context *h, H264SliceContext *sl)
if
(
sl
==
h
->
slice_ctx
&&
h
->
dequant_coeff_pps
!=
pps_id
)
{
h
->
dequant_coeff_pps
=
pps_id
;
h264_init_dequant_tables
(
h
);
ff_
h264_init_dequant_tables
(
h
);
}
frame_num
=
get_bits
(
&
sl
->
gb
,
h
->
sps
.
log2_max_frame_num
);
...
...
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