Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
8c75a338
Commit
8c75a338
authored
9 years ago
by
Michael Niedermayer
Browse files
Options
Downloads
Patches
Plain Diff
postproc: Deprecate QP_STORE_T, it lacks a PP/AV/FF prefix
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
0eb896b3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libpostproc/postprocess.h
+4
-2
4 additions, 2 deletions
libpostproc/postprocess.h
libpostproc/version.h
+4
-0
4 additions, 0 deletions
libpostproc/version.h
with
8 additions
and
2 deletions
libpostproc/postprocess.h
+
4
−
2
View file @
8c75a338
...
@@ -51,7 +51,9 @@ const char *postproc_license(void);
...
@@ -51,7 +51,9 @@ const char *postproc_license(void);
#define PP_QUALITY_MAX 6
#define PP_QUALITY_MAX 6
#define QP_STORE_T int8_t
#if FF_API_QP_TYPE
#define QP_STORE_T int8_t //deprecated
#endif
#include
<inttypes.h>
#include
<inttypes.h>
...
@@ -69,7 +71,7 @@ extern const char pp_help[]; ///< a simple help text
...
@@ -69,7 +71,7 @@ extern const char pp_help[]; ///< a simple help text
void
pp_postprocess
(
const
uint8_t
*
src
[
3
],
const
int
srcStride
[
3
],
void
pp_postprocess
(
const
uint8_t
*
src
[
3
],
const
int
srcStride
[
3
],
uint8_t
*
dst
[
3
],
const
int
dstStride
[
3
],
uint8_t
*
dst
[
3
],
const
int
dstStride
[
3
],
int
horizontalSize
,
int
verticalSize
,
int
horizontalSize
,
int
verticalSize
,
const
QP_STORE_T
*
QP_store
,
int
QP_stride
,
const
int8_t
*
QP_store
,
int
QP_stride
,
pp_mode
*
mode
,
pp_context
*
ppContext
,
int
pict_type
);
pp_mode
*
mode
,
pp_context
*
ppContext
,
int
pict_type
);
...
...
This diff is collapsed.
Click to expand it.
libpostproc/version.h
+
4
−
0
View file @
8c75a338
...
@@ -42,4 +42,8 @@
...
@@ -42,4 +42,8 @@
#define LIBPOSTPROC_IDENT "postproc" AV_STRINGIFY(LIBPOSTPROC_VERSION)
#define LIBPOSTPROC_IDENT "postproc" AV_STRINGIFY(LIBPOSTPROC_VERSION)
#ifndef FF_API_QP_TYPE
#define FF_API_QP_TYPE (LIBPOSTPROC_VERSION_MAJOR < 55)
#endif
#endif
/* POSTPROC_POSTPROCESS_VERSION_H */
#endif
/* POSTPROC_POSTPROCESS_VERSION_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment