This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
rtpdec_amr: Use the common indentation style
Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n2.6
Martin Storsjö
10 years ago
parent
74d318f138
commit
fe414059ec
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
libavformat/rtpdec_amr.c
+ 2
- 1
libavformat/rtpdec_amr.c
View File
@@ -41,7 +41,8 @@ struct PayloadContext {
static PayloadContext *amr_new_context(void)
{
PayloadContext *data = av_mallocz(sizeof(PayloadContext));
if(!data) return data;
if (!data)
return data;
data->channels = 1;
return data;
}
Write
Preview
Loading…
Cancel
Save