Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
b93e12fd
Commit
b93e12fd
authored
May 04, 2011
by
alexandru_mg3
Committed by
Michael Niedermayer
May 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffplay: fix memleak if avfilter is disabled
parent
10ff2967
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
ffplay.c
ffplay.c
+2
-3
No files found.
ffplay.c
View file @
b93e12fd
...
...
@@ -1831,6 +1831,7 @@ static int video_thread(void *arg)
#else
ret
=
get_video_frame
(
is
,
frame
,
&
pts_int
,
&
pkt
);
pos
=
pkt
.
pos
;
av_free_packet
(
&
pkt
);
#endif
if
(
ret
<
0
)
goto
the_end
;
...
...
@@ -1841,9 +1842,7 @@ static int video_thread(void *arg)
pts
=
pts_int
*
av_q2d
(
is
->
video_st
->
time_base
);
ret
=
queue_picture
(
is
,
frame
,
pts
,
pos
);
#if !CONFIG_AVFILTER
av_free_packet
(
&
pkt
);
#endif
if
(
ret
<
0
)
goto
the_end
;
...
...
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