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
4c9f2398
Commit
4c9f2398
authored
Nov 27, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./modules/codec/cinepak/cinepak.c: fixed V1-encoded blocks luma loading.
parent
e042941f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/codec/cinepak/cinepak.c
modules/codec/cinepak/cinepak.c
+5
-5
No files found.
modules/codec/cinepak/cinepak.c
View file @
4c9f2398
...
...
@@ -2,7 +2,7 @@
* cinepak.c: cinepak video decoder
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: cinepak.c,v 1.
7 2002/11/27 13:17:27 fenrir
Exp $
* $Id: cinepak.c,v 1.
8 2002/11/27 15:18:24 sam
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -392,13 +392,13 @@ void cinepak_Getv1( cinepak_context_t *p_context,
for
(
j
=
0
;
j
<
2
;
j
++
)
{
PIX_SET_Y
(
2
*
j
+
0
,
2
*
i
+
0
,
p_context
->
codebook_v1
[
i_strip
][
i_index
].
i_y
[
0
]
);
p_context
->
codebook_v1
[
i_strip
][
i_index
].
i_y
[
2
*
i
+
j
]
);
PIX_SET_Y
(
2
*
j
+
1
,
2
*
i
+
0
,
p_context
->
codebook_v1
[
i_strip
][
i_index
].
i_y
[
1
]
);
p_context
->
codebook_v1
[
i_strip
][
i_index
].
i_y
[
2
*
i
+
j
]
);
PIX_SET_Y
(
2
*
j
+
0
,
2
*
i
+
1
,
p_context
->
codebook_v1
[
i_strip
][
i_index
].
i_y
[
2
]
);
p_context
->
codebook_v1
[
i_strip
][
i_index
].
i_y
[
2
*
i
+
j
]
);
PIX_SET_Y
(
2
*
j
+
1
,
2
*
i
+
1
,
p_context
->
codebook_v1
[
i_strip
][
i_index
].
i_y
[
3
]
);
p_context
->
codebook_v1
[
i_strip
][
i_index
].
i_y
[
2
*
i
+
j
]
);
PIX_SET_UV
(
1
,
p_dst_u
,
j
,
i
,
p_context
->
codebook_v1
[
i_strip
][
i_index
].
i_u
);
...
...
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