fftools/opt_common: Don't add unnecessary " "

Before:
D.AIL. smackaudio           Smacker audio (decoders: smackaud )
After:
D.AIL. smackaudio           Smacker audio (decoders: smackaud)

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2023-07-31 02:33:15 +02:00
parent 41409405d4
commit 739f24d833
1 changed files with 2 additions and 2 deletions

View File

@ -615,10 +615,10 @@ static void print_codecs_for_id(enum AVCodecID id, int encoder)
void *iter = NULL;
const AVCodec *codec;
printf(" (%s: ", encoder ? "encoders" : "decoders");
printf(" (%s:", encoder ? "encoders" : "decoders");
while ((codec = next_codec_for_id(id, &iter, encoder)))
printf("%s ", codec->name);
printf(" %s", codec->name);
printf(")");
}