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
27d3361e
Commit
27d3361e
authored
Oct 02, 2011
by
Laurent Aimar
Committed by
Michael Niedermayer
Oct 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h264: add entries for 11 and 12 bits in ff_h264_chroma_qp[][]
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
bcf881a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
h264.h
libavcodec/h264.h
+2
-2
h264_ps.c
libavcodec/h264_ps.c
+14
-1
No files found.
libavcodec/h264.h
View file @
27d3361e
...
...
@@ -103,7 +103,7 @@
*/
#define DELAYED_PIC_REF 4
#define QP_MAX_NUM (51 +
2
*6) // The maximum supported qp
#define QP_MAX_NUM (51 +
4
*6) // The maximum supported qp
/* NAL unit types */
enum
{
...
...
@@ -594,7 +594,7 @@ typedef struct H264Context{
}
H264Context
;
extern
const
uint8_t
ff_h264_chroma_qp
[
3
][
QP_MAX_NUM
+
1
];
///< One chroma qp table for each supported bit depth (8, 9, 10
).
extern
const
uint8_t
ff_h264_chroma_qp
[
5
][
QP_MAX_NUM
+
1
];
///< One chroma qp table for each possible bit depth (8-12
).
/**
* Decode SEI
...
...
libavcodec/h264_ps.c
View file @
27d3361e
...
...
@@ -70,7 +70,7 @@ static const AVRational pixel_aspect[17]={
QP(37,d), QP(37,d), QP(37,d), QP(38,d), QP(38,d), QP(38,d),\
QP(39,d), QP(39,d), QP(39,d), QP(39,d)
const
uint8_t
ff_h264_chroma_qp
[
3
][
QP_MAX_NUM
+
1
]
=
{
const
uint8_t
ff_h264_chroma_qp
[
5
][
QP_MAX_NUM
+
1
]
=
{
{
CHROMA_QP_TABLE_END
(
8
)
},
...
...
@@ -83,6 +83,19 @@ const uint8_t ff_h264_chroma_qp[3][QP_MAX_NUM+1] = {
6
,
7
,
8
,
9
,
10
,
11
,
CHROMA_QP_TABLE_END
(
10
)
},
{
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
CHROMA_QP_TABLE_END
(
11
)
},
{
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
18
,
19
,
20
,
21
,
22
,
23
,
CHROMA_QP_TABLE_END
(
12
)
},
};
static
const
uint8_t
default_scaling4
[
2
][
16
]
=
{
...
...
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