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:
authorStefano Sabatini <stefasab@gmail.com>2016-01-27 14:46:36 +0300
committerStefano Sabatini <stefasab@gmail.com>2016-01-29 12:58:18 +0300
commitb91093a4111ffc947f3387325a377bb1694a87dd (patch)
treeec310cbd484780835da26728ca757951142c34a5 /ffmpeg.c
parente74378aa8c5371d021a71b6810a8949ec5d65856 (diff)
ffmpeg: replace "flush Media" with "flush_media" in benchmark_all output
Simplify parsing and consistency.
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 97aca10518..a5ec3c3833 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1711,11 +1711,11 @@ static void flush_encoders(void)
switch (enc->codec_type) {
case AVMEDIA_TYPE_AUDIO:
encode = avcodec_encode_audio2;
- desc = "Audio";
+ desc = "audio";
break;
case AVMEDIA_TYPE_VIDEO:
encode = avcodec_encode_video2;
- desc = "Video";
+ desc = "video";
break;
default:
stop_encoding = 1;
@@ -1731,7 +1731,7 @@ static void flush_encoders(void)
update_benchmark(NULL);
ret = encode(enc, &pkt, NULL, &got_packet);
- update_benchmark("flush %s %d.%d", desc, ost->file_index, ost->index);
+ update_benchmark("flush_%s %d.%d", desc, ost->file_index, ost->index);
if (ret < 0) {
av_log(NULL, AV_LOG_FATAL, "%s encoding failed: %s\n",
desc,