Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
941aaa39
Commit
941aaa39
authored
Oct 12, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
postproc/postprocess: fix quant store for fq mode
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
9a460db6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
postprocess.c
libpostproc/postprocess.c
+1
-1
filter-pp3
tests/ref/fate/filter-pp3
+1
-1
No files found.
libpostproc/postprocess.c
View file @
941aaa39
...
...
@@ -1019,7 +1019,7 @@ void pp_postprocess(const uint8_t * src[3], const int srcStride[3],
if
((
pict_type
&
7
)
!=
3
){
if
(
QPStride
>=
0
){
int
i
;
const
int
count
=
mbHeight
*
QPStride
;
const
int
count
=
mbHeight
*
FFMAX
(
QPStride
,
mbWidth
)
;
for
(
i
=
0
;
i
<
(
count
>>
2
);
i
++
){
((
uint32_t
*
)
c
->
nonBQPTable
)[
i
]
=
((
const
uint32_t
*
)
QP_store
)[
i
]
&
0x3F3F3F3F
;
}
...
...
tests/ref/fate/filter-pp3
View file @
941aaa39
pp3
f38fdc2dfa4c8d889918efe6d7a7ac3
a
pp3
ef0f10f1859af2f75717e8c9d64ee38
a
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