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
e9c3851d
Commit
e9c3851d
authored
May 26, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/bbox: use inlink->frame_count
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
477f4efd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
vf_bbox.c
libavfilter/vf_bbox.c
+2
-3
No files found.
libavfilter/vf_bbox.c
View file @
e9c3851d
...
...
@@ -30,7 +30,7 @@
#include "internal.h"
typedef
struct
{
unsigned
int
frame
;
int
unused
;
}
BBoxContext
;
static
int
query_formats
(
AVFilterContext
*
ctx
)
...
...
@@ -63,7 +63,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
h
=
box
.
y2
-
box
.
y1
+
1
;
av_log
(
ctx
,
AV_LOG_INFO
,
"n:%
d pts:%s pts_time:%s"
,
bbox
->
frame
,
"n:%
"
PRId64
" pts:%s pts_time:%s"
,
inlink
->
frame_count
,
av_ts2str
(
frame
->
pts
),
av_ts2timestr
(
frame
->
pts
,
&
inlink
->
time_base
));
if
(
has_bbox
)
{
...
...
@@ -76,7 +76,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
}
av_log
(
ctx
,
AV_LOG_INFO
,
"
\n
"
);
bbox
->
frame
++
;
return
ff_filter_frame
(
inlink
->
dst
->
outputs
[
0
],
frame
);
}
...
...
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