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
ee17be3f
Commit
ee17be3f
authored
Mar 10, 2014
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hevc: Use get_se_golomb_long
Do not use inline functions that refer to tables present in other libraries.
parent
5eacbb53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
hevc.c
libavformat/hevc.c
+5
-5
No files found.
libavformat/hevc.c
View file @
ee17be3f
...
...
@@ -402,10 +402,10 @@ static void skip_scaling_list_data(GetBitContext *gb)
num_coeffs
=
FFMIN
(
64
,
1
<<
(
4
+
(
i
<<
1
)));
if
(
i
>
1
)
get_se_golomb
(
gb
);
// scaling_list_dc_coef_minus8[i-2][j]
get_se_golomb
_long
(
gb
);
// scaling_list_dc_coef_minus8[i-2][j]
for
(
k
=
0
;
k
<
num_coeffs
;
k
++
)
get_se_golomb
(
gb
);
// scaling_list_delta_coef
get_se_golomb
_long
(
gb
);
// scaling_list_delta_coef
}
}
...
...
@@ -593,7 +593,7 @@ static int hvcc_parse_pps(GetBitContext *gb,
get_ue_golomb_long
(
gb
);
// num_ref_idx_l0_default_active_minus1
get_ue_golomb_long
(
gb
);
// num_ref_idx_l1_default_active_minus1
get_se_golomb
(
gb
);
// init_qp_minus26
get_se_golomb
_long
(
gb
);
// init_qp_minus26
/*
* constrained_intra_pred_flag u(1)
...
...
@@ -604,8 +604,8 @@ static int hvcc_parse_pps(GetBitContext *gb,
if
(
get_bits1
(
gb
))
// cu_qp_delta_enabled_flag
get_ue_golomb_long
(
gb
);
// diff_cu_qp_delta_depth
get_se_golomb
(
gb
);
// pps_cb_qp_offset
get_se_golomb
(
gb
);
// pps_cr_qp_offset
get_se_golomb
_long
(
gb
);
// pps_cb_qp_offset
get_se_golomb
_long
(
gb
);
// pps_cr_qp_offset
/*
* weighted_pred_flag u(1)
...
...
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