Commit 11e66d20 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '999d31d3'

* commit '999d31d3':
  codec_desc: K&R formatting cosmetics
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 56a498bb 999d31d3
......@@ -2661,9 +2661,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;
}
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