FFmpeg
f_perms.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Clément Bœsch
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include "config_components.h"
22 
23 #include "libavutil/lfg.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/random_seed.h"
26 #include "audio.h"
27 #include "filters.h"
28 #include "video.h"
29 
30 enum mode {
37 };
38 
39 typedef struct PermsContext {
40  const AVClass *class;
42  int64_t random_seed;
43  int mode;
44 } PermsContext;
45 
46 #define OFFSET(x) offsetof(PermsContext, x)
47 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM
48 #define TFLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_RUNTIME_PARAM
49 
50 static const AVOption options[] = {
51  { "mode", "select permissions mode", OFFSET(mode), AV_OPT_TYPE_INT, {.i64 = MODE_NONE}, MODE_NONE, NB_MODES-1, TFLAGS, .unit = "mode" },
52  { "none", "do nothing", 0, AV_OPT_TYPE_CONST, {.i64 = MODE_NONE}, 0, 0, TFLAGS, .unit = "mode" },
53  { "ro", "set all output frames read-only", 0, AV_OPT_TYPE_CONST, {.i64 = MODE_RO}, 0, 0, TFLAGS, .unit = "mode" },
54  { "rw", "set all output frames writable", 0, AV_OPT_TYPE_CONST, {.i64 = MODE_RW}, 0, 0, TFLAGS, .unit = "mode" },
55  { "toggle", "switch permissions", 0, AV_OPT_TYPE_CONST, {.i64 = MODE_TOGGLE}, 0, 0, TFLAGS, .unit = "mode" },
56  { "random", "set permissions randomly", 0, AV_OPT_TYPE_CONST, {.i64 = MODE_RANDOM}, 0, 0, TFLAGS, .unit = "mode" },
57  { "seed", "set the seed for the random mode", OFFSET(random_seed), AV_OPT_TYPE_INT64, {.i64 = -1}, -1, UINT32_MAX, FLAGS },
58  { NULL }
59 };
60 
62 {
63  PermsContext *s = ctx->priv;
64  uint32_t seed;
65 
66  if (s->random_seed == -1)
67  s->random_seed = av_get_random_seed();
68  seed = s->random_seed;
69  av_log(ctx, AV_LOG_INFO, "random seed: 0x%08"PRIx32"\n", seed);
70  av_lfg_init(&s->lfg, seed);
71 
72  return 0;
73 }
74 
75 enum perm { RO, RW };
76 static const char * const perm_str[2] = { "RO", "RW" };
77 
79 {
80  int ret;
81  AVFilterContext *ctx = inlink->dst;
82  PermsContext *s = ctx->priv;
83  AVFrame *out = frame;
84  enum perm in_perm = av_frame_is_writable(frame) ? RW : RO;
85  enum perm out_perm;
86 
87  switch (s->mode) {
88  case MODE_TOGGLE: out_perm = in_perm == RO ? RW : RO; break;
89  case MODE_RANDOM: out_perm = av_lfg_get(&s->lfg) & 1 ? RW : RO; break;
90  case MODE_RO: out_perm = RO; break;
91  case MODE_RW: out_perm = RW; break;
92  default: out_perm = in_perm; break;
93  }
94 
95  av_log(ctx, AV_LOG_VERBOSE, "%s -> %s%s\n",
96  perm_str[in_perm], perm_str[out_perm],
97  in_perm == out_perm ? " (no-op)" : "");
98 
99  if (in_perm == RO && out_perm == RW) {
101  return ret;
102  out = frame;
103  } else if (in_perm == RW && out_perm == RO) {
105  if (!out)
106  return AVERROR(ENOMEM);
107  }
108 
109  ret = ff_filter_frame(ctx->outputs[0], out);
110 
111  if (in_perm == RW && out_perm == RO)
113  return ret;
114 }
115 
116 AVFILTER_DEFINE_CLASS_EXT(perms, "(a)perms", options);
117 
118 #if CONFIG_APERMS_FILTER
119 
120 static const AVFilterPad aperms_inputs[] = {
121  {
122  .name = "default",
123  .type = AVMEDIA_TYPE_AUDIO,
124  .filter_frame = filter_frame,
125  },
126 };
127 
128 const AVFilter ff_af_aperms = {
129  .name = "aperms",
130  .description = NULL_IF_CONFIG_SMALL("Set permissions for the output audio frame."),
131  .priv_class = &perms_class,
132  .init = init,
133  .priv_size = sizeof(PermsContext),
134  FILTER_INPUTS(aperms_inputs),
138  .process_command = ff_filter_process_command,
139 };
140 #endif /* CONFIG_APERMS_FILTER */
141 
142 #if CONFIG_PERMS_FILTER
143 
144 static const AVFilterPad perms_inputs[] = {
145  {
146  .name = "default",
147  .type = AVMEDIA_TYPE_VIDEO,
148  .filter_frame = filter_frame,
149  },
150 };
151 
152 const AVFilter ff_vf_perms = {
153  .name = "perms",
154  .description = NULL_IF_CONFIG_SMALL("Set permissions for the output video frame."),
155  .init = init,
156  .priv_size = sizeof(PermsContext),
157  FILTER_INPUTS(perms_inputs),
159  .priv_class = &perms_class,
162  .process_command = ff_filter_process_command,
163 };
164 #endif /* CONFIG_PERMS_FILTER */
MODE_NONE
@ MODE_NONE
Definition: f_perms.c:31
OFFSET
#define OFFSET(x)
Definition: f_perms.c:46
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
out
FILE * out
Definition: movenc.c:55
av_lfg_init
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
Definition: lfg.c:32
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1015
PermsContext::mode
int mode
Definition: f_perms.c:43
inlink
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
Definition: filter_design.txt:212
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:160
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:375
AVOption
AVOption.
Definition: opt.h:346
PermsContext::random_seed
int64_t random_seed
Definition: f_perms.c:42
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:196
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:170
video.h
av_get_random_seed
uint32_t av_get_random_seed(void)
Get a seed to use in conjunction with random functions.
Definition: random_seed.c:167
PermsContext::lfg
AVLFG lfg
Definition: f_perms.c:41
perm
perm
Definition: f_perms.c:75
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:33
av_cold
#define av_cold
Definition: attributes.h:90
ff_video_default_filterpad
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition: video.c:37
s
#define s(width, name)
Definition: cbs_vp9.c:198
av_lfg_get
static unsigned int av_lfg_get(AVLFG *c)
Get the next random unsigned 32-bit number using an ALFG.
Definition: lfg.h:53
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
lfg.h
AV_OPT_TYPE_INT64
@ AV_OPT_TYPE_INT64
Definition: opt.h:236
filters.h
ctx
AVFormatContext * ctx
Definition: movenc.c:49
av_frame_clone
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
Definition: frame.c:593
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:182
ff_inlink_make_frame_writable
int ff_inlink_make_frame_writable(AVFilterLink *link, AVFrame **rframe)
Make sure a frame is writable.
Definition: avfilter.c:1489
RO
@ RO
Definition: f_perms.c:75
TFLAGS
#define TFLAGS
Definition: f_perms.c:48
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
ff_audio_default_filterpad
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
Definition: audio.c:33
seed
static unsigned int seed
Definition: videogen.c:78
AVLFG
Context structure for the Lagged Fibonacci PRNG.
Definition: lfg.h:33
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
ff_af_aperms
const AVFilter ff_af_aperms
av_frame_is_writable
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
Definition: frame.c:645
ff_vf_perms
const AVFilter ff_vf_perms
PermsContext
Definition: f_perms.c:39
ff_filter_process_command
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition: avfilter.c:887
perm_str
static const char *const perm_str[2]
Definition: f_perms.c:76
MODE_TOGGLE
@ MODE_TOGGLE
Definition: f_perms.c:34
MODE_RW
@ MODE_RW
Definition: f_perms.c:33
AV_LOG_INFO
#define AV_LOG_INFO
Standard information.
Definition: log.h:191
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:147
RW
@ RW
Definition: f_perms.c:75
init
static av_cold int init(AVFilterContext *ctx)
Definition: f_perms.c:61
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:39
AVFILTER_DEFINE_CLASS_EXT
AVFILTER_DEFINE_CLASS_EXT(perms, "(a)perms", options)
MODE_RANDOM
@ MODE_RANDOM
Definition: f_perms.c:35
AVFilter
Filter definition.
Definition: avfilter.h:166
NB_MODES
@ NB_MODES
Definition: f_perms.c:36
ret
ret
Definition: filter_design.txt:187
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
FLAGS
#define FLAGS
Definition: f_perms.c:47
MODE_RO
@ MODE_RO
Definition: f_perms.c:32
random_seed.h
mode
mode
Definition: ebur128.h:83
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:235
options
static const AVOption options[]
Definition: f_perms.c:50
AVFILTER_FLAG_METADATA_ONLY
#define AVFILTER_FLAG_METADATA_ONLY
The filter is a "metadata" filter - it does not modify the frame data in any way.
Definition: avfilter.h:133
AVFilterContext
An instance of a filter.
Definition: avfilter.h:407
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: f_perms.c:78
audio.h
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:183
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:244