mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
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:
parent
41409405d4
commit
739f24d833
1 changed files with 2 additions and 2 deletions
|
|
@ -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(")");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue