Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
6cc05a56
Commit
6cc05a56
authored
Jul 13, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/libmpeg2.c: Fixed a major bug where the picture heap
would progressively empty on some DVDs.
parent
975daf79
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
modules/codec/libmpeg2.c
modules/codec/libmpeg2.c
+18
-4
No files found.
modules/codec/libmpeg2.c
View file @
6cc05a56
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* libmpeg2.c: mpeg2 video decoder module making use of libmpeg2.
* libmpeg2.c: mpeg2 video decoder module making use of libmpeg2.
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* Copyright (C) 1999-2001 VideoLAN
* $Id: libmpeg2.c,v 1.2
2 2003/06/10 23:01:40
massiot Exp $
* $Id: libmpeg2.c,v 1.2
3 2003/07/13 12:15:23
massiot Exp $
*
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
*
...
@@ -122,7 +122,8 @@ static int RunDecoder( decoder_fifo_t *p_fifo )
...
@@ -122,7 +122,8 @@ static int RunDecoder( decoder_fifo_t *p_fifo )
data_packet_t
*
p_data
=
NULL
;
data_packet_t
*
p_data
=
NULL
;
mpeg2_state_t
state
;
mpeg2_state_t
state
;
picture_t
*
p_pic
;
picture_t
*
p_pic
;
int
i_aspect
,
i_chroma
;
int
i_aspect
;
int
i_pic
;
/* Allocate the memory needed to store the thread's structure */
/* Allocate the memory needed to store the thread's structure */
if
(
(
p_dec
=
(
dec_thread_t
*
)
malloc
(
sizeof
(
dec_thread_t
))
)
if
(
(
p_dec
=
(
dec_thread_t
*
)
malloc
(
sizeof
(
dec_thread_t
))
)
...
@@ -279,12 +280,25 @@ static int RunDecoder( decoder_fifo_t *p_fifo )
...
@@ -279,12 +280,25 @@ static int RunDecoder( decoder_fifo_t *p_fifo )
p_dec
->
p_info
->
sequence
->
pixel_height
;
p_dec
->
p_info
->
sequence
->
pixel_height
;
}
}
i_chroma
=
VLC_FOURCC
(
'Y'
,
'V'
,
'1'
,
'2'
);
if
(
p_dec
->
p_vout
!=
NULL
)
{
/* Temporary hack to free the pictures in use by libmpeg2 */
for
(
i_pic
=
0
;
i_pic
<
p_dec
->
p_vout
->
render
.
i_pictures
;
i_pic
++
)
{
if
(
p_dec
->
p_vout
->
render
.
pp_picture
[
i_pic
]
->
i_status
==
RESERVED_PICTURE
)
vout_DestroyPicture
(
p_dec
->
p_vout
,
p_dec
->
p_vout
->
render
.
pp_picture
[
i_pic
]
);
if
(
p_dec
->
p_vout
->
render
.
pp_picture
[
i_pic
]
->
i_refcount
>
0
)
vout_UnlinkPicture
(
p_dec
->
p_vout
,
p_dec
->
p_vout
->
render
.
pp_picture
[
i_pic
]
);
}
}
p_dec
->
p_vout
=
vout_Request
(
p_dec
->
p_fifo
,
p_dec
->
p_vout
,
p_dec
->
p_vout
=
vout_Request
(
p_dec
->
p_fifo
,
p_dec
->
p_vout
,
p_dec
->
p_info
->
sequence
->
width
,
p_dec
->
p_info
->
sequence
->
width
,
p_dec
->
p_info
->
sequence
->
height
,
p_dec
->
p_info
->
sequence
->
height
,
i_chroma
,
i_aspect
);
VLC_FOURCC
(
'Y'
,
'V'
,
'1'
,
'2'
)
,
i_aspect
);
msg_Dbg
(
p_dec
->
p_fifo
,
"%dx%d, aspect %d, %u.%03u fps"
,
msg_Dbg
(
p_dec
->
p_fifo
,
"%dx%d, aspect %d, %u.%03u fps"
,
p_dec
->
p_info
->
sequence
->
width
,
p_dec
->
p_info
->
sequence
->
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