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
d0aa974e
Commit
d0aa974e
authored
Oct 14, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/ffmpeg/video_filter.c: fixed cases where pictures weren't released properly.
parent
59de4738
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
modules/codec/ffmpeg/video_filter.c
modules/codec/ffmpeg/video_filter.c
+1
-0
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+3
-0
modules/video_filter/scale.c
modules/video_filter/scale.c
+1
-0
No files found.
modules/codec/ffmpeg/video_filter.c
View file @
d0aa974e
...
...
@@ -203,6 +203,7 @@ static picture_t *Process( filter_t *p_filter, picture_t *p_pic )
if
(
!
p_pic_dst
)
{
msg_Warn
(
p_filter
,
"can't get output picture"
);
p_pic
->
pf_release
(
p_pic
);
return
NULL
;
}
...
...
modules/stream_out/transcode.c
View file @
d0aa974e
...
...
@@ -1438,6 +1438,7 @@ static int transcode_video_process( sout_stream_t *p_stream,
msg_Dbg( p_stream, "dropping frame (%i)",
(int)(i_video_drift - i_master_drift) );
#endif
p_pic
->
pf_release
(
p_pic
);
return
VLC_EGENERIC
;
}
else
if
(
i_video_drift
>
i_master_drift
+
50000
)
...
...
@@ -1456,6 +1457,7 @@ static int transcode_video_process( sout_stream_t *p_stream,
{
transcode_video_close
(
p_stream
,
id
);
id
->
b_transcode
=
VLC_FALSE
;
p_pic
->
pf_release
(
p_pic
);
return
VLC_EGENERIC
;
}
...
...
@@ -1534,6 +1536,7 @@ static int transcode_video_process( sout_stream_t *p_stream,
transcode_video_close
(
p_stream
,
id
);
id
->
b_transcode
=
VLC_FALSE
;
p_pic
->
pf_release
(
p_pic
);
return
VLC_EGENERIC
;
}
}
...
...
modules/video_filter/scale.c
View file @
d0aa974e
...
...
@@ -112,6 +112,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
if
(
!
p_pic_dst
)
{
msg_Warn
(
p_filter
,
"can't get output picture"
);
p_pic
->
pf_release
(
p_pic
);
return
NULL
;
}
...
...
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