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
f078bc4c
Commit
f078bc4c
authored
Mar 25, 2017
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/dnxhdenc: DNxHR 444 and HQX support
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
507a85b9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
216 additions
and
70 deletions
+216
-70
dnxhdenc.c
libavcodec/dnxhdenc.c
+212
-68
dnxhdenc.h
libavcodec/dnxhdenc.h
+4
-2
No files found.
libavcodec/dnxhdenc.c
View file @
f078bc4c
This diff is collapsed.
Click to expand it.
libavcodec/dnxhdenc.h
View file @
f078bc4c
...
...
@@ -48,6 +48,8 @@ typedef struct DNXHDEncContext {
int
cid
;
int
profile
;
int
bit_depth
;
int
is_444
;
const
CIDEntry
*
cid_table
;
uint8_t
*
msip
;
///< Macroblock Scan Indexes Payload
uint32_t
*
slice_size
;
...
...
@@ -72,9 +74,9 @@ typedef struct DNXHDEncContext {
unsigned
min_padding
;
int
intra_quant_bias
;
DECLARE_ALIGNED
(
16
,
int16_t
,
blocks
)[
8
][
64
];
DECLARE_ALIGNED
(
16
,
int16_t
,
blocks
)[
12
][
64
];
DECLARE_ALIGNED
(
16
,
uint8_t
,
edge_buf_y
)[
256
];
DECLARE_ALIGNED
(
16
,
uint8_t
,
edge_buf_uv
)[
2
][
128
];
DECLARE_ALIGNED
(
16
,
uint8_t
,
edge_buf_uv
)[
2
][
256
];
int
(
*
qmatrix_c
)
[
64
];
int
(
*
qmatrix_l
)
[
64
];
...
...
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