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
0b40153d
Commit
0b40153d
authored
Jul 16, 2012
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tscc2: DCT output should not be clipped
This fixes decoding some TSCC2 files with large quantisers.
parent
775c4d36
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
tscc2.c
libavcodec/tscc2.c
+1
-1
No files found.
libavcodec/tscc2.c
View file @
0b40153d
...
@@ -95,7 +95,7 @@ static av_cold int init_vlcs(TSCC2Context *c)
...
@@ -95,7 +95,7 @@ static av_cold int init_vlcs(TSCC2Context *c)
OP(d3, 5 * ((s0) - (s1) + (s2)) - 2 * (s3)); \
OP(d3, 5 * ((s0) - (s1) + (s2)) - 2 * (s3)); \
#define COL_OP(a, b) a = b
#define COL_OP(a, b) a = b
#define ROW_OP(a, b) a =
av_clip_uint8((((b) + 0x20) >> 6) + 0x80)
#define ROW_OP(a, b) a =
(((b) + 0x20) >> 6) + 0x80
static
void
tscc2_idct4_put
(
int
*
in
,
int
q
[
3
],
uint8_t
*
dst
,
int
stride
)
static
void
tscc2_idct4_put
(
int
*
in
,
int
q
[
3
],
uint8_t
*
dst
,
int
stride
)
{
{
...
...
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