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
Remove useless parentheses.
Originally committed as revision 15222 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak
17 years ago
parent
6123abad2e
commit
a90fbeec2a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/ra144.c
+ 1
- 1
libavcodec/ra144.c
View File
@@ -214,7 +214,7 @@ static void int_to_int16(int16_t *out, const int *inp)
int i;
for (i=0; i < 30; i++)
*
(
out++
)
= *
(
inp++
)
;
*out++ = *inp++;
}
/**
Write
Preview
Loading…
Cancel
Save