Commit b91093a4 authored by Stefano Sabatini's avatar Stefano Sabatini

ffmpeg: replace "flush Media" with "flush_media" in benchmark_all output

Simplify parsing and consistency.
parent e74378aa
...@@ -1711,11 +1711,11 @@ static void flush_encoders(void) ...@@ -1711,11 +1711,11 @@ static void flush_encoders(void)
switch (enc->codec_type) { switch (enc->codec_type) {
case AVMEDIA_TYPE_AUDIO: case AVMEDIA_TYPE_AUDIO:
encode = avcodec_encode_audio2; encode = avcodec_encode_audio2;
desc = "Audio"; desc = "audio";
break; break;
case AVMEDIA_TYPE_VIDEO: case AVMEDIA_TYPE_VIDEO:
encode = avcodec_encode_video2; encode = avcodec_encode_video2;
desc = "Video"; desc = "video";
break; break;
default: default:
stop_encoding = 1; stop_encoding = 1;
...@@ -1731,7 +1731,7 @@ static void flush_encoders(void) ...@@ -1731,7 +1731,7 @@ static void flush_encoders(void)
update_benchmark(NULL); update_benchmark(NULL);
ret = encode(enc, &pkt, NULL, &got_packet); 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) { if (ret < 0) {
av_log(NULL, AV_LOG_FATAL, "%s encoding failed: %s\n", av_log(NULL, AV_LOG_FATAL, "%s encoding failed: %s\n",
desc, desc,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment