Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-01-03 03:15:16 +0400
committerClément Bœsch <ubitux@gmail.com>2013-01-03 03:21:47 +0400
commit491ca0e89ff9d3807f7514408ef912a608962163 (patch)
tree7c7b5fc264f83c7b1076c641d436a565c4f33c86 /libavfilter
parent43adc62e7022f912d48e08f8b94692f71d30826e (diff)
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.c20
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;
}