diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-01-03 00:15:16 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-01-03 00:21:47 +0100 |
commit | 491ca0e89ff9d3807f7514408ef912a608962163 (patch) | |
tree | 7c7b5fc264f83c7b1076c641d436a565c4f33c86 /libavfilter | |
parent | 43adc62e7022f912d48e08f8b94692f71d30826e (diff) | |
download | ffmpeg-491ca0e89ff9d3807f7514408ef912a608962163.tar.gz |
Replace references to "que" with the appropriate word.
"que" sounds like a slang word to me. This commit renames a few
variables, fix the comments and the logging messages (sometimes along
with small other typo fixes).
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfiltergraph.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 10f9b7e7d6..c05bbb7fe6 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -1001,16 +1001,16 @@ int avfilter_graph_queue_command(AVFilterGraph *graph, const char *target, const for (i = 0; i < graph->filter_count; i++) { AVFilterContext *filter = graph->filters[i]; if(filter && (!strcmp(target, "all") || !strcmp(target, filter->name) || !strcmp(target, filter->filter->name))){ - AVFilterCommand **que = &filter->command_queue, *next; - while(*que && (*que)->time <= ts) - que = &(*que)->next; - next= *que; - *que= av_mallocz(sizeof(AVFilterCommand)); - (*que)->command = av_strdup(command); - (*que)->arg = av_strdup(arg); - (*que)->time = ts; - (*que)->flags = flags; - (*que)->next = next; + AVFilterCommand **queue = &filter->command_queue, *next; + while (*queue && (*queue)->time <= ts) + queue = &(*queue)->next; + next = *queue; + *queue = av_mallocz(sizeof(AVFilterCommand)); + (*queue)->command = av_strdup(command); + (*queue)->arg = av_strdup(arg); + (*queue)->time = ts; + (*queue)->flags = flags; + (*queue)->next = next; if(flags & AVFILTER_CMD_FLAG_ONE) return 0; } |