Message ID | 20230517102029.541-23-anton@khirnov.net |
---|---|
State | Accepted |
Commit | 4a59dde0c72b97515582beab4ee182be09360005 |
Headers | show |
Series | [FFmpeg-devel,01/36] fftools/ffmpeg: shorten a variable name | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | fail | Make fate failed |
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 49313edebc..62620bacce 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -1412,9 +1412,6 @@ static int process_input_packet(InputStream *ist, const AVPacket *pkt, int no_eo break; } - if (got_output) - ist->got_output = 1; - if (!got_output) break; diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 04c41a5311..3a332768df 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -413,8 +413,6 @@ typedef struct InputStream { // number of frames/samples retrieved from the decoder uint64_t frames_decoded; uint64_t samples_decoded; - - int got_output; } InputStream; typedef struct LastFrameDuration { diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c index 6f842f6b46..640ecec067 100644 --- a/fftools/ffmpeg_filter.c +++ b/fftools/ffmpeg_filter.c @@ -1700,7 +1700,7 @@ int fg_transcode_step(FilterGraph *graph, InputStream **best_ist) for (int i = 0; i < graph->nb_inputs; i++) { InputFilter *ifilter = graph->inputs[i]; InputFilterPriv *ifp = ifp_from_ifilter(ifilter); - if (!ifp->ist->got_output && !ifp->eof) { + if (ifp->format < 0 && !ifp->eof) { *best_ist = ifp->ist; return 0; }