Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
95615617
Commit
95615617
authored
Jan 08, 2002
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug in QuantMatrixExtension, many thanks to "Thomas L. Wood"
<twood@lucent.com> !
parent
85e4b3a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
12 deletions
+1
-12
plugins/mpeg_vdec/vpar_headers.c
plugins/mpeg_vdec/vpar_headers.c
+1
-12
No files found.
plugins/mpeg_vdec/vpar_headers.c
View file @
95615617
...
...
@@ -2,7 +2,7 @@
* vpar_headers.c : headers parsing
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: vpar_headers.c,v 1.
9 2002/01/02 14:37:42 sam
Exp $
* $Id: vpar_headers.c,v 1.
10 2002/01/08 23:06:12 massiot
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Stphane Borel <stef@via.ecp.fr>
...
...
@@ -1072,17 +1072,6 @@ static void QuantMatrixExtension( vpar_thread_t * p_vpar )
LoadMatrix
(
p_vpar
,
&
p_vpar
->
sequence
.
chroma_nonintra_quant
);
}
else
{
/* Link the chrominance intra matrix to the luminance one. */
LinkMatrix
(
&
p_vpar
->
sequence
.
chroma_intra_quant
,
p_vpar
->
sequence
.
intra_quant
.
pi_matrix
);
}
if
(
GetBits
(
&
p_vpar
->
bit_stream
,
1
)
)
{
/* Load non_intra_quantiser_matrix for chrominance. */
LoadMatrix
(
p_vpar
,
&
p_vpar
->
sequence
.
chroma_nonintra_quant
);
}
else
{
/* Link the chrominance nonintra matrix to the luminance one. */
LinkMatrix
(
&
p_vpar
->
sequence
.
chroma_nonintra_quant
,
...
...
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