aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/ffmpeg_dec.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-01-23 19:53:59 +0100
committerAnton Khirnov <anton@khirnov.net>2024-01-30 09:52:00 +0100
commit0d00e2e2f7fc39152eca85c8c3e3eea95ad79fd7 (patch)
treed788ed16e49b38804cc0c31f31f4a2d18806ed96 /fftools/ffmpeg_dec.c
parentfe3be6f78fe3c9a362ad042403e4b699894d0fc2 (diff)
downloadffmpeg-0d00e2e2f7fc39152eca85c8c3e3eea95ad79fd7.tar.gz
fftools/ffmpeg_dec: eliminate all remaining InputStream uses
Previously, the demuxer would register decoder with the scheduler, using InputStream as opaque, and pass the scheduling index to the decoder. Now the registration is done by the decoder itself, using DecoderPriv as opaque, and the scheduling index is returned to demuxer from dec_open(). decoder_thread() then no longer needs to be accessed from outside of ffmpeg_dec and can be made static.
Diffstat (limited to 'fftools/ffmpeg_dec.c')
-rw-r--r--fftools/ffmpeg_dec.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/fftools/ffmpeg_dec.c b/fftools/ffmpeg_dec.c
index 49c5757e97..bf41a44f1f 100644
--- a/fftools/ffmpeg_dec.c
+++ b/fftools/ffmpeg_dec.c
@@ -645,10 +645,9 @@ fail:
return AVERROR(ENOMEM);
}
-void *decoder_thread(void *arg)
+static void *decoder_thread(void *arg)
{
- InputStream *ist = arg;
- DecoderPriv *dp = dp_from_dec(ist->decoder);
+ DecoderPriv *dp = arg;
DecThreadContext dt;
int ret = 0, input_status = 0;
@@ -692,7 +691,7 @@ void *decoder_thread(void *arg)
break;
/* report last frame duration to the scheduler */
- if (ist->dec->type == AVMEDIA_TYPE_AUDIO) {
+ if (dp->dec_ctx->codec_type == AVMEDIA_TYPE_AUDIO) {
dt.pkt->pts = dp->last_frame_pts + dp->last_frame_duration_est;
dt.pkt->time_base = dp->last_frame_tb;
}
@@ -940,7 +939,7 @@ static const AVClass dec_class = {
.item_name = dec_item_name,
};
-int dec_open(Decoder **pdec, Scheduler *sch, unsigned sch_idx,
+int dec_open(Decoder **pdec, Scheduler *sch,
AVDictionary **dec_opts, const DecoderOpts *o)
{
DecoderPriv *dp;
@@ -953,8 +952,11 @@ int dec_open(Decoder **pdec, Scheduler *sch, unsigned sch_idx,
if (ret < 0)
return ret;
+ ret = sch_add_dec(sch, decoder_thread, dp, o->flags & DECODER_FLAG_SEND_END_TS);
+ if (ret < 0)
+ return ret;
dp->sch = sch;
- dp->sch_idx = sch_idx;
+ dp->sch_idx = ret;
dp->flags = o->flags;
dp->dec.class = &dec_class;
@@ -1036,7 +1038,7 @@ int dec_open(Decoder **pdec, Scheduler *sch, unsigned sch_idx,
*pdec = &dp->dec;
- return 0;
+ return dp->sch_idx;
fail:
dec_free((Decoder**)&dp);
return ret;