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
09a1416d
Commit
09a1416d
authored
Apr 16, 2011
by
Roger Pau Monné
Committed by
Carl Eugen Hoyos
Apr 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add key_frame and pict_type to AVFilterBufferRefVideo.
parent
d3b379b9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
cmdutils.c
cmdutils.c
+2
-0
avfilter.h
libavfilter/avfilter.h
+3
-1
vsrc_buffer.c
libavfilter/vsrc_buffer.c
+4
-0
No files found.
cmdutils.c
View file @
09a1416d
...
...
@@ -827,6 +827,8 @@ int get_filtered_video_frame(AVFilterContext *ctx, AVFrame *frame,
memcpy
(
frame
->
linesize
,
picref
->
linesize
,
sizeof
(
frame
->
linesize
));
frame
->
interlaced_frame
=
picref
->
video
->
interlaced
;
frame
->
top_field_first
=
picref
->
video
->
top_field_first
;
frame
->
key_frame
=
picref
->
video
->
key_frame
;
frame
->
pict_type
=
picref
->
video
->
pict_type
;
return
1
;
}
...
...
libavfilter/avfilter.h
View file @
09a1416d
...
...
@@ -26,7 +26,7 @@
#include "libavutil/samplefmt.h"
#define LIBAVFILTER_VERSION_MAJOR 1
#define LIBAVFILTER_VERSION_MINOR 7
8
#define LIBAVFILTER_VERSION_MINOR 7
9
#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
...
...
@@ -115,6 +115,8 @@ typedef struct AVFilterBufferRefVideoProps {
AVRational
pixel_aspect
;
///< pixel aspect ratio
int
interlaced
;
///< is frame interlaced
int
top_field_first
;
///< field order
int
pict_type
;
///< Picture type of the frame
int
key_frame
;
///< 1 -> keyframe, 0-> not
}
AVFilterBufferRefVideoProps
;
/**
...
...
libavfilter/vsrc_buffer.c
View file @
09a1416d
...
...
@@ -93,6 +93,8 @@ int av_vsrc_buffer_add_frame2(AVFilterContext *buffer_filter, AVFrame *frame,
memcpy
(
c
->
frame
.
linesize
,
frame
->
linesize
,
sizeof
(
frame
->
linesize
));
c
->
frame
.
interlaced_frame
=
frame
->
interlaced_frame
;
c
->
frame
.
top_field_first
=
frame
->
top_field_first
;
c
->
frame
.
key_frame
=
frame
->
key_frame
;
c
->
frame
.
pict_type
=
frame
->
pict_type
;
c
->
pts
=
pts
;
c
->
pixel_aspect
=
pixel_aspect
;
c
->
has_frame
=
1
;
...
...
@@ -182,6 +184,8 @@ static int request_frame(AVFilterLink *link)
picref
->
video
->
pixel_aspect
=
c
->
pixel_aspect
;
picref
->
video
->
interlaced
=
c
->
frame
.
interlaced_frame
;
picref
->
video
->
top_field_first
=
c
->
frame
.
top_field_first
;
picref
->
video
->
key_frame
=
c
->
frame
.
key_frame
;
picref
->
video
->
pict_type
=
c
->
frame
.
pict_type
;
avfilter_start_frame
(
link
,
avfilter_ref_buffer
(
picref
,
~
0
));
avfilter_draw_slice
(
link
,
0
,
link
->
h
,
1
);
avfilter_end_frame
(
link
);
...
...
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