mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffprobe: remove unused variable in show_format()
This commit is contained in:
parent
4c5c0609c1
commit
55ed19bf3b
@ -1305,7 +1305,6 @@ static void show_format(WriterContext *w, AVFormatContext *fmt_ctx)
|
|||||||
{
|
{
|
||||||
char val_str[128];
|
char val_str[128];
|
||||||
int64_t size = avio_size(fmt_ctx->pb);
|
int64_t size = avio_size(fmt_ctx->pb);
|
||||||
struct print_buf pbuf = {.s = NULL};
|
|
||||||
|
|
||||||
print_section_header("format");
|
print_section_header("format");
|
||||||
print_str("filename", fmt_ctx->filename);
|
print_str("filename", fmt_ctx->filename);
|
||||||
@ -1320,7 +1319,6 @@ static void show_format(WriterContext *w, AVFormatContext *fmt_ctx)
|
|||||||
else print_str_opt("bit_rate", "N/A");
|
else print_str_opt("bit_rate", "N/A");
|
||||||
show_tags(fmt_ctx->metadata);
|
show_tags(fmt_ctx->metadata);
|
||||||
print_section_footer("format");
|
print_section_footer("format");
|
||||||
av_free(pbuf.s);
|
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user