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 /libavformat/utils.c | |
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 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 096bb82713..195814b9b3 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1056,11 +1056,11 @@ static void update_initial_durations(AVFormatContext *s, AVStream *st, } } if(pktl && pktl->pkt.dts != st->first_dts) { - av_log(s, AV_LOG_DEBUG, "first_dts %s not matching first dts %s in que\n", av_ts2str(st->first_dts), av_ts2str(pktl->pkt.dts)); + av_log(s, AV_LOG_DEBUG, "first_dts %s not matching first dts %s in the queue\n", av_ts2str(st->first_dts), av_ts2str(pktl->pkt.dts)); return; } if(!pktl) { - av_log(s, AV_LOG_DEBUG, "first_dts %s but no packet with dts in ques\n", av_ts2str(st->first_dts)); + av_log(s, AV_LOG_DEBUG, "first_dts %s but no packet with dts in the queue\n", av_ts2str(st->first_dts)); return; } pktl= s->parse_queue ? s->parse_queue : s->packet_buffer; |