mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-19 09:02:26 +02:00
Revert r8979 (Ugly fix for r8963)
Originally committed as revision 8983 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
803ca89ca1
commit
b3a257af27
@ -177,8 +177,8 @@ static inline void encode_from16(int bps, int le, int us,
|
|||||||
for(;n>0;n--) {
|
for(;n>0;n--) {
|
||||||
register int v = *(*samples)++;
|
register int v = *(*samples)++;
|
||||||
v += usum;
|
v += usum;
|
||||||
if (le) {AV_WL16(*dst, v);}
|
if (le) AV_WL16(*dst, v);
|
||||||
else {AV_WB16(*dst, v);}
|
else AV_WB16(*dst, v);
|
||||||
*dst += bps;
|
*dst += bps;
|
||||||
}
|
}
|
||||||
if (le) *dst -= bps - 2;
|
if (le) *dst -= bps - 2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user