codec_desc: K&R formatting cosmetics

This commit is contained in:
Vittorio Giovara 2014-03-14 01:00:49 +01:00
parent 7a650caf64
commit 999d31d354

View File

@ -2282,9 +2282,8 @@ const AVCodecDescriptor *avcodec_descriptor_get_by_name(const char *name)
{
const AVCodecDescriptor *desc = NULL;
while ((desc = avcodec_descriptor_next(desc))) {
while ((desc = avcodec_descriptor_next(desc)))
if (!strcmp(desc->name, name))
return desc;
}
return NULL;
}