Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
c86c3c80
Commit
c86c3c80
authored
Nov 09, 2011
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
smackaud: use sign_extend() for difference value instead of casting
parent
979c8de5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
smacker.c
libavcodec/smacker.c
+5
-4
No files found.
libavcodec/smacker.c
View file @
c86c3c80
...
...
@@ -33,6 +33,7 @@
#include "avcodec.h"
#include "libavutil/audioconvert.h"
#include "mathops.h"
#define ALT_BITSTREAM_READER_LE
#include "get_bits.h"
...
...
@@ -655,7 +656,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
else
res
=
0
;
val
|=
h
[
3
].
values
[
res
]
<<
8
;
pred
[
1
]
+=
(
int16_t
)
val
;
pred
[
1
]
+=
sign_extend
(
val
,
16
)
;
*
samples
++
=
pred
[
1
];
}
else
{
if
(
vlc
[
0
].
table
)
...
...
@@ -668,7 +669,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
else
res
=
0
;
val
|=
h
[
1
].
values
[
res
]
<<
8
;
pred
[
0
]
+=
val
;
pred
[
0
]
+=
sign_extend
(
val
,
16
)
;
*
samples
++
=
pred
[
0
];
}
}
...
...
@@ -683,14 +684,14 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
res
=
get_vlc2
(
&
gb
,
vlc
[
1
].
table
,
SMKTREE_BITS
,
3
);
else
res
=
0
;
pred
[
1
]
+=
(
int8_t
)
h
[
1
].
values
[
res
]
;
pred
[
1
]
+=
sign_extend
(
h
[
1
].
values
[
res
],
8
)
;
*
samples8
++
=
pred
[
1
];
}
else
{
if
(
vlc
[
0
].
table
)
res
=
get_vlc2
(
&
gb
,
vlc
[
0
].
table
,
SMKTREE_BITS
,
3
);
else
res
=
0
;
pred
[
0
]
+=
(
int8_t
)
h
[
0
].
values
[
res
]
;
pred
[
0
]
+=
sign_extend
(
h
[
0
].
values
[
res
],
8
)
;
*
samples8
++
=
pred
[
0
];
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment