mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avfilter/avfilter: Make ff_command_queue_pop() static
Only used here. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
55c35d84eb
commit
5a7978a694
@ -78,7 +78,7 @@ static void tlog_ref(void *ctx, AVFrame *ref, int end)
|
||||
#endif
|
||||
}
|
||||
|
||||
void ff_command_queue_pop(AVFilterContext *filter)
|
||||
static void command_queue_pop(AVFilterContext *filter)
|
||||
{
|
||||
AVFilterCommand *c= filter->command_queue;
|
||||
av_freep(&c->arg);
|
||||
@ -780,7 +780,7 @@ void avfilter_free(AVFilterContext *filter)
|
||||
av_freep(&filter->outputs);
|
||||
av_freep(&filter->priv);
|
||||
while(filter->command_queue){
|
||||
ff_command_queue_pop(filter);
|
||||
command_queue_pop(filter);
|
||||
}
|
||||
av_opt_free(filter);
|
||||
av_expr_free(filter->enable);
|
||||
@ -1494,7 +1494,7 @@ int ff_inlink_process_commands(AVFilterLink *link, const AVFrame *frame)
|
||||
"Processing command time:%f command:%s arg:%s\n",
|
||||
cmd->time, cmd->command, cmd->arg);
|
||||
avfilter_process_command(link->dst, cmd->command, cmd->arg, 0, 0, cmd->flags);
|
||||
ff_command_queue_pop(link->dst);
|
||||
command_queue_pop(link->dst);
|
||||
cmd= link->dst->command_queue;
|
||||
}
|
||||
return 0;
|
||||
|
@ -256,8 +256,6 @@ void ff_avfilter_link_set_in_status(AVFilterLink *link, int status, int64_t pts)
|
||||
*/
|
||||
void ff_avfilter_link_set_out_status(AVFilterLink *link, int status, int64_t pts);
|
||||
|
||||
void ff_command_queue_pop(AVFilterContext *filter);
|
||||
|
||||
#define D2TS(d) (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
|
||||
#define TS2D(ts) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts))
|
||||
#define TS2T(ts, tb) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts) * av_q2d(tb))
|
||||
|
Loading…
Reference in New Issue
Block a user