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
88bcdf10
Commit
88bcdf10
authored
8 years ago
by
Paul B Mahol
Browse files
Options
Downloads
Patches
Plain Diff
avfilter: hflip,swapuv,vflip: add timeline support
parent
dc7e5adb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libavfilter/vf_hflip.c
+10
-1
10 additions, 1 deletion
libavfilter/vf_hflip.c
libavfilter/vf_swapuv.c
+14
-0
14 additions, 0 deletions
libavfilter/vf_swapuv.c
libavfilter/vf_vflip.c
+10
-0
10 additions, 0 deletions
libavfilter/vf_vflip.c
with
34 additions
and
1 deletion
libavfilter/vf_hflip.c
+
10
−
1
View file @
88bcdf10
...
...
@@ -26,6 +26,7 @@
#include
<string.h>
#include
"libavutil/opt.h"
#include
"avfilter.h"
#include
"formats.h"
#include
"internal.h"
...
...
@@ -36,11 +37,18 @@
#include
"libavutil/imgutils.h"
typedef
struct
FlipContext
{
const
AVClass
*
class
;
int
max_step
[
4
];
///< max pixel step for each plane, expressed as a number of bytes
int
planewidth
[
4
];
///< width of each plane
int
planeheight
[
4
];
///< height of each plane
}
FlipContext
;
static
const
AVOption
hflip_options
[]
=
{
{
NULL
}
};
AVFILTER_DEFINE_CLASS
(
hflip
);
static
int
query_formats
(
AVFilterContext
*
ctx
)
{
AVFilterFormats
*
pix_fmts
=
NULL
;
...
...
@@ -194,8 +202,9 @@ AVFilter ff_vf_hflip = {
.
name
=
"hflip"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Horizontally flip the input video."
),
.
priv_size
=
sizeof
(
FlipContext
),
.
priv_class
=
&
hflip_class
,
.
query_formats
=
query_formats
,
.
inputs
=
avfilter_vf_hflip_inputs
,
.
outputs
=
avfilter_vf_hflip_outputs
,
.
flags
=
AVFILTER_FLAG_SLICE_THREADS
,
.
flags
=
AVFILTER_FLAG_SLICE_THREADS
|
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
,
};
This diff is collapsed.
Click to expand it.
libavfilter/vf_swapuv.c
+
14
−
0
View file @
88bcdf10
...
...
@@ -23,6 +23,7 @@
* swap UV filter
*/
#include
"libavutil/opt.h"
#include
"libavutil/pixdesc.h"
#include
"libavutil/version.h"
#include
"avfilter.h"
...
...
@@ -30,6 +31,16 @@
#include
"internal.h"
#include
"video.h"
typedef
struct
SwapUVContext
{
const
AVClass
*
class
;
}
SwapUVContext
;
static
const
AVOption
swapuv_options
[]
=
{
{
NULL
}
};
AVFILTER_DEFINE_CLASS
(
swapuv
);
static
void
do_swap
(
AVFrame
*
frame
)
{
FFSWAP
(
uint8_t
*
,
frame
->
data
[
1
],
frame
->
data
[
2
]);
...
...
@@ -110,6 +121,9 @@ AVFilter ff_vf_swapuv = {
.
name
=
"swapuv"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Swap U and V components."
),
.
query_formats
=
query_formats
,
.
priv_size
=
sizeof
(
SwapUVContext
),
.
priv_class
=
&
swapuv_class
,
.
inputs
=
swapuv_inputs
,
.
outputs
=
swapuv_outputs
,
.
flags
=
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
,
};
This diff is collapsed.
Click to expand it.
libavfilter/vf_vflip.c
+
10
−
0
View file @
88bcdf10
...
...
@@ -24,15 +24,23 @@
*/
#include
"libavutil/internal.h"
#include
"libavutil/opt.h"
#include
"libavutil/pixdesc.h"
#include
"avfilter.h"
#include
"internal.h"
#include
"video.h"
typedef
struct
FlipContext
{
const
AVClass
*
class
;
int
vsub
;
///< vertical chroma subsampling
}
FlipContext
;
static
const
AVOption
vflip_options
[]
=
{
{
NULL
}
};
AVFILTER_DEFINE_CLASS
(
vflip
);
static
int
config_input
(
AVFilterLink
*
link
)
{
FlipContext
*
flip
=
link
->
dst
->
priv
;
...
...
@@ -106,6 +114,8 @@ AVFilter ff_vf_vflip = {
.
name
=
"vflip"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Flip the input video vertically."
),
.
priv_size
=
sizeof
(
FlipContext
),
.
priv_class
=
&
vflip_class
,
.
inputs
=
avfilter_vf_vflip_inputs
,
.
outputs
=
avfilter_vf_vflip_outputs
,
.
flags
=
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
,
};
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