mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-28 13:40:55 +00:00
lavfi/movie: fix display of pushed frame information
It was broken since 7e350379f8
.
Also fix warnings:
libavfilter/src_movie.c: In function ‘describe_frame_to_str’:
libavfilter/src_movie.c:392:5: warning: ‘type’ is deprecated (declared at ./libavutil/frame.h:313) [-Wdeprecated-declarations]
libavfilter/src_movie.c:408:9: warning: ‘type’ is deprecated (declared at ./libavutil/frame.h:313) [-Wdeprecated-declarations]
This commit is contained in:
parent
bf96e547b7
commit
e756effd58
@ -386,10 +386,10 @@ static int movie_config_output_props(AVFilterLink *outlink)
|
||||
}
|
||||
|
||||
static char *describe_frame_to_str(char *dst, size_t dst_size,
|
||||
AVFrame *frame,
|
||||
AVFilterLink *link)
|
||||
AVFrame *frame, enum AVMediaType frame_type,
|
||||
AVFilterLink *link)
|
||||
{
|
||||
switch (frame->type) {
|
||||
switch (frame_type) {
|
||||
case AVMEDIA_TYPE_VIDEO:
|
||||
snprintf(dst, dst_size,
|
||||
"video pts:%s time:%s size:%dx%d aspect:%d/%d",
|
||||
@ -405,15 +405,12 @@ static char *describe_frame_to_str(char *dst, size_t dst_size,
|
||||
frame->nb_samples);
|
||||
break;
|
||||
default:
|
||||
snprintf(dst, dst_size, "%s BUG", av_get_media_type_string(frame->type));
|
||||
snprintf(dst, dst_size, "%s BUG", av_get_media_type_string(frame_type));
|
||||
break;
|
||||
}
|
||||
return dst;
|
||||
}
|
||||
|
||||
#define describe_frameref(f, link) \
|
||||
describe_frame_to_str((char[1024]){0}, 1024, f, link)
|
||||
|
||||
static int rewind_file(AVFilterContext *ctx)
|
||||
{
|
||||
MovieContext *movie = ctx->priv;
|
||||
@ -452,6 +449,7 @@ static int movie_push_frame(AVFilterContext *ctx, unsigned out_id)
|
||||
{
|
||||
MovieContext *movie = ctx->priv;
|
||||
AVPacket *pkt = &movie->pkt;
|
||||
enum AVMediaType frame_type;
|
||||
MovieStream *st;
|
||||
int ret, got_frame = 0, pkt_out_id;
|
||||
AVFilterLink *outlink;
|
||||
@ -501,7 +499,8 @@ static int movie_push_frame(AVFilterContext *ctx, unsigned out_id)
|
||||
if (!movie->frame)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
switch (st->st->codec->codec_type) {
|
||||
frame_type = st->st->codec->codec_type;
|
||||
switch (frame_type) {
|
||||
case AVMEDIA_TYPE_VIDEO:
|
||||
ret = avcodec_decode_video2(st->st->codec, movie->frame, &got_frame, pkt);
|
||||
break;
|
||||
@ -537,10 +536,10 @@ static int movie_push_frame(AVFilterContext *ctx, unsigned out_id)
|
||||
return 0;
|
||||
}
|
||||
|
||||
av_dlog(ctx, "movie_push_frame(): file:'%s' %s\n", movie->file_name,
|
||||
describe_frameref(movie->frame, outlink));
|
||||
|
||||
movie->frame->pts = av_frame_get_best_effort_timestamp(movie->frame);
|
||||
av_dlog(ctx, "movie_push_frame(): file:'%s' %s\n", movie->file_name,
|
||||
describe_frame_to_str((char[1024]){0}, 1024, movie->frame, frame_type, outlink));
|
||||
|
||||
ret = ff_filter_frame(outlink, movie->frame);
|
||||
movie->frame = NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user