mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 07:31:22 +01:00
avcodec/tta: fix macro ()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f240740712
commit
925bd174f2
2 changed files with 2 additions and 2 deletions
|
|
@ -312,7 +312,7 @@ static int tta_decode_frame(AVCodecContext *avctx, void *data,
|
|||
filter->shift, filter->round);
|
||||
|
||||
// fixed order prediction
|
||||
#define PRED(x, k) (int32_t)((((uint64_t)x << k) - x) >> k)
|
||||
#define PRED(x, k) (int32_t)((((uint64_t)(x) << (k)) - (x)) >> (k))
|
||||
switch (s->bps) {
|
||||
case 1: *p += PRED(*predictor, 4); break;
|
||||
case 2:
|
||||
|
|
|
|||
|
|
@ -144,7 +144,7 @@ static int tta_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
|
|||
}
|
||||
|
||||
temp = value;
|
||||
#define PRED(x, k) (int32_t)((((uint64_t)x << k) - x) >> k)
|
||||
#define PRED(x, k) (int32_t)((((uint64_t)(x) << (k)) - (x)) >> (k))
|
||||
switch (s->bps) {
|
||||
case 1: value -= PRED(c->predictor, 4); break;
|
||||
case 2:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue