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
428c59d9
Commit
428c59d9
authored
Aug 13, 2011
by
Kostya
Committed by
Anton Khirnov
Aug 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avtools: reinitialise filter chain when input video stream changes dimensions
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
24efdea7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
avconv.c
avconv.c
+13
-0
avplay.c
avplay.c
+14
-0
No files found.
avconv.c
View file @
428c59d9
...
...
@@ -1211,7 +1211,20 @@ static void do_video_out(AVFormatContext *s,
sws_scale
(
ost
->
img_resample_ctx
,
formatted_picture
->
data
,
formatted_picture
->
linesize
,
0
,
ost
->
resample_height
,
final_picture
->
data
,
final_picture
->
linesize
);
}
#else
if
(
resample_changed
)
{
avfilter_graph_free
(
&
ost
->
graph
);
if
(
configure_video_filters
(
ist
,
ost
))
{
fprintf
(
stderr
,
"Error reinitialising filters!
\n
"
);
exit_program
(
1
);
}
}
#endif
if
(
resample_changed
)
{
ost
->
resample_width
=
dec
->
width
;
ost
->
resample_height
=
dec
->
height
;
ost
->
resample_pix_fmt
=
dec
->
pix_fmt
;
}
/* duplicates frame if needed */
for
(
i
=
0
;
i
<
nb_frames
;
i
++
)
{
...
...
avplay.c
View file @
428c59d9
...
...
@@ -1755,6 +1755,8 @@ static int video_thread(void *arg)
AVFilterGraph
*
graph
=
avfilter_graph_alloc
();
AVFilterContext
*
filt_out
=
NULL
;
int64_t
pos
;
int
last_w
=
is
->
video_st
->
codec
->
width
;
int
last_h
=
is
->
video_st
->
codec
->
height
;
if
((
ret
=
configure_video_filters
(
graph
,
is
,
vfilters
))
<
0
)
goto
the_end
;
...
...
@@ -1771,6 +1773,18 @@ static int video_thread(void *arg)
while
(
is
->
paused
&&
!
is
->
videoq
.
abort_request
)
SDL_Delay
(
10
);
#if CONFIG_AVFILTER
if
(
last_w
!=
is
->
video_st
->
codec
->
width
||
last_h
!=
is
->
video_st
->
codec
->
height
)
{
av_dlog
(
NULL
,
"Changing size %dx%d -> %dx%d
\n
"
,
last_w
,
last_h
,
is
->
video_st
->
codec
->
width
,
is
->
video_st
->
codec
->
height
);
avfilter_graph_free
(
&
graph
);
graph
=
avfilter_graph_alloc
();
if
((
ret
=
configure_video_filters
(
graph
,
is
,
vfilters
))
<
0
)
goto
the_end
;
filt_out
=
is
->
out_video_filter
;
last_w
=
is
->
video_st
->
codec
->
width
;
last_h
=
is
->
video_st
->
codec
->
height
;
}
ret
=
get_filtered_video_frame
(
filt_out
,
frame
,
&
picref
,
&
tb
);
if
(
picref
)
{
pts_int
=
picref
->
pts
;
...
...
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