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
d6acefe0
Commit
d6acefe0
authored
Feb 27, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proresenc: Drop unnecessary DCT permutation bits
No permutation is necessary for the FDCT.
parent
b2365049
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
11 deletions
+5
-11
proresdsp.c
libavcodec/proresdsp.c
+0
-3
proresdsp.h
libavcodec/proresdsp.h
+0
-2
proresenc.c
libavcodec/proresenc.c
+5
-6
No files found.
libavcodec/proresdsp.c
View file @
d6acefe0
...
...
@@ -86,8 +86,5 @@ av_cold void ff_proresdsp_init(ProresDSPContext *dsp)
#endif
#if CONFIG_PRORES_ENCODER
dsp
->
fdct
=
prores_fdct_c
;
dsp
->
dct_permutation_type
=
FF_NO_IDCT_PERM
;
ff_init_scantable_permutation
(
dsp
->
dct_permutation
,
dsp
->
dct_permutation_type
);
#endif
}
libavcodec/proresdsp.h
View file @
d6acefe0
...
...
@@ -30,8 +30,6 @@
typedef
struct
ProresDSPContext
{
int
idct_permutation_type
;
uint8_t
idct_permutation
[
64
];
int
dct_permutation_type
;
uint8_t
dct_permutation
[
64
];
void
(
*
idct_put
)
(
uint16_t
*
out
,
int
linesize
,
int16_t
*
block
,
const
int16_t
*
qmat
);
void
(
*
fdct
)
(
const
uint16_t
*
src
,
int
linesize
,
int16_t
*
block
);
}
ProresDSPContext
;
...
...
libavcodec/proresenc.c
View file @
d6acefe0
...
...
@@ -190,9 +190,9 @@ typedef struct ProresContext {
int16_t
quants
[
MAX_STORED_Q
][
64
];
int16_t
custom_q
[
64
];
const
uint8_t
*
quant_mat
;
const
uint8_t
*
scantable
;
ProresDSPContext
dsp
;
ScanTable
scantable
;
int
mb_width
,
mb_height
;
int
mbs_per_slice
;
...
...
@@ -426,7 +426,7 @@ static int encode_slice_plane(ProresContext *ctx, PutBitContext *pb,
encode_dcs
(
pb
,
blocks
,
blocks_per_slice
,
qmat
[
0
]);
encode_acs
(
pb
,
blocks
,
blocks_per_slice
,
plane_size_factor
,
ctx
->
scantable
.
permutated
,
qmat
);
ctx
->
scantable
,
qmat
);
flush_put_bits
(
pb
);
return
(
put_bits_count
(
pb
)
-
saved_pos
)
>>
3
;
...
...
@@ -673,7 +673,7 @@ static int estimate_slice_plane(ProresContext *ctx, int *error, int plane,
bits
=
estimate_dcs
(
error
,
td
->
blocks
[
plane
],
blocks_per_slice
,
qmat
[
0
]);
bits
+=
estimate_acs
(
error
,
td
->
blocks
[
plane
],
blocks_per_slice
,
plane_size_factor
,
ctx
->
scantable
.
permutated
,
qmat
);
plane_size_factor
,
ctx
->
scantable
,
qmat
);
return
FFALIGN
(
bits
,
8
);
}
...
...
@@ -1080,9 +1080,8 @@ static av_cold int encode_init(AVCodecContext *avctx)
return
AVERROR
(
ENOMEM
);
ff_proresdsp_init
(
&
ctx
->
dsp
);
ff_init_scantable
(
ctx
->
dsp
.
dct_permutation
,
&
ctx
->
scantable
,
interlaced
?
ff_prores_interlaced_scan
:
ff_prores_progressive_scan
);
ctx
->
scantable
=
interlaced
?
ff_prores_interlaced_scan
:
ff_prores_progressive_scan
;
mps
=
ctx
->
mbs_per_slice
;
if
(
mps
&
(
mps
-
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