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
f0da370a
Commit
f0da370a
authored
Mar 13, 2013
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
examples/filtering_video: update to new API
In particular, fix crash.
parent
7a71544f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
20 deletions
+18
-20
filtering_video.c
doc/examples/filtering_video.c
+18
-20
No files found.
doc/examples/filtering_video.c
View file @
f0da370a
...
@@ -138,33 +138,33 @@ static int init_filters(const char *filters_descr)
...
@@ -138,33 +138,33 @@ static int init_filters(const char *filters_descr)
return
0
;
return
0
;
}
}
static
void
display_
picref
(
AVFilterBufferRef
*
picref
,
AVRational
time_base
)
static
void
display_
frame
(
AVFrame
*
frame
,
AVRational
time_base
)
{
{
int
x
,
y
;
int
x
,
y
;
uint8_t
*
p0
,
*
p
;
uint8_t
*
p0
,
*
p
;
int64_t
delay
;
int64_t
delay
;
if
(
picref
->
pts
!=
AV_NOPTS_VALUE
)
{
if
(
frame
->
pts
!=
AV_NOPTS_VALUE
)
{
if
(
last_pts
!=
AV_NOPTS_VALUE
)
{
if
(
last_pts
!=
AV_NOPTS_VALUE
)
{
/* sleep roughly the right amount of time;
/* sleep roughly the right amount of time;
* usleep is in microseconds, just like AV_TIME_BASE. */
* usleep is in microseconds, just like AV_TIME_BASE. */
delay
=
av_rescale_q
(
picref
->
pts
-
last_pts
,
delay
=
av_rescale_q
(
frame
->
pts
-
last_pts
,
time_base
,
AV_TIME_BASE_Q
);
time_base
,
AV_TIME_BASE_Q
);
if
(
delay
>
0
&&
delay
<
1000000
)
if
(
delay
>
0
&&
delay
<
1000000
)
usleep
(
delay
);
usleep
(
delay
);
}
}
last_pts
=
picref
->
pts
;
last_pts
=
frame
->
pts
;
}
}
/* Trivial ASCII grayscale display. */
/* Trivial ASCII grayscale display. */
p0
=
picref
->
data
[
0
];
p0
=
frame
->
data
[
0
];
puts
(
"
\033
c"
);
puts
(
"
\033
c"
);
for
(
y
=
0
;
y
<
picref
->
video
->
h
;
y
++
)
{
for
(
y
=
0
;
y
<
frame
->
height
;
y
++
)
{
p
=
p0
;
p
=
p0
;
for
(
x
=
0
;
x
<
picref
->
video
->
w
;
x
++
)
for
(
x
=
0
;
x
<
frame
->
width
;
x
++
)
putchar
(
" .-+#"
[
*
(
p
++
)
/
52
]);
putchar
(
" .-+#"
[
*
(
p
++
)
/
52
]);
putchar
(
'\n'
);
putchar
(
'\n'
);
p0
+=
picref
->
linesize
[
0
];
p0
+=
frame
->
linesize
[
0
];
}
}
fflush
(
stdout
);
fflush
(
stdout
);
}
}
...
@@ -173,10 +173,11 @@ int main(int argc, char **argv)
...
@@ -173,10 +173,11 @@ int main(int argc, char **argv)
{
{
int
ret
;
int
ret
;
AVPacket
packet
;
AVPacket
packet
;
AVFrame
*
frame
=
avcodec_alloc_frame
();
AVFrame
*
frame
=
av_frame_alloc
();
AVFrame
*
filt_frame
=
av_frame_alloc
();
int
got_frame
;
int
got_frame
;
if
(
!
frame
)
{
if
(
!
frame
||
!
filt_frame
)
{
perror
(
"Could not allocate frame"
);
perror
(
"Could not allocate frame"
);
exit
(
1
);
exit
(
1
);
}
}
...
@@ -196,7 +197,6 @@ int main(int argc, char **argv)
...
@@ -196,7 +197,6 @@ int main(int argc, char **argv)
/* read all packets */
/* read all packets */
while
(
1
)
{
while
(
1
)
{
AVFilterBufferRef
*
picref
;
if
((
ret
=
av_read_frame
(
fmt_ctx
,
&
packet
))
<
0
)
if
((
ret
=
av_read_frame
(
fmt_ctx
,
&
packet
))
<
0
)
break
;
break
;
...
@@ -213,23 +213,20 @@ int main(int argc, char **argv)
...
@@ -213,23 +213,20 @@ int main(int argc, char **argv)
frame
->
pts
=
av_frame_get_best_effort_timestamp
(
frame
);
frame
->
pts
=
av_frame_get_best_effort_timestamp
(
frame
);
/* push the decoded frame into the filtergraph */
/* push the decoded frame into the filtergraph */
if
(
av_buffersrc_add_frame
(
buffersrc_ctx
,
frame
)
<
0
)
{
if
(
av_buffersrc_add_frame
_flags
(
buffersrc_ctx
,
frame
,
AV_BUFFERSRC_FLAG_KEEP_REF
)
<
0
)
{
av_log
(
NULL
,
AV_LOG_ERROR
,
"Error while feeding the filtergraph
\n
"
);
av_log
(
NULL
,
AV_LOG_ERROR
,
"Error while feeding the filtergraph
\n
"
);
break
;
break
;
}
}
/* pull filtered
pictur
es from the filtergraph */
/* pull filtered
fram
es from the filtergraph */
while
(
1
)
{
while
(
1
)
{
ret
=
av_buffersink_get_
buffer_ref
(
buffersink_ctx
,
&
picref
,
0
);
ret
=
av_buffersink_get_
frame
(
buffersink_ctx
,
filt_frame
);
if
(
ret
==
AVERROR
(
EAGAIN
)
||
ret
==
AVERROR_EOF
)
if
(
ret
==
AVERROR
(
EAGAIN
)
||
ret
==
AVERROR_EOF
)
break
;
break
;
if
(
ret
<
0
)
if
(
ret
<
0
)
goto
end
;
goto
end
;
display_frame
(
filt_frame
,
buffersink_ctx
->
inputs
[
0
]
->
time_base
);
if
(
picref
)
{
av_frame_unref
(
filt_frame
);
display_picref
(
picref
,
buffersink_ctx
->
inputs
[
0
]
->
time_base
);
avfilter_unref_bufferp
(
&
picref
);
}
}
}
}
}
}
}
...
@@ -240,7 +237,8 @@ end:
...
@@ -240,7 +237,8 @@ end:
if
(
dec_ctx
)
if
(
dec_ctx
)
avcodec_close
(
dec_ctx
);
avcodec_close
(
dec_ctx
);
avformat_close_input
(
&
fmt_ctx
);
avformat_close_input
(
&
fmt_ctx
);
av_freep
(
&
frame
);
av_frame_free
(
&
frame
);
av_frame_free
(
&
filt_frame
);
if
(
ret
<
0
&&
ret
!=
AVERROR_EOF
)
{
if
(
ret
<
0
&&
ret
!=
AVERROR_EOF
)
{
char
buf
[
1024
];
char
buf
[
1024
];
...
...
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