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
76c5e75c
Commit
76c5e75c
authored
Sep 04, 2001
by
Jon Lech Johansen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed a problem with field streams not working with new video decoder.
parent
985a4b90
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/video_decoder/vpar_blocks.c
src/video_decoder/vpar_blocks.c
+3
-2
No files found.
src/video_decoder/vpar_blocks.c
View file @
76c5e75c
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* vpar_blocks.c : blocks parsing
* vpar_blocks.c : blocks parsing
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: vpar_blocks.c,v 1.
7 2001/08/23 10:08:26 massiot
Exp $
* $Id: vpar_blocks.c,v 1.
8 2001/09/04 23:21:34 jlj
Exp $
*
*
* Authors: Michel Lespinasse <walken@zoy.org>
* Authors: Michel Lespinasse <walken@zoy.org>
* Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
...
@@ -1812,7 +1812,8 @@ static __inline__ void ParseSlice( vpar_thread_t * p_vpar,
...
@@ -1812,7 +1812,8 @@ static __inline__ void ParseSlice( vpar_thread_t * p_vpar,
pp_forward_ref
[
!
p_vpar
->
picture
.
b_current_field
]
=
pp_forward_ref
[
!
p_vpar
->
picture
.
b_current_field
]
=
p_vpar
->
picture
.
p_picture
;
p_vpar
->
picture
.
p_picture
;
}
}
if
(
i_coding_type
!=
I_CODING_TYPE
||
p_vpar
->
picture
.
b_concealment_mv
)
if
(
(
i_coding_type
!=
I_CODING_TYPE
||
p_vpar
->
picture
.
b_concealment_mv
)
&&
pp_forward_ref
[
1
]
!=
NULL
)
{
{
p_f_motion
->
pppi_ref
[
1
][
0
]
=
p_f_motion
->
pppi_ref
[
1
][
0
]
=
pp_forward_ref
[
1
]
->
p_y
+
i_offset
*
4
+
i_width
;
pp_forward_ref
[
1
]
->
p_y
+
i_offset
*
4
+
i_width
;
...
...
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