Commit fe414059 authored by Martin Storsjö's avatar Martin Storsjö

rtpdec_amr: Use the common indentation style

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 74d318f1
...@@ -41,7 +41,8 @@ struct PayloadContext { ...@@ -41,7 +41,8 @@ struct PayloadContext {
static PayloadContext *amr_new_context(void) static PayloadContext *amr_new_context(void)
{ {
PayloadContext *data = av_mallocz(sizeof(PayloadContext)); PayloadContext *data = av_mallocz(sizeof(PayloadContext));
if(!data) return data; if (!data)
return data;
data->channels = 1; data->channels = 1;
return data; return data;
} }
......
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