mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-02-04 14:30:55 +08:00
avfilter: use the new AVFrame key_frame flag in all filters
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -59,7 +59,7 @@ static void tlog_ref(void *ctx, AVFrame *ref, int end)
|
||||
ref->width, ref->height,
|
||||
!(ref->flags & AV_FRAME_FLAG_INTERLACED) ? 'P' : /* Progressive */
|
||||
(ref->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST) ? 'T' : 'B', /* Top / Bottom */
|
||||
ref->key_frame,
|
||||
!!(ref->flags & AV_FRAME_FLAG_KEY),
|
||||
av_get_picture_type_char(ref->pict_type));
|
||||
}
|
||||
if (ref->nb_samples) {
|
||||
|
||||
Reference in New Issue
Block a user