Indent.
Originally committed as revision 13054 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0ec7b71de8
commit
1f4fa6a4ef
@ -280,13 +280,13 @@ static int decode_subframe_fixed(FLACContext *s, int channel, int pred_order)
|
|||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if(pred_order > 0)
|
if(pred_order > 0)
|
||||||
a = decoded[pred_order-1];
|
a = decoded[pred_order-1];
|
||||||
if(pred_order > 1)
|
if(pred_order > 1)
|
||||||
b = a - decoded[pred_order-2];
|
b = a - decoded[pred_order-2];
|
||||||
if(pred_order > 2)
|
if(pred_order > 2)
|
||||||
c = b - decoded[pred_order-2] + decoded[pred_order-3];
|
c = b - decoded[pred_order-2] + decoded[pred_order-3];
|
||||||
if(pred_order > 3)
|
if(pred_order > 3)
|
||||||
d = c - decoded[pred_order-2] + 2*decoded[pred_order-3] - decoded[pred_order-4];
|
d = c - decoded[pred_order-2] + 2*decoded[pred_order-3] - decoded[pred_order-4];
|
||||||
|
|
||||||
switch(pred_order)
|
switch(pred_order)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user