projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
60c4a31
)
Minor simplification
author
Vitor Sessak
<vitor1001@gmail.com>
Wed, 18 Jul 2007 14:37:39 +0000
(14:37 +0000)
committer
Vitor Sessak
<vitor1001@gmail.com>
Wed, 18 Jul 2007 14:37:39 +0000
(14:37 +0000)
Originally committed as revision 9738 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/alac.c
patch
|
blob
|
history
diff --git
a/libavcodec/alac.c
b/libavcodec/alac.c
index 040206516ac4b920f696a89563f388105e5b927c..0e4f100f9277515905e5911fa286c56ee94bf028 100644
(file)
--- a/
libavcodec/alac.c
+++ b/
libavcodec/alac.c
@@
-421,8
+421,7
@@
static void deinterlace_16(int32_t *buffer_a, int32_t *buffer_b,
right = midright - ((difference * interlacing_leftweight) >> interlacing_shift);
- left = (midright - ((difference * interlacing_leftweight) >> interlacing_shift))
- + difference;
+ left = right + difference;
buffer_out[i*numchannels] = left;
buffer_out[i*numchannels + 1] = right;