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
7a113333
Commit
7a113333
authored
Oct 12, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libpostproc: support grayscale
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
25a41808
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
postprocess.c
libpostproc/postprocess.c
+3
-0
version.h
libpostproc/version.h
+1
-1
No files found.
libpostproc/postprocess.c
View file @
7a113333
...
@@ -1042,6 +1042,9 @@ void pp_postprocess(const uint8_t * src[3], const int srcStride[3],
...
@@ -1042,6 +1042,9 @@ void pp_postprocess(const uint8_t * src[3], const int srcStride[3],
postProcess
(
src
[
0
],
srcStride
[
0
],
dst
[
0
],
dstStride
[
0
],
postProcess
(
src
[
0
],
srcStride
[
0
],
dst
[
0
],
dstStride
[
0
],
width
,
height
,
QP_store
,
QPStride
,
0
,
mode
,
c
);
width
,
height
,
QP_store
,
QPStride
,
0
,
mode
,
c
);
if
(
!
(
src
[
1
]
&&
src
[
2
]
&&
dst
[
1
]
&&
dst
[
2
]))
return
;
width
=
(
width
)
>>
c
->
hChromaSubSample
;
width
=
(
width
)
>>
c
->
hChromaSubSample
;
height
=
(
height
)
>>
c
->
vChromaSubSample
;
height
=
(
height
)
>>
c
->
vChromaSubSample
;
...
...
libpostproc/version.h
View file @
7a113333
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
#include "libavutil/avutil.h"
#include "libavutil/avutil.h"
#define LIBPOSTPROC_VERSION_MAJOR 53
#define LIBPOSTPROC_VERSION_MAJOR 53
#define LIBPOSTPROC_VERSION_MINOR
2
#define LIBPOSTPROC_VERSION_MINOR
3
#define LIBPOSTPROC_VERSION_MICRO 100
#define LIBPOSTPROC_VERSION_MICRO 100
#define LIBPOSTPROC_VERSION_INT AV_VERSION_INT(LIBPOSTPROC_VERSION_MAJOR, \
#define LIBPOSTPROC_VERSION_INT AV_VERSION_INT(LIBPOSTPROC_VERSION_MAJOR, \
...
...
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