Coverage Report

Created: 2026-07-30 07:17

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavcodec/decode.c
Line
Count
Source
1
/*
2
 * generic decoding-related code
3
 *
4
 * This file is part of FFmpeg.
5
 *
6
 * FFmpeg is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU Lesser General Public
8
 * License as published by the Free Software Foundation; either
9
 * version 2.1 of the License, or (at your option) any later version.
10
 *
11
 * FFmpeg is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 * Lesser General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with FFmpeg; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
 */
20
21
#include <assert.h>
22
#include <stdint.h>
23
#include <stdbool.h>
24
#include <string.h>
25
26
#include "config.h"
27
28
#if CONFIG_ICONV
29
# include <iconv.h>
30
#endif
31
32
#include "libavutil/avassert.h"
33
#include "libavutil/channel_layout.h"
34
#include "libavutil/common.h"
35
#include "libavutil/emms.h"
36
#include "libavutil/frame.h"
37
#include "libavutil/hwcontext.h"
38
#include "libavutil/imgutils.h"
39
#include "libavutil/internal.h"
40
#include "libavutil/mastering_display_metadata.h"
41
#include "libavutil/mem.h"
42
#include "libavutil/stereo3d.h"
43
44
#include "avcodec.h"
45
#include "avcodec_internal.h"
46
#include "bytestream.h"
47
#include "bsf.h"
48
#include "codec_desc.h"
49
#include "codec_internal.h"
50
#include "decode.h"
51
#include "exif.h"
52
#include "exif_internal.h"
53
#include "hwaccel_internal.h"
54
#include "hwconfig.h"
55
#include "internal.h"
56
#include "lcevcdec.h"
57
#include "packet_internal.h"
58
#include "progressframe.h"
59
#include "libavutil/refstruct.h"
60
#include "thread.h"
61
#include "threadprogress.h"
62
63
typedef struct DecodeContext {
64
    AVCodecInternal avci;
65
66
    /**
67
     * This is set to AV_FRAME_FLAG_KEY for decoders of intra-only formats
68
     * (those whose codec descriptor has AV_CODEC_PROP_INTRA_ONLY set)
69
     * to set the flag generically.
70
     */
71
    int intra_only_flag;
72
73
    /**
74
     * This is set to AV_PICTURE_TYPE_I for intra only video decoders
75
     * and to AV_PICTURE_TYPE_NONE for other decoders. It is used to set
76
     * the AVFrame's pict_type before the decoder receives it.
77
     */
78
    enum AVPictureType initial_pict_type;
79
80
    /* to prevent infinite loop on errors when draining */
81
    int nb_draining_errors;
82
83
    /**
84
     * The caller has submitted a NULL packet on input.
85
     */
86
    int draining_started;
87
88
    int64_t pts_correction_num_faulty_pts; /// Number of incorrect PTS values so far
89
    int64_t pts_correction_num_faulty_dts; /// Number of incorrect DTS values so far
90
    int64_t pts_correction_last_pts;       /// PTS of the last frame
91
    int64_t pts_correction_last_dts;       /// DTS of the last frame
92
93
    /**
94
     * Bitmask indicating for which side data types we prefer user-supplied
95
     * (global or attached to packets) side data over bytestream.
96
     */
97
    uint64_t side_data_pref_mask;
98
99
#if CONFIG_LIBLCEVC_DEC
100
    struct {
101
        FFLCEVCContext *ctx;
102
        int frame;
103
        enum AVPixelFormat format;
104
        int base_width;
105
        int base_height;
106
        int width;
107
        int height;
108
    } lcevc;
109
#endif
110
} DecodeContext;
111
112
static DecodeContext *decode_ctx(AVCodecInternal *avci)
113
0
{
114
0
    return (DecodeContext *)avci;
115
0
}
116
117
static int apply_param_change(AVCodecContext *avctx, const AVPacket *avpkt)
118
0
{
119
0
    int ret;
120
0
    size_t size;
121
0
    const uint8_t *data;
122
0
    uint32_t flags;
123
0
    int64_t val;
124
125
0
    data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
126
0
    if (!data)
127
0
        return 0;
128
129
0
    if (!(avctx->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE)) {
130
0
        av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
131
0
               "changes, but PARAM_CHANGE side data was sent to it.\n");
132
0
        ret = AVERROR(EINVAL);
133
0
        goto fail2;
134
0
    }
135
136
0
    if (size < 4)
137
0
        goto fail;
138
139
0
    flags = bytestream_get_le32(&data);
140
0
    size -= 4;
141
142
0
    if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
143
0
        if (size < 4)
144
0
            goto fail;
145
0
        val = bytestream_get_le32(&data);
146
0
        if (val <= 0 || val > INT_MAX) {
147
0
            av_log(avctx, AV_LOG_ERROR, "Invalid sample rate");
148
0
            ret = AVERROR_INVALIDDATA;
149
0
            goto fail2;
150
0
        }
151
0
        avctx->sample_rate = val;
152
0
        size -= 4;
153
0
    }
154
0
    if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
155
0
        if (size < 8)
156
0
            goto fail;
157
0
        avctx->width  = bytestream_get_le32(&data);
158
0
        avctx->height = bytestream_get_le32(&data);
159
0
        size -= 8;
160
0
        ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
161
0
        if (ret < 0)
162
0
            goto fail2;
163
0
    }
164
165
0
    return 0;
166
0
fail:
167
0
    av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
168
0
    ret = AVERROR_INVALIDDATA;
169
0
fail2:
170
0
    if (ret < 0) {
171
0
        av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
172
0
        if (avctx->err_recognition & AV_EF_EXPLODE)
173
0
            return ret;
174
0
    }
175
0
    return 0;
176
0
}
177
178
static int extract_packet_props(AVCodecInternal *avci, const AVPacket *pkt)
179
0
{
180
0
    int ret = 0;
181
182
0
    av_packet_unref(avci->last_pkt_props);
183
0
    if (pkt) {
184
0
        ret = av_packet_copy_props(avci->last_pkt_props, pkt);
185
0
    }
186
0
    return ret;
187
0
}
188
189
static int decode_bsfs_init(AVCodecContext *avctx)
190
0
{
191
0
    AVCodecInternal *avci = avctx->internal;
192
0
    const FFCodec *const codec = ffcodec(avctx->codec);
193
0
    int ret;
194
195
0
    if (avci->bsf)
196
0
        return 0;
197
198
0
    ret = av_bsf_list_parse_str(codec->bsfs, &avci->bsf);
199
0
    if (ret < 0) {
200
0
        av_log(avctx, AV_LOG_ERROR, "Error parsing decoder bitstream filters '%s': %s\n", codec->bsfs, av_err2str(ret));
201
0
        if (ret != AVERROR(ENOMEM))
202
0
            ret = AVERROR_BUG;
203
0
        goto fail;
204
0
    }
205
206
    /* We do not currently have an API for passing the input timebase into decoders,
207
     * but no filters used here should actually need it.
208
     * So we make up some plausible-looking number (the MPEG 90kHz timebase) */
209
0
    avci->bsf->time_base_in = (AVRational){ 1, 90000 };
210
0
    ret = avcodec_parameters_from_context(avci->bsf->par_in, avctx);
211
0
    if (ret < 0)
212
0
        goto fail;
213
214
0
    ret = av_bsf_init(avci->bsf);
215
0
    if (ret < 0)
216
0
        goto fail;
217
218
0
    return 0;
219
0
fail:
220
0
    av_bsf_free(&avci->bsf);
221
0
    return ret;
222
0
}
223
224
#if !HAVE_THREADS
225
#define ff_thread_get_packet(avctx, pkt) (AVERROR_BUG)
226
#define ff_thread_receive_frame(avctx, frame, flags) (AVERROR_BUG)
227
#endif
228
229
static int decode_get_packet(AVCodecContext *avctx, AVPacket *pkt)
230
0
{
231
0
    AVCodecInternal *avci = avctx->internal;
232
0
    int ret;
233
234
0
    ret = av_bsf_receive_packet(avci->bsf, pkt);
235
0
    if (ret < 0)
236
0
        return ret;
237
238
0
    if (!(ffcodec(avctx->codec)->caps_internal & FF_CODEC_CAP_SETS_FRAME_PROPS)) {
239
0
        ret = extract_packet_props(avctx->internal, pkt);
240
0
        if (ret < 0)
241
0
            goto finish;
242
0
    }
243
244
0
    ret = apply_param_change(avctx, pkt);
245
0
    if (ret < 0)
246
0
        goto finish;
247
248
0
    return 0;
249
0
finish:
250
0
    av_packet_unref(pkt);
251
0
    return ret;
252
0
}
253
254
int ff_decode_get_packet(AVCodecContext *avctx, AVPacket *pkt)
255
0
{
256
0
    AVCodecInternal *avci = avctx->internal;
257
0
    DecodeContext     *dc = decode_ctx(avci);
258
259
0
    if (avci->draining)
260
0
        return AVERROR_EOF;
261
262
    /* If we are a worker thread, get the next packet from the threading
263
     * context. Otherwise we are the main (user-facing) context, so we get the
264
     * next packet from the input filterchain.
265
     */
266
0
    if (avctx->internal->is_frame_mt)
267
0
        return ff_thread_get_packet(avctx, pkt);
268
269
0
    while (1) {
270
0
        int ret = decode_get_packet(avctx, pkt);
271
0
        if (ret == AVERROR(EAGAIN) &&
272
0
            (!AVPACKET_IS_EMPTY(avci->buffer_pkt) || dc->draining_started)) {
273
0
            ret = av_bsf_send_packet(avci->bsf, avci->buffer_pkt);
274
0
            if (ret >= 0)
275
0
                continue;
276
277
0
            av_packet_unref(avci->buffer_pkt);
278
0
        }
279
280
0
        if (ret == AVERROR_EOF)
281
0
            avci->draining = 1;
282
0
        return ret;
283
0
    }
284
0
}
285
286
/**
287
 * Attempt to guess proper monotonic timestamps for decoded video frames
288
 * which might have incorrect times. Input timestamps may wrap around, in
289
 * which case the output will as well.
290
 *
291
 * @param pts the pts field of the decoded AVPacket, as passed through
292
 * AVFrame.pts
293
 * @param dts the dts field of the decoded AVPacket
294
 * @return one of the input values, may be AV_NOPTS_VALUE
295
 */
296
static int64_t guess_correct_pts(DecodeContext *dc,
297
                                 int64_t reordered_pts, int64_t dts)
298
0
{
299
0
    int64_t pts = AV_NOPTS_VALUE;
300
301
0
    if (dts != AV_NOPTS_VALUE) {
302
0
        dc->pts_correction_num_faulty_dts += dts <= dc->pts_correction_last_dts;
303
0
        dc->pts_correction_last_dts = dts;
304
0
    } else if (reordered_pts != AV_NOPTS_VALUE)
305
0
        dc->pts_correction_last_dts = reordered_pts;
306
307
0
    if (reordered_pts != AV_NOPTS_VALUE) {
308
0
        dc->pts_correction_num_faulty_pts += reordered_pts <= dc->pts_correction_last_pts;
309
0
        dc->pts_correction_last_pts = reordered_pts;
310
0
    } else if(dts != AV_NOPTS_VALUE)
311
0
        dc->pts_correction_last_pts = dts;
312
313
0
    if ((dc->pts_correction_num_faulty_pts<=dc->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
314
0
       && reordered_pts != AV_NOPTS_VALUE)
315
0
        pts = reordered_pts;
316
0
    else
317
0
        pts = dts;
318
319
0
    return pts;
320
0
}
321
322
static int discard_samples(AVCodecContext *avctx, AVFrame *frame, int64_t *discarded_samples)
323
0
{
324
0
    AVCodecInternal *avci = avctx->internal;
325
0
    AVFrameSideData *side;
326
0
    uint32_t discard_padding = 0;
327
0
    uint8_t skip_reason = 0;
328
0
    uint8_t discard_reason = 0;
329
330
0
    side = av_frame_get_side_data(frame, AV_FRAME_DATA_SKIP_SAMPLES);
331
0
    if (side && side->size >= 10) {
332
0
        int skip_samples = AV_RL32(side->data);
333
0
        if (skip_samples)
334
0
            avci->skip_samples = skip_samples;
335
0
        avci->skip_samples = FFMAX(0, avci->skip_samples);
336
0
        discard_padding = AV_RL32(side->data + 4);
337
0
        av_log(avctx, AV_LOG_DEBUG, "skip %d / discard %d samples due to side data\n",
338
0
               avci->skip_samples, (int)discard_padding);
339
0
        skip_reason = AV_RL8(side->data + 8);
340
0
        discard_reason = AV_RL8(side->data + 9);
341
0
    }
342
343
0
    if ((avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
344
0
        if (!side && (avci->skip_samples || discard_padding))
345
0
            side = av_frame_new_side_data(frame, AV_FRAME_DATA_SKIP_SAMPLES, 10);
346
0
        if (side && (avci->skip_samples || discard_padding)) {
347
0
            AV_WL32(side->data, avci->skip_samples);
348
0
            AV_WL32(side->data + 4, discard_padding);
349
0
            AV_WL8(side->data + 8, skip_reason);
350
0
            AV_WL8(side->data + 9, discard_reason);
351
0
            avci->skip_samples = 0;
352
0
        }
353
0
        return 0;
354
0
    }
355
0
    av_frame_remove_side_data(frame, AV_FRAME_DATA_SKIP_SAMPLES);
356
357
0
    if ((frame->flags & AV_FRAME_FLAG_DISCARD)) {
358
0
        avci->skip_samples = FFMAX(0, avci->skip_samples - frame->nb_samples);
359
0
        *discarded_samples += frame->nb_samples;
360
0
        return AVERROR(EAGAIN);
361
0
    }
362
363
0
    if (avci->skip_samples > 0) {
364
0
        if (frame->nb_samples <= avci->skip_samples){
365
0
            *discarded_samples += frame->nb_samples;
366
0
            avci->skip_samples -= frame->nb_samples;
367
0
            av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
368
0
                   avci->skip_samples);
369
0
            return AVERROR(EAGAIN);
370
0
        } else {
371
0
            av_samples_copy(frame->extended_data, frame->extended_data, 0, avci->skip_samples,
372
0
                            frame->nb_samples - avci->skip_samples, avctx->ch_layout.nb_channels, frame->format);
373
0
            if (avctx->pkt_timebase.num && avctx->sample_rate) {
374
0
                int64_t diff_ts = av_rescale_q(avci->skip_samples,
375
0
                                               (AVRational){1, avctx->sample_rate},
376
0
                                               avctx->pkt_timebase);
377
0
                if (diff_ts != AV_NOPTS_VALUE) {
378
0
                    if (frame->pts != AV_NOPTS_VALUE)
379
0
                        frame->pts = av_sat_add64(frame->pts, diff_ts);
380
0
                    if (frame->pkt_dts != AV_NOPTS_VALUE)
381
0
                        frame->pkt_dts = av_sat_add64(frame->pkt_dts, diff_ts);
382
0
                    if (frame->duration >= diff_ts)
383
0
                        frame->duration = av_sat_sub64(frame->duration, diff_ts);
384
0
                } else {
385
0
                    frame->pts = AV_NOPTS_VALUE;
386
0
                    frame->pkt_dts = AV_NOPTS_VALUE;
387
0
                    frame->duration = 0;
388
0
                }
389
0
            } else
390
0
                av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
391
392
0
            av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
393
0
                   avci->skip_samples, frame->nb_samples);
394
0
            *discarded_samples += avci->skip_samples;
395
0
            frame->nb_samples -= avci->skip_samples;
396
0
            avci->skip_samples = 0;
397
0
        }
398
0
    }
399
400
0
    if (discard_padding > 0 && discard_padding <= frame->nb_samples) {
401
0
        if (discard_padding == frame->nb_samples) {
402
0
            *discarded_samples += frame->nb_samples;
403
0
            return AVERROR(EAGAIN);
404
0
        } else {
405
0
            if (avctx->pkt_timebase.num && avctx->sample_rate) {
406
0
                int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
407
0
                                               (AVRational){1, avctx->sample_rate},
408
0
                                               avctx->pkt_timebase);
409
0
                frame->duration = diff_ts == AV_NOPTS_VALUE ? 0 : diff_ts;
410
0
            } else
411
0
                av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
412
413
0
            av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
414
0
                   (int)discard_padding, frame->nb_samples);
415
0
            frame->nb_samples -= discard_padding;
416
0
        }
417
0
    }
418
419
0
    return 0;
420
0
}
421
422
/*
423
 * The core of the receive_frame_wrapper for the decoders implementing
424
 * the simple API. Certain decoders might consume partial packets without
425
 * returning any output, so this function needs to be called in a loop until it
426
 * returns EAGAIN.
427
 **/
428
static inline int decode_simple_internal(AVCodecContext *avctx, AVFrame *frame, int64_t *discarded_samples)
429
0
{
430
0
    AVCodecInternal   *avci = avctx->internal;
431
0
    DecodeContext     *dc = decode_ctx(avci);
432
0
    AVPacket     *const pkt = avci->in_pkt;
433
0
    const FFCodec *const codec = ffcodec(avctx->codec);
434
0
    int got_frame, consumed;
435
0
    int ret;
436
437
0
    if (!pkt->data && !avci->draining) {
438
0
        av_packet_unref(pkt);
439
0
        ret = ff_decode_get_packet(avctx, pkt);
440
0
        if (ret < 0 && ret != AVERROR_EOF)
441
0
            return ret;
442
0
    }
443
444
    // Some codecs (at least wma lossless) will crash when feeding drain packets
445
    // after EOF was signaled.
446
0
    if (avci->draining_done)
447
0
        return AVERROR_EOF;
448
449
0
    if (!pkt->data &&
450
0
        !(avctx->codec->capabilities & AV_CODEC_CAP_DELAY))
451
0
        return AVERROR_EOF;
452
453
0
    got_frame = 0;
454
455
0
    frame->pict_type = dc->initial_pict_type;
456
0
    frame->flags    |= dc->intra_only_flag;
457
0
    consumed = codec->cb.decode(avctx, frame, &got_frame, pkt);
458
459
0
    if (!(codec->caps_internal & FF_CODEC_CAP_SETS_PKT_DTS))
460
0
        frame->pkt_dts = pkt->dts;
461
0
    emms_c();
462
463
0
    if (avctx->codec->type == AVMEDIA_TYPE_VIDEO) {
464
0
        ret = (!got_frame || frame->flags & AV_FRAME_FLAG_DISCARD)
465
0
                          ? AVERROR(EAGAIN)
466
0
                          : 0;
467
0
    } else if (avctx->codec->type == AVMEDIA_TYPE_AUDIO) {
468
0
        ret =  !got_frame ? AVERROR(EAGAIN)
469
0
                          : discard_samples(avctx, frame, discarded_samples);
470
0
    } else
471
0
        av_assert0(0);
472
473
0
    if (ret == AVERROR(EAGAIN))
474
0
        av_frame_unref(frame);
475
476
    // FF_CODEC_CB_TYPE_DECODE decoders must not return AVERROR EAGAIN
477
    // code later will add AVERROR(EAGAIN) to a pointer
478
0
    av_assert0(consumed != AVERROR(EAGAIN));
479
0
    if (consumed < 0)
480
0
        ret = consumed;
481
0
    if (consumed >= 0 && avctx->codec->type == AVMEDIA_TYPE_VIDEO)
482
0
        consumed = pkt->size;
483
484
0
    if (!ret)
485
0
        av_assert0(frame->buf[0]);
486
0
    if (ret == AVERROR(EAGAIN))
487
0
        ret = 0;
488
489
    /* do not stop draining when got_frame != 0 or ret < 0 */
490
0
    if (avci->draining && !got_frame) {
491
0
        if (ret < 0) {
492
            /* prevent infinite loop if a decoder wrongly always return error on draining */
493
            /* reasonable nb_errors_max = maximum b frames + thread count */
494
0
            int nb_errors_max = 20 + (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME ?
495
0
                                avctx->thread_count : 1);
496
497
0
            if (decode_ctx(avci)->nb_draining_errors++ >= nb_errors_max) {
498
0
                av_log(avctx, AV_LOG_ERROR, "Too many errors when draining, this is a bug. "
499
0
                       "Stop draining and force EOF.\n");
500
0
                avci->draining_done = 1;
501
0
                ret = AVERROR_BUG;
502
0
            }
503
0
        } else {
504
0
            avci->draining_done = 1;
505
0
        }
506
0
    }
507
508
0
    if (consumed >= pkt->size || ret < 0) {
509
0
        av_packet_unref(pkt);
510
0
    } else {
511
0
        pkt->data                += consumed;
512
0
        pkt->size                -= consumed;
513
0
        pkt->pts                  = AV_NOPTS_VALUE;
514
0
        pkt->dts                  = AV_NOPTS_VALUE;
515
0
        if (!(codec->caps_internal & FF_CODEC_CAP_SETS_FRAME_PROPS)) {
516
0
            avci->last_pkt_props->pts = AV_NOPTS_VALUE;
517
0
            avci->last_pkt_props->dts = AV_NOPTS_VALUE;
518
0
        }
519
0
    }
520
521
0
    return ret;
522
0
}
523
524
#if CONFIG_LCMS2
525
static int detect_colorspace(AVCodecContext *avctx, AVFrame *frame)
526
{
527
    AVCodecInternal *avci = avctx->internal;
528
    enum AVColorTransferCharacteristic trc;
529
    AVColorPrimariesDesc coeffs;
530
    enum AVColorPrimaries prim;
531
    cmsHPROFILE profile;
532
    AVFrameSideData *sd;
533
    int ret;
534
    if (!(avctx->flags2 & AV_CODEC_FLAG2_ICC_PROFILES))
535
        return 0;
536
537
    sd = av_frame_get_side_data(frame, AV_FRAME_DATA_ICC_PROFILE);
538
    if (!sd || !sd->size)
539
        return 0;
540
541
    if (!avci->icc.avctx) {
542
        ret = ff_icc_context_init(&avci->icc, avctx);
543
        if (ret < 0)
544
            return ret;
545
    }
546
547
    profile = cmsOpenProfileFromMemTHR(avci->icc.ctx, sd->data, sd->size);
548
    if (!profile)
549
        return AVERROR_INVALIDDATA;
550
551
    ret = ff_icc_profile_sanitize(&avci->icc, profile);
552
    if (!ret)
553
        ret = ff_icc_profile_read_primaries(&avci->icc, profile, &coeffs);
554
    if (!ret)
555
        ret = ff_icc_profile_detect_transfer(&avci->icc, profile, &trc);
556
    cmsCloseProfile(profile);
557
    if (ret < 0)
558
        return ret;
559
560
    prim = av_csp_primaries_id_from_desc(&coeffs);
561
    if (prim != AVCOL_PRI_UNSPECIFIED)
562
        frame->color_primaries = prim;
563
    if (trc != AVCOL_TRC_UNSPECIFIED)
564
        frame->color_trc = trc;
565
    return 0;
566
}
567
#else /* !CONFIG_LCMS2 */
568
static int detect_colorspace(av_unused AVCodecContext *c, av_unused AVFrame *f)
569
0
{
570
0
    return 0;
571
0
}
572
#endif
573
574
static int fill_frame_props(const AVCodecContext *avctx, AVFrame *frame)
575
0
{
576
0
    int ret;
577
578
0
    if (frame->color_primaries == AVCOL_PRI_UNSPECIFIED)
579
0
        frame->color_primaries = avctx->color_primaries;
580
0
    if (frame->color_trc == AVCOL_TRC_UNSPECIFIED)
581
0
        frame->color_trc = avctx->color_trc;
582
0
    if (frame->colorspace == AVCOL_SPC_UNSPECIFIED)
583
0
        frame->colorspace = avctx->colorspace;
584
0
    if (frame->color_range == AVCOL_RANGE_UNSPECIFIED)
585
0
        frame->color_range = avctx->color_range;
586
0
    if (frame->chroma_location == AVCHROMA_LOC_UNSPECIFIED)
587
0
        frame->chroma_location = avctx->chroma_sample_location;
588
0
    if (frame->alpha_mode == AVALPHA_MODE_UNSPECIFIED)
589
0
        frame->alpha_mode = avctx->alpha_mode;
590
591
0
    if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
592
0
            if (!frame->sample_aspect_ratio.num)  frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
593
0
            if (frame->format == AV_PIX_FMT_NONE) frame->format              = avctx->pix_fmt;
594
0
    } else if (avctx->codec->type == AVMEDIA_TYPE_AUDIO) {
595
0
        if (frame->format == AV_SAMPLE_FMT_NONE)
596
0
            frame->format = avctx->sample_fmt;
597
0
        if (!frame->ch_layout.nb_channels) {
598
0
            ret = av_channel_layout_copy(&frame->ch_layout, &avctx->ch_layout);
599
0
            if (ret < 0)
600
0
                return ret;
601
0
        }
602
0
        if (!frame->sample_rate)
603
0
            frame->sample_rate = avctx->sample_rate;
604
0
    }
605
606
0
    return 0;
607
0
}
608
609
static int decode_simple_receive_frame(AVCodecContext *avctx, AVFrame *frame)
610
0
{
611
0
    int ret;
612
0
    int64_t discarded_samples = 0;
613
614
0
    while (!frame->buf[0]) {
615
0
        if (discarded_samples > avctx->max_samples)
616
0
            return AVERROR(EAGAIN);
617
0
        ret = decode_simple_internal(avctx, frame, &discarded_samples);
618
0
        if (ret < 0)
619
0
            return ret;
620
0
    }
621
622
0
    return 0;
623
0
}
624
625
int ff_decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame)
626
0
{
627
0
    AVCodecInternal *avci = avctx->internal;
628
0
    DecodeContext     *dc = decode_ctx(avci);
629
0
    const FFCodec *const codec = ffcodec(avctx->codec);
630
0
    int ret;
631
632
0
    av_assert0(!frame->buf[0]);
633
634
0
    if (codec->cb_type == FF_CODEC_CB_TYPE_RECEIVE_FRAME) {
635
0
        while (1) {
636
0
            frame->pict_type = dc->initial_pict_type;
637
0
            frame->flags    |= dc->intra_only_flag;
638
0
            ret = codec->cb.receive_frame(avctx, frame);
639
0
            emms_c();
640
0
            if (!ret) {
641
0
                if (avctx->codec->type == AVMEDIA_TYPE_AUDIO) {
642
0
                    int64_t discarded_samples = 0;
643
0
                    ret = discard_samples(avctx, frame, &discarded_samples);
644
0
                }
645
0
                if (ret == AVERROR(EAGAIN) || (frame->flags & AV_FRAME_FLAG_DISCARD)) {
646
0
                    av_frame_unref(frame);
647
0
                    continue;
648
0
                }
649
0
            }
650
0
            break;
651
0
        }
652
0
    } else
653
0
        ret = decode_simple_receive_frame(avctx, frame);
654
655
0
    if (ret == AVERROR_EOF)
656
0
        avci->draining_done = 1;
657
658
0
    return ret;
659
0
}
660
661
static int decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame,
662
                                         unsigned flags)
663
0
{
664
0
    AVCodecInternal *avci = avctx->internal;
665
0
    DecodeContext     *dc = decode_ctx(avci);
666
0
    int ret, ok;
667
668
0
    if (avctx->active_thread_type & FF_THREAD_FRAME)
669
0
        ret = ff_thread_receive_frame(avctx, frame, flags);
670
0
    else
671
0
        ret = ff_decode_receive_frame_internal(avctx, frame);
672
673
    /* preserve ret */
674
0
    ok = detect_colorspace(avctx, frame);
675
0
    if (ok < 0) {
676
0
        av_frame_unref(frame);
677
0
        return ok;
678
0
    }
679
680
0
    if (!ret) {
681
0
        if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
682
0
            if (!frame->width)
683
0
                frame->width = avctx->width;
684
0
            if (!frame->height)
685
0
                frame->height = avctx->height;
686
0
        }
687
688
0
        ret = fill_frame_props(avctx, frame);
689
0
        if (ret < 0) {
690
0
            av_frame_unref(frame);
691
0
            return ret;
692
0
        }
693
694
0
        frame->best_effort_timestamp = guess_correct_pts(dc,
695
0
                                                         frame->pts,
696
0
                                                         frame->pkt_dts);
697
698
        /* the only case where decode data is not set should be decoders
699
         * that do not call ff_get_buffer() */
700
0
        av_assert0(frame->private_ref ||
701
0
                   !(avctx->codec->capabilities & AV_CODEC_CAP_DR1));
702
703
0
        if (frame->private_ref) {
704
0
            FrameDecodeData *fdd = frame->private_ref;
705
706
0
            if (fdd->hwaccel_priv_post_process) {
707
0
                ret = fdd->hwaccel_priv_post_process(avctx, frame);
708
0
                if (ret < 0) {
709
0
                    av_frame_unref(frame);
710
0
                    return ret;
711
0
                }
712
0
            }
713
714
0
            if (fdd->post_process) {
715
0
                ret = fdd->post_process(avctx, frame);
716
0
                if (ret < 0) {
717
0
                    av_frame_unref(frame);
718
0
                    return ret;
719
0
                }
720
0
            }
721
0
        }
722
0
    }
723
724
    /* free the per-frame decode data */
725
0
    av_refstruct_unref(&frame->private_ref);
726
727
0
    return ret;
728
0
}
729
730
int attribute_align_arg avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
731
0
{
732
0
    AVCodecInternal *avci = avctx->internal;
733
0
    DecodeContext     *dc = decode_ctx(avci);
734
0
    int ret;
735
736
0
    if (!avcodec_is_open(avctx) || !av_codec_is_decoder(avctx->codec))
737
0
        return AVERROR(EINVAL);
738
739
0
    if (dc->draining_started)
740
0
        return AVERROR_EOF;
741
742
0
    if (avpkt && !avpkt->size && avpkt->data)
743
0
        return AVERROR(EINVAL);
744
745
0
    if (avpkt && (avpkt->data || avpkt->side_data_elems)) {
746
0
        if (!AVPACKET_IS_EMPTY(avci->buffer_pkt))
747
0
            return AVERROR(EAGAIN);
748
0
        ret = av_packet_ref(avci->buffer_pkt, avpkt);
749
0
        if (ret < 0)
750
0
            return ret;
751
0
    } else
752
0
        dc->draining_started = 1;
753
754
0
    if (!avci->buffer_frame->buf[0] && !dc->draining_started) {
755
0
        ret = decode_receive_frame_internal(avctx, avci->buffer_frame, 0);
756
0
        if (ret < 0 && ret != AVERROR(EAGAIN) && ret != AVERROR_EOF)
757
0
            return ret;
758
0
    }
759
760
0
    return 0;
761
0
}
762
763
static int apply_cropping(AVCodecContext *avctx, AVFrame *frame)
764
0
{
765
    /* make sure we are noisy about decoders returning invalid cropping data */
766
0
    if (frame->crop_left >= INT_MAX - frame->crop_right        ||
767
0
        frame->crop_top  >= INT_MAX - frame->crop_bottom       ||
768
0
        (frame->crop_left + frame->crop_right) >= frame->width ||
769
0
        (frame->crop_top + frame->crop_bottom) >= frame->height) {
770
0
        av_log(avctx, AV_LOG_WARNING,
771
0
               "Invalid cropping information set by a decoder: "
772
0
               "%zu/%zu/%zu/%zu (frame size %dx%d). "
773
0
               "This is a bug, please report it\n",
774
0
               frame->crop_left, frame->crop_right, frame->crop_top, frame->crop_bottom,
775
0
               frame->width, frame->height);
776
0
        frame->crop_left   = 0;
777
0
        frame->crop_right  = 0;
778
0
        frame->crop_top    = 0;
779
0
        frame->crop_bottom = 0;
780
0
        return 0;
781
0
    }
782
783
0
    if (!avctx->apply_cropping)
784
0
        return 0;
785
786
0
    return av_frame_apply_cropping(frame, avctx->flags & AV_CODEC_FLAG_UNALIGNED ?
787
0
                                          AV_FRAME_CROP_UNALIGNED : 0);
788
0
}
789
790
// make sure frames returned to the caller are valid
791
static int frame_validate(AVCodecContext *avctx, AVFrame *frame)
792
0
{
793
0
    if (!frame->buf[0] || frame->format < 0)
794
0
        goto fail;
795
796
0
    switch (avctx->codec_type) {
797
0
    case AVMEDIA_TYPE_VIDEO:
798
0
        if (frame->width <= 0 || frame->height <= 0)
799
0
            goto fail;
800
0
        break;
801
0
    case AVMEDIA_TYPE_AUDIO:
802
0
        if (!av_channel_layout_check(&frame->ch_layout) ||
803
0
            frame->sample_rate <= 0)
804
0
            goto fail;
805
806
0
        break;
807
0
    default: av_assert0(0);
808
0
    }
809
810
0
    return 0;
811
0
fail:
812
0
    av_log(avctx, AV_LOG_ERROR, "An invalid frame was output by a decoder. "
813
0
           "This is a bug, please report it.\n");
814
0
    return AVERROR_BUG;
815
0
}
816
817
int ff_decode_receive_frame(AVCodecContext *avctx, AVFrame *frame, unsigned flags)
818
0
{
819
0
    AVCodecInternal *avci = avctx->internal;
820
0
    int ret;
821
822
0
    if (avci->buffer_frame->buf[0]) {
823
0
        av_frame_move_ref(frame, avci->buffer_frame);
824
0
    } else {
825
0
        ret = decode_receive_frame_internal(avctx, frame, flags);
826
0
        if (ret < 0)
827
0
            return ret;
828
0
    }
829
830
0
    ret = frame_validate(avctx, frame);
831
0
    if (ret < 0)
832
0
        goto fail;
833
834
0
    if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
835
0
        ret = apply_cropping(avctx, frame);
836
0
        if (ret < 0)
837
0
            goto fail;
838
0
    }
839
840
0
    avctx->frame_num++;
841
842
0
    return 0;
843
0
fail:
844
0
    av_frame_unref(frame);
845
0
    return ret;
846
0
}
847
848
static void get_subtitle_defaults(AVSubtitle *sub)
849
0
{
850
0
    memset(sub, 0, sizeof(*sub));
851
0
    sub->pts = AV_NOPTS_VALUE;
852
0
}
853
854
0
#define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
855
static int recode_subtitle(AVCodecContext *avctx, const AVPacket **outpkt,
856
                           const AVPacket *inpkt, AVPacket *buf_pkt)
857
0
{
858
0
#if CONFIG_ICONV
859
0
    iconv_t cd = (iconv_t)-1;
860
0
    int ret = 0;
861
0
    char *inb, *outb;
862
0
    size_t inl, outl;
863
0
#endif
864
865
0
    if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0) {
866
0
        *outpkt = inpkt;
867
0
        return 0;
868
0
    }
869
870
0
#if CONFIG_ICONV
871
0
    inb = inpkt->data;
872
0
    inl = inpkt->size;
873
874
0
    if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
875
0
        av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
876
0
        return AVERROR(ERANGE);
877
0
    }
878
879
0
    cd = iconv_open("UTF-8", avctx->sub_charenc);
880
0
    av_assert0(cd != (iconv_t)-1);
881
882
0
    ret = av_new_packet(buf_pkt, inl * UTF8_MAX_BYTES);
883
0
    if (ret < 0)
884
0
        goto end;
885
0
    ret = av_packet_copy_props(buf_pkt, inpkt);
886
0
    if (ret < 0)
887
0
        goto end;
888
0
    outb = buf_pkt->data;
889
0
    outl = buf_pkt->size;
890
891
0
    if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
892
0
        iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
893
0
        outl >= buf_pkt->size || inl != 0) {
894
0
        ret = FFMIN(AVERROR(errno), -1);
895
0
        av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
896
0
               "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
897
0
        goto end;
898
0
    }
899
0
    buf_pkt->size -= outl;
900
0
    memset(buf_pkt->data + buf_pkt->size, 0, outl);
901
0
    *outpkt = buf_pkt;
902
903
0
    ret = 0;
904
0
end:
905
0
    if (ret < 0)
906
0
        av_packet_unref(buf_pkt);
907
0
    if (cd != (iconv_t)-1)
908
0
        iconv_close(cd);
909
0
    return ret;
910
#else
911
    av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
912
    return AVERROR(EINVAL);
913
#endif
914
0
}
915
916
static int utf8_check(const uint8_t *str)
917
0
{
918
0
    const uint8_t *byte;
919
0
    uint32_t codepoint, min;
920
921
0
    while (*str) {
922
0
        byte = str;
923
0
        GET_UTF8(codepoint, *(byte++), return 0;);
924
0
        min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
925
0
              1 << (5 * (byte - str) - 4);
926
0
        if (codepoint < min || codepoint >= 0x110000 ||
927
0
            codepoint == 0xFFFE /* BOM */ ||
928
0
            codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
929
0
            return 0;
930
0
        str = byte;
931
0
    }
932
0
    return 1;
933
0
}
934
935
int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
936
                             int *got_sub_ptr, const AVPacket *avpkt)
937
0
{
938
0
    int ret = 0;
939
940
0
    if (!avpkt->data && avpkt->size) {
941
0
        av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
942
0
        return AVERROR(EINVAL);
943
0
    }
944
0
    if (!avctx->codec)
945
0
        return AVERROR(EINVAL);
946
0
    if (ffcodec(avctx->codec)->cb_type != FF_CODEC_CB_TYPE_DECODE_SUB) {
947
0
        av_log(avctx, AV_LOG_ERROR, "Codec not subtitle decoder\n");
948
0
        return AVERROR(EINVAL);
949
0
    }
950
951
0
    *got_sub_ptr = 0;
952
0
    get_subtitle_defaults(sub);
953
954
0
    if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
955
0
        AVCodecInternal *avci = avctx->internal;
956
0
        const AVPacket *pkt;
957
958
0
        ret = recode_subtitle(avctx, &pkt, avpkt, avci->buffer_pkt);
959
0
        if (ret < 0)
960
0
            return ret;
961
962
0
        if (avctx->pkt_timebase.num && avpkt->pts != AV_NOPTS_VALUE)
963
0
            sub->pts = av_rescale_q(avpkt->pts,
964
0
                                    avctx->pkt_timebase, AV_TIME_BASE_Q);
965
0
        ret = ffcodec(avctx->codec)->cb.decode_sub(avctx, sub, got_sub_ptr, pkt);
966
0
        if (pkt == avci->buffer_pkt) // did we recode?
967
0
            av_packet_unref(avci->buffer_pkt);
968
0
        if (ret < 0) {
969
0
            *got_sub_ptr = 0;
970
0
            avsubtitle_free(sub);
971
0
            return ret;
972
0
        }
973
0
        av_assert1(!sub->num_rects || *got_sub_ptr);
974
975
0
        if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
976
0
            avctx->pkt_timebase.num) {
977
0
            AVRational ms = { 1, 1000 };
978
0
            sub->end_display_time = av_rescale_q(avpkt->duration,
979
0
                                                 avctx->pkt_timebase, ms);
980
0
        }
981
982
0
        if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB)
983
0
            sub->format = 0;
984
0
        else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
985
0
            sub->format = 1;
986
987
0
        for (unsigned i = 0; i < sub->num_rects; i++) {
988
0
            if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_IGNORE &&
989
0
                sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
990
0
                av_log(avctx, AV_LOG_ERROR,
991
0
                       "Invalid UTF-8 in decoded subtitles text; "
992
0
                       "maybe missing -sub_charenc option\n");
993
0
                avsubtitle_free(sub);
994
0
                *got_sub_ptr = 0;
995
0
                return AVERROR_INVALIDDATA;
996
0
            }
997
0
        }
998
999
0
        if (*got_sub_ptr)
1000
0
            avctx->frame_num++;
1001
0
    }
1002
1003
0
    return ret;
1004
0
}
1005
1006
enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *avctx,
1007
                                              const enum AVPixelFormat *fmt)
1008
0
{
1009
0
    const AVCodecHWConfig *config;
1010
0
    int i, n;
1011
1012
    // If a device was supplied when the codec was opened, assume that the
1013
    // user wants to use it.
1014
0
    if (avctx->hw_device_ctx && ffcodec(avctx->codec)->hw_configs) {
1015
0
        AVHWDeviceContext *device_ctx =
1016
0
            (AVHWDeviceContext*)avctx->hw_device_ctx->data;
1017
0
        for (i = 0;; i++) {
1018
0
            config = &ffcodec(avctx->codec)->hw_configs[i]->public;
1019
0
            if (!config)
1020
0
                break;
1021
0
            if (!(config->methods &
1022
0
                  AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX))
1023
0
                continue;
1024
0
            if (device_ctx->type != config->device_type)
1025
0
                continue;
1026
0
            for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1027
0
                if (config->pix_fmt == fmt[n])
1028
0
                    return fmt[n];
1029
0
            }
1030
0
        }
1031
0
    }
1032
    // No device or other setup, so we have to choose from things which
1033
    // don't any other external information.
1034
1035
    // Choose the first software format
1036
    // (this should be best software format if any exist).
1037
0
    for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1038
0
        const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt[n]);
1039
0
        if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
1040
0
            return fmt[n];
1041
0
    }
1042
1043
    // Finally, traverse the list in order and choose the first entry
1044
    // with no external dependencies (if there is no hardware configuration
1045
    // information available then this just picks the first entry).
1046
0
    for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1047
0
        for (i = 0;; i++) {
1048
0
            config = avcodec_get_hw_config(avctx->codec, i);
1049
0
            if (!config)
1050
0
                break;
1051
0
            if (config->pix_fmt == fmt[n])
1052
0
                break;
1053
0
        }
1054
0
        if (!config) {
1055
            // No specific config available, so the decoder must be able
1056
            // to handle this format without any additional setup.
1057
0
            return fmt[n];
1058
0
        }
1059
0
        if (config->methods & AV_CODEC_HW_CONFIG_METHOD_INTERNAL) {
1060
            // Usable with only internal setup.
1061
0
            return fmt[n];
1062
0
        }
1063
0
    }
1064
1065
    // Nothing is usable, give up.
1066
0
    return AV_PIX_FMT_NONE;
1067
0
}
1068
1069
int ff_decode_get_hw_frames_ctx(AVCodecContext *avctx,
1070
                                enum AVHWDeviceType dev_type)
1071
0
{
1072
0
    AVHWDeviceContext *device_ctx;
1073
0
    AVHWFramesContext *frames_ctx;
1074
0
    int ret;
1075
1076
0
    if (!avctx->hwaccel)
1077
0
        return AVERROR(ENOSYS);
1078
1079
0
    if (avctx->hw_frames_ctx)
1080
0
        return 0;
1081
0
    if (!avctx->hw_device_ctx) {
1082
0
        av_log(avctx, AV_LOG_ERROR, "A hardware frames or device context is "
1083
0
                "required for hardware accelerated decoding.\n");
1084
0
        return AVERROR(EINVAL);
1085
0
    }
1086
1087
0
    device_ctx = (AVHWDeviceContext *)avctx->hw_device_ctx->data;
1088
0
    if (device_ctx->type != dev_type) {
1089
0
        av_log(avctx, AV_LOG_ERROR, "Device type %s expected for hardware "
1090
0
               "decoding, but got %s.\n", av_hwdevice_get_type_name(dev_type),
1091
0
               av_hwdevice_get_type_name(device_ctx->type));
1092
0
        return AVERROR(EINVAL);
1093
0
    }
1094
1095
0
    ret = avcodec_get_hw_frames_parameters(avctx,
1096
0
                                           avctx->hw_device_ctx,
1097
0
                                           avctx->hwaccel->pix_fmt,
1098
0
                                           &avctx->hw_frames_ctx);
1099
0
    if (ret < 0)
1100
0
        return ret;
1101
1102
0
    frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1103
1104
1105
0
    if (frames_ctx->initial_pool_size) {
1106
        // We guarantee 4 base work surfaces. The function above guarantees 1
1107
        // (the absolute minimum), so add the missing count.
1108
0
        frames_ctx->initial_pool_size += 3;
1109
0
    }
1110
1111
0
    ret = av_hwframe_ctx_init(avctx->hw_frames_ctx);
1112
0
    if (ret < 0) {
1113
0
        av_buffer_unref(&avctx->hw_frames_ctx);
1114
0
        return ret;
1115
0
    }
1116
1117
0
    return 0;
1118
0
}
1119
1120
int avcodec_get_hw_frames_parameters(AVCodecContext *avctx,
1121
                                     AVBufferRef *device_ref,
1122
                                     enum AVPixelFormat hw_pix_fmt,
1123
                                     AVBufferRef **out_frames_ref)
1124
0
{
1125
0
    AVBufferRef *frames_ref = NULL;
1126
0
    const AVCodecHWConfigInternal *hw_config;
1127
0
    const FFHWAccel *hwa;
1128
0
    int i, ret;
1129
0
    bool clean_priv_data = false;
1130
1131
0
    for (i = 0;; i++) {
1132
0
        hw_config = ffcodec(avctx->codec)->hw_configs[i];
1133
0
        if (!hw_config)
1134
0
            return AVERROR(ENOENT);
1135
0
        if (hw_config->public.pix_fmt == hw_pix_fmt)
1136
0
            break;
1137
0
    }
1138
1139
0
    hwa = hw_config->hwaccel;
1140
0
    if (!hwa || !hwa->frame_params)
1141
0
        return AVERROR(ENOENT);
1142
1143
0
    frames_ref = av_hwframe_ctx_alloc(device_ref);
1144
0
    if (!frames_ref)
1145
0
        return AVERROR(ENOMEM);
1146
1147
0
    if (!avctx->internal->hwaccel_priv_data) {
1148
0
        avctx->internal->hwaccel_priv_data =
1149
0
            av_mallocz(hwa->priv_data_size);
1150
0
        if (!avctx->internal->hwaccel_priv_data) {
1151
0
            av_buffer_unref(&frames_ref);
1152
0
            return AVERROR(ENOMEM);
1153
0
        }
1154
0
        clean_priv_data = true;
1155
0
    }
1156
1157
0
    ret = hwa->frame_params(avctx, frames_ref);
1158
0
    if (ret >= 0) {
1159
0
        AVHWFramesContext *frames_ctx = (AVHWFramesContext*)frames_ref->data;
1160
1161
0
        if (frames_ctx->initial_pool_size) {
1162
            // If the user has requested that extra output surfaces be
1163
            // available then add them here.
1164
0
            if (avctx->extra_hw_frames > 0)
1165
0
                frames_ctx->initial_pool_size += avctx->extra_hw_frames;
1166
1167
            // If frame threading is enabled then an extra surface per thread
1168
            // is also required.
1169
0
            if (avctx->active_thread_type & FF_THREAD_FRAME)
1170
0
                frames_ctx->initial_pool_size += avctx->thread_count;
1171
0
        }
1172
1173
0
        *out_frames_ref = frames_ref;
1174
0
    } else {
1175
0
        if (clean_priv_data)
1176
0
            av_freep(&avctx->internal->hwaccel_priv_data);
1177
0
        av_buffer_unref(&frames_ref);
1178
0
    }
1179
0
    return ret;
1180
0
}
1181
1182
static int hwaccel_init(AVCodecContext *avctx,
1183
                        const FFHWAccel *hwaccel)
1184
0
{
1185
0
    int err;
1186
1187
0
    if (hwaccel->p.capabilities & AV_HWACCEL_CODEC_CAP_EXPERIMENTAL &&
1188
0
        avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
1189
0
        av_log(avctx, AV_LOG_WARNING, "Ignoring experimental hwaccel: %s\n",
1190
0
               hwaccel->p.name);
1191
0
        return AVERROR_PATCHWELCOME;
1192
0
    }
1193
1194
0
    if (!avctx->internal->hwaccel_priv_data && hwaccel->priv_data_size) {
1195
0
        avctx->internal->hwaccel_priv_data =
1196
0
            av_mallocz(hwaccel->priv_data_size);
1197
0
        if (!avctx->internal->hwaccel_priv_data)
1198
0
            return AVERROR(ENOMEM);
1199
0
    }
1200
1201
0
    avctx->hwaccel = &hwaccel->p;
1202
0
    if (hwaccel->init) {
1203
0
        err = hwaccel->init(avctx);
1204
0
        if (err < 0) {
1205
0
            av_log(avctx, AV_LOG_ERROR, "Failed setup for format %s: "
1206
0
                   "hwaccel initialisation returned error.\n",
1207
0
                   av_get_pix_fmt_name(hwaccel->p.pix_fmt));
1208
0
            av_freep(&avctx->internal->hwaccel_priv_data);
1209
0
            avctx->hwaccel = NULL;
1210
0
            return err;
1211
0
        }
1212
0
    }
1213
1214
0
    return 0;
1215
0
}
1216
1217
void ff_hwaccel_uninit(AVCodecContext *avctx)
1218
0
{
1219
0
    if (FF_HW_HAS_CB(avctx, uninit))
1220
0
        FF_HW_SIMPLE_CALL(avctx, uninit);
1221
1222
0
    av_freep(&avctx->internal->hwaccel_priv_data);
1223
1224
0
    avctx->hwaccel = NULL;
1225
1226
0
    av_buffer_unref(&avctx->hw_frames_ctx);
1227
0
}
1228
1229
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
1230
0
{
1231
0
    const AVPixFmtDescriptor *desc;
1232
0
    enum AVPixelFormat *choices;
1233
0
    enum AVPixelFormat ret, user_choice;
1234
0
    const AVCodecHWConfigInternal *hw_config;
1235
0
    const AVCodecHWConfig *config;
1236
0
    int i, n, err;
1237
1238
    // Find end of list.
1239
0
    for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++);
1240
    // Must contain at least one entry.
1241
0
    av_assert0(n >= 1);
1242
    // If a software format is available, it must be the last entry.
1243
0
    desc = av_pix_fmt_desc_get(fmt[n - 1]);
1244
0
    if (desc->flags & AV_PIX_FMT_FLAG_HWACCEL) {
1245
        // No software format is available.
1246
0
    } else {
1247
0
        avctx->sw_pix_fmt = fmt[n - 1];
1248
0
    }
1249
1250
0
    choices = av_memdup(fmt, (n + 1) * sizeof(*choices));
1251
0
    if (!choices)
1252
0
        return AV_PIX_FMT_NONE;
1253
1254
0
    for (;;) {
1255
        // Remove the previous hwaccel, if there was one.
1256
0
        ff_hwaccel_uninit(avctx);
1257
1258
0
        user_choice = avctx->get_format(avctx, choices);
1259
0
        if (user_choice == AV_PIX_FMT_NONE) {
1260
            // Explicitly chose nothing, give up.
1261
0
            ret = AV_PIX_FMT_NONE;
1262
0
            break;
1263
0
        }
1264
1265
0
        desc = av_pix_fmt_desc_get(user_choice);
1266
0
        if (!desc) {
1267
0
            av_log(avctx, AV_LOG_ERROR, "Invalid format returned by "
1268
0
                   "get_format() callback.\n");
1269
0
            ret = AV_PIX_FMT_NONE;
1270
0
            break;
1271
0
        }
1272
0
        av_log(avctx, AV_LOG_DEBUG, "Format %s chosen by get_format().\n",
1273
0
               desc->name);
1274
1275
0
        for (i = 0; i < n; i++) {
1276
0
            if (choices[i] == user_choice)
1277
0
                break;
1278
0
        }
1279
0
        if (i == n) {
1280
0
            av_log(avctx, AV_LOG_ERROR, "Invalid return from get_format(): "
1281
0
                   "%s not in possible list.\n", desc->name);
1282
0
            ret = AV_PIX_FMT_NONE;
1283
0
            break;
1284
0
        }
1285
1286
0
        if (ffcodec(avctx->codec)->hw_configs) {
1287
0
            for (i = 0;; i++) {
1288
0
                hw_config = ffcodec(avctx->codec)->hw_configs[i];
1289
0
                if (!hw_config)
1290
0
                    break;
1291
0
                if (hw_config->public.pix_fmt == user_choice)
1292
0
                    break;
1293
0
            }
1294
0
        } else {
1295
0
            hw_config = NULL;
1296
0
        }
1297
1298
0
        if (!hw_config) {
1299
            // No config available, so no extra setup required.
1300
0
            ret = user_choice;
1301
0
            break;
1302
0
        }
1303
0
        config = &hw_config->public;
1304
1305
0
        if (config->methods &
1306
0
            AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX &&
1307
0
            avctx->hw_frames_ctx) {
1308
0
            const AVHWFramesContext *frames_ctx =
1309
0
                (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1310
0
            if (frames_ctx->format != user_choice) {
1311
0
                av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1312
0
                       "does not match the format of the provided frames "
1313
0
                       "context.\n", desc->name);
1314
0
                goto try_again;
1315
0
            }
1316
0
        } else if (config->methods &
1317
0
                   AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX &&
1318
0
                   avctx->hw_device_ctx) {
1319
0
            const AVHWDeviceContext *device_ctx =
1320
0
                (AVHWDeviceContext*)avctx->hw_device_ctx->data;
1321
0
            if (device_ctx->type != config->device_type) {
1322
0
                av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1323
0
                       "does not match the type of the provided device "
1324
0
                       "context.\n", desc->name);
1325
0
                goto try_again;
1326
0
            }
1327
0
        } else if (config->methods &
1328
0
                   AV_CODEC_HW_CONFIG_METHOD_INTERNAL) {
1329
            // Internal-only setup, no additional configuration.
1330
0
        } else if (config->methods &
1331
0
                   AV_CODEC_HW_CONFIG_METHOD_AD_HOC) {
1332
            // Some ad-hoc configuration we can't see and can't check.
1333
0
        } else {
1334
0
            av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1335
0
                   "missing configuration.\n", desc->name);
1336
0
            goto try_again;
1337
0
        }
1338
0
        if (hw_config->hwaccel) {
1339
0
            av_log(avctx, AV_LOG_DEBUG, "Format %s requires hwaccel %s "
1340
0
                   "initialisation.\n", desc->name, hw_config->hwaccel->p.name);
1341
0
            err = hwaccel_init(avctx, hw_config->hwaccel);
1342
0
            if (err < 0)
1343
0
                goto try_again;
1344
0
        }
1345
0
        ret = user_choice;
1346
0
        break;
1347
1348
0
    try_again:
1349
0
        av_log(avctx, AV_LOG_DEBUG, "Format %s not usable, retrying "
1350
0
               "get_format() without it.\n", desc->name);
1351
0
        for (i = 0; i < n; i++) {
1352
0
            if (choices[i] == user_choice)
1353
0
                break;
1354
0
        }
1355
0
        for (; i + 1 < n; i++)
1356
0
            choices[i] = choices[i + 1];
1357
0
        --n;
1358
0
    }
1359
1360
0
    if (ret < 0)
1361
0
        ff_hwaccel_uninit(avctx);
1362
1363
0
    av_freep(&choices);
1364
0
    return ret;
1365
0
}
1366
1367
static const AVPacketSideData*
1368
packet_side_data_get(const AVPacketSideData *sd, int nb_sd,
1369
                     enum AVPacketSideDataType type)
1370
0
{
1371
0
    for (int i = 0; i < nb_sd; i++)
1372
0
        if (sd[i].type == type)
1373
0
            return &sd[i];
1374
1375
0
    return NULL;
1376
0
}
1377
1378
const AVPacketSideData *ff_get_coded_side_data(const AVCodecContext *avctx,
1379
                                               enum AVPacketSideDataType type)
1380
0
{
1381
0
    return packet_side_data_get(avctx->coded_side_data, avctx->nb_coded_side_data, type);
1382
0
}
1383
1384
static int side_data_stereo3d_merge(AVFrameSideData *sd_frame,
1385
                                    const AVPacketSideData *sd_pkt)
1386
0
{
1387
0
    const AVStereo3D *src;
1388
0
    AVStereo3D       *dst;
1389
0
    int ret;
1390
1391
0
    ret = av_buffer_make_writable(&sd_frame->buf);
1392
0
    if (ret < 0)
1393
0
        return ret;
1394
0
    sd_frame->data = sd_frame->buf->data;
1395
1396
0
    dst = (      AVStereo3D*)sd_frame->data;
1397
0
    src = (const AVStereo3D*)sd_pkt->data;
1398
1399
0
    if (dst->type == AV_STEREO3D_UNSPEC)
1400
0
        dst->type = src->type;
1401
1402
0
    if (dst->view == AV_STEREO3D_VIEW_UNSPEC)
1403
0
        dst->view = src->view;
1404
1405
0
    if (dst->primary_eye == AV_PRIMARY_EYE_NONE)
1406
0
        dst->primary_eye = src->primary_eye;
1407
1408
0
    if (!dst->baseline)
1409
0
        dst->baseline = src->baseline;
1410
1411
0
    if (!dst->horizontal_disparity_adjustment.num)
1412
0
        dst->horizontal_disparity_adjustment = src->horizontal_disparity_adjustment;
1413
1414
0
    if (!dst->horizontal_field_of_view.num)
1415
0
        dst->horizontal_field_of_view = src->horizontal_field_of_view;
1416
1417
0
    return 0;
1418
0
}
1419
1420
static int side_data_exif_parse(AVFrame *dst, const AVPacketSideData *sd_pkt)
1421
0
{
1422
0
    AVExifMetadata ifd = { 0 };
1423
0
    AVExifEntry *entry = NULL;
1424
0
    AVBufferRef *buf = NULL;
1425
0
    AVFrameSideData *sd_frame;
1426
0
    int ret;
1427
1428
0
    ret = av_exif_parse_buffer(NULL, sd_pkt->data, sd_pkt->size, &ifd,
1429
0
                               AV_EXIF_TIFF_HEADER);
1430
0
    if (ret < 0)
1431
0
        return ret;
1432
1433
0
    ret = av_exif_get_entry(NULL, &ifd, av_exif_get_tag_id("Orientation"), 0, &entry);
1434
0
    if (ret < 0)
1435
0
        goto end;
1436
1437
0
    if (!entry) {
1438
0
        ret = av_exif_ifd_to_dict(NULL, &ifd, &dst->metadata);
1439
0
        if (ret < 0)
1440
0
            goto end;
1441
1442
0
        sd_frame = av_frame_side_data_new(&dst->side_data, &dst->nb_side_data, AV_FRAME_DATA_EXIF,
1443
0
                                          sd_pkt->size, 0);
1444
0
        if (sd_frame)
1445
0
            memcpy(sd_frame->data, sd_pkt->data, sd_pkt->size);
1446
0
        ret = sd_frame ? 0 : AVERROR(ENOMEM);
1447
1448
0
        goto end;
1449
0
    } else if (entry->count <= 0 || entry->type != AV_TIFF_SHORT) {
1450
0
        ret = AVERROR_INVALIDDATA;
1451
0
        goto end;
1452
0
    }
1453
1454
    // If a display matrix already exists in the frame, give it priority
1455
0
    if (av_frame_side_data_get(dst->side_data, dst->nb_side_data, AV_FRAME_DATA_DISPLAYMATRIX))
1456
0
        goto finish;
1457
1458
0
    sd_frame = av_frame_side_data_new(&dst->side_data, &dst->nb_side_data, AV_FRAME_DATA_DISPLAYMATRIX,
1459
0
                                      sizeof(int32_t) * 9, 0);
1460
0
    if (!sd_frame) {
1461
0
        ret = AVERROR(ENOMEM);
1462
0
        goto end;
1463
0
    }
1464
1465
0
    ret = av_exif_orientation_to_matrix((int32_t *)sd_frame->data, entry->value.uint[0]);
1466
0
    if (ret < 0)
1467
0
        goto end;
1468
1469
0
finish:
1470
0
    av_exif_remove_entry(NULL, &ifd, entry->id, 0);
1471
1472
0
    ret = av_exif_ifd_to_dict(NULL, &ifd, &dst->metadata);
1473
0
    if (ret < 0)
1474
0
        goto end;
1475
1476
0
    ret = av_exif_write(NULL, &ifd, &buf, AV_EXIF_TIFF_HEADER);
1477
0
    if (ret < 0)
1478
0
        goto end;
1479
1480
0
    if (!av_frame_side_data_add(&dst->side_data, &dst->nb_side_data, AV_FRAME_DATA_EXIF, &buf, 0)) {
1481
0
        ret = AVERROR(ENOMEM);
1482
0
        goto end;
1483
0
    }
1484
1485
0
    ret = 0;
1486
0
end:
1487
0
    av_buffer_unref(&buf);
1488
0
    av_exif_free(&ifd);
1489
0
    return ret;
1490
0
}
1491
1492
static int side_data_map(AVFrame *dst,
1493
                         const AVPacketSideData *sd_src, int nb_sd_src,
1494
                         const SideDataMap *map)
1495
1496
0
{
1497
0
    for (int i = 0; map[i].packet < AV_PKT_DATA_NB; i++) {
1498
0
        const enum AVPacketSideDataType type_pkt   = map[i].packet;
1499
0
        const enum AVFrameSideDataType  type_frame = map[i].frame;
1500
0
        const AVPacketSideData *sd_pkt;
1501
0
        AVFrameSideData *sd_frame;
1502
1503
0
        sd_pkt = packet_side_data_get(sd_src, nb_sd_src, type_pkt);
1504
0
        if (!sd_pkt)
1505
0
            continue;
1506
1507
0
        sd_frame = av_frame_get_side_data(dst, type_frame);
1508
0
        if (sd_frame) {
1509
0
            if (type_frame == AV_FRAME_DATA_STEREO3D) {
1510
0
                int ret = side_data_stereo3d_merge(sd_frame, sd_pkt);
1511
0
                if (ret < 0)
1512
0
                    return ret;
1513
0
            }
1514
1515
0
            continue;
1516
0
        }
1517
1518
0
        switch (type_pkt) {
1519
0
        case AV_PKT_DATA_EXIF: {
1520
0
            int ret = side_data_exif_parse(dst, sd_pkt);
1521
0
            if (ret < 0)
1522
0
                return ret;
1523
0
            break;
1524
0
        }
1525
0
        default:
1526
0
            sd_frame = av_frame_new_side_data(dst, type_frame, sd_pkt->size);
1527
0
            if (!sd_frame)
1528
0
                return AVERROR(ENOMEM);
1529
1530
0
            memcpy(sd_frame->data, sd_pkt->data, sd_pkt->size);
1531
0
            break;
1532
0
        }
1533
0
    }
1534
1535
0
    return 0;
1536
0
}
1537
1538
static int add_metadata_from_side_data(const AVPacket *avpkt, AVFrame *frame)
1539
0
{
1540
0
    size_t size;
1541
0
    const uint8_t *side_metadata;
1542
1543
0
    AVDictionary **frame_md = &frame->metadata;
1544
1545
0
    side_metadata = av_packet_get_side_data(avpkt,
1546
0
                                            AV_PKT_DATA_STRINGS_METADATA, &size);
1547
0
    return av_packet_unpack_dictionary(side_metadata, size, frame_md);
1548
0
}
1549
1550
int ff_decode_frame_props_from_pkt(const AVCodecContext *avctx,
1551
                                   AVFrame *frame, const AVPacket *pkt)
1552
0
{
1553
0
    static const SideDataMap sd[] = {
1554
0
        { AV_PKT_DATA_A53_CC,                      AV_FRAME_DATA_A53_CC },
1555
0
        { AV_PKT_DATA_AFD,                         AV_FRAME_DATA_AFD },
1556
0
        { AV_PKT_DATA_DYNAMIC_HDR10_PLUS,          AV_FRAME_DATA_DYNAMIC_HDR_PLUS },
1557
0
        { AV_PKT_DATA_DYNAMIC_HDR_SMPTE_2094_APP5, AV_FRAME_DATA_DYNAMIC_HDR_SMPTE_2094_APP5 },
1558
0
        { AV_PKT_DATA_S12M_TIMECODE,               AV_FRAME_DATA_S12M_TIMECODE },
1559
0
        { AV_PKT_DATA_SKIP_SAMPLES,                AV_FRAME_DATA_SKIP_SAMPLES },
1560
0
        { AV_PKT_DATA_LCEVC,                       AV_FRAME_DATA_LCEVC },
1561
0
        { AV_PKT_DATA_IAMF_MIX_GAIN_PARAM,         AV_FRAME_DATA_IAMF_MIX_GAIN_PARAM },
1562
0
        { AV_PKT_DATA_IAMF_DEMIXING_INFO_PARAM,    AV_FRAME_DATA_IAMF_DEMIXING_INFO_PARAM },
1563
0
        { AV_PKT_DATA_IAMF_RECON_GAIN_INFO_PARAM,  AV_FRAME_DATA_IAMF_RECON_GAIN_INFO_PARAM },
1564
0
        { AV_PKT_DATA_NB }
1565
0
    };
1566
1567
0
    int ret = 0;
1568
1569
0
    frame->pts          = pkt->pts;
1570
0
    frame->duration     = pkt->duration;
1571
1572
0
    if (pkt->side_data_elems) {
1573
0
        ret = side_data_map(frame, pkt->side_data, pkt->side_data_elems, ff_sd_global_map);
1574
0
        if (ret < 0)
1575
0
            return ret;
1576
1577
0
        ret = side_data_map(frame, pkt->side_data, pkt->side_data_elems, sd);
1578
0
        if (ret < 0)
1579
0
            return ret;
1580
1581
0
        add_metadata_from_side_data(pkt, frame);
1582
0
    }
1583
1584
0
    if (pkt->flags & AV_PKT_FLAG_DISCARD) {
1585
0
        frame->flags |= AV_FRAME_FLAG_DISCARD;
1586
0
    }
1587
1588
0
    if (avctx->flags & AV_CODEC_FLAG_COPY_OPAQUE) {
1589
0
        ret = av_buffer_replace(&frame->opaque_ref, pkt->opaque_ref);
1590
0
        if (ret < 0)
1591
0
            return ret;
1592
0
        frame->opaque = pkt->opaque;
1593
0
    }
1594
1595
0
    return 0;
1596
0
}
1597
1598
int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
1599
0
{
1600
0
    int ret;
1601
1602
0
    ret = side_data_map(frame, avctx->coded_side_data, avctx->nb_coded_side_data,
1603
0
                        ff_sd_global_map);
1604
0
    if (ret < 0)
1605
0
        return ret;
1606
1607
0
    for (int i = 0; i < avctx->nb_decoded_side_data; i++) {
1608
0
        const AVFrameSideData *src = avctx->decoded_side_data[i];
1609
0
        if (av_frame_get_side_data(frame, src->type))
1610
0
            continue;
1611
0
        ret = av_frame_side_data_clone(&frame->side_data, &frame->nb_side_data, src, 0);
1612
0
        if (ret < 0)
1613
0
            return ret;
1614
0
    }
1615
1616
0
    if (!(ffcodec(avctx->codec)->caps_internal & FF_CODEC_CAP_SETS_FRAME_PROPS)) {
1617
0
        const AVPacket *pkt = avctx->internal->last_pkt_props;
1618
1619
0
        ret = ff_decode_frame_props_from_pkt(avctx, frame, pkt);
1620
0
        if (ret < 0)
1621
0
            return ret;
1622
0
    }
1623
1624
0
    ret = fill_frame_props(avctx, frame);
1625
0
    if (ret < 0)
1626
0
        return ret;
1627
1628
0
    switch (avctx->codec->type) {
1629
0
    case AVMEDIA_TYPE_VIDEO:
1630
0
        if (frame->width && frame->height &&
1631
0
            av_image_check_sar(frame->width, frame->height,
1632
0
                               frame->sample_aspect_ratio) < 0) {
1633
0
            av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
1634
0
                   frame->sample_aspect_ratio.num,
1635
0
                   frame->sample_aspect_ratio.den);
1636
0
            frame->sample_aspect_ratio = (AVRational){ 0, 1 };
1637
0
        }
1638
0
        break;
1639
0
    }
1640
1641
#if CONFIG_LIBLCEVC_DEC
1642
    AVCodecInternal    *avci = avctx->internal;
1643
    DecodeContext        *dc = decode_ctx(avci);
1644
1645
    dc->lcevc.frame = dc->lcevc.ctx &&
1646
                      av_frame_get_side_data(frame, AV_FRAME_DATA_LCEVC);
1647
1648
    if (dc->lcevc.frame) {
1649
        ret = ff_lcevc_parse_frame(dc->lcevc.ctx, frame, &dc->lcevc.format,
1650
                                   &dc->lcevc.width, &dc->lcevc.height);
1651
        if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
1652
            return ret;
1653
1654
        // force get_buffer2() to allocate the base frame using the same dimensions
1655
        // as the final enhanced frame, in order to prevent reinitializing the buffer
1656
        // pools unnecessarely
1657
        if (!ret && dc->lcevc.width && dc->lcevc.height) {
1658
            dc->lcevc.base_width  = frame->width;
1659
            dc->lcevc.base_height = frame->height;
1660
            frame->width  = dc->lcevc.width;
1661
            frame->height = dc->lcevc.height;
1662
        } else
1663
            dc->lcevc.frame = 0;
1664
    }
1665
#endif
1666
1667
0
    return 0;
1668
0
}
1669
1670
static void validate_avframe_allocation(AVCodecContext *avctx, AVFrame *frame)
1671
0
{
1672
0
    if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1673
0
        int i;
1674
0
        int num_planes = av_pix_fmt_count_planes(frame->format);
1675
0
        const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
1676
0
        int flags = desc ? desc->flags : 0;
1677
0
        if (num_planes == 1 && (flags & AV_PIX_FMT_FLAG_PAL))
1678
0
            num_planes = 2;
1679
0
        for (i = 0; i < num_planes; i++) {
1680
0
            av_assert0(frame->data[i]);
1681
0
        }
1682
        // For formats without data like hwaccel allow unused pointers to be non-NULL.
1683
0
        for (i = num_planes; num_planes > 0 && i < FF_ARRAY_ELEMS(frame->data); i++) {
1684
0
            if (frame->data[i])
1685
0
                av_log(avctx, AV_LOG_ERROR, "Buffer returned by get_buffer2() did not zero unused plane pointers\n");
1686
0
            frame->data[i] = NULL;
1687
0
        }
1688
0
    }
1689
0
}
1690
1691
static void decode_data_free(AVRefStructOpaque unused, void *obj)
1692
0
{
1693
0
    FrameDecodeData *fdd = obj;
1694
1695
0
    if (CONFIG_LIBLCEVC_DEC)
1696
0
        av_refstruct_unref(&fdd->post_process_opaque);
1697
0
    else
1698
0
        av_assert1(!fdd->post_process_opaque);
1699
1700
0
    if (fdd->hwaccel_priv_free)
1701
0
        fdd->hwaccel_priv_free(fdd->hwaccel_priv);
1702
0
}
1703
1704
int ff_attach_decode_data(AVCodecContext *avctx, AVFrame *frame)
1705
0
{
1706
0
    FrameDecodeData *fdd;
1707
1708
0
    av_assert1(!frame->private_ref);
1709
0
    av_refstruct_unref(&frame->private_ref);
1710
1711
0
    fdd = av_refstruct_alloc_ext(sizeof(*fdd), 0, NULL, decode_data_free);
1712
0
    if (!fdd)
1713
0
        return AVERROR(ENOMEM);
1714
1715
0
    frame->private_ref = fdd;
1716
1717
#if CONFIG_LIBLCEVC_DEC
1718
    AVCodecInternal    *avci = avctx->internal;
1719
    DecodeContext        *dc = decode_ctx(avci);
1720
1721
    if (!dc->lcevc.frame) {
1722
        dc->lcevc.frame = dc->lcevc.ctx &&
1723
                          av_frame_get_side_data(frame, AV_FRAME_DATA_LCEVC);
1724
1725
        if (dc->lcevc.frame) {
1726
            int ret = ff_lcevc_parse_frame(dc->lcevc.ctx, frame, &dc->lcevc.format,
1727
                                           &dc->lcevc.width, &dc->lcevc.height);
1728
            if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
1729
                return ret;
1730
1731
            if (!ret && dc->lcevc.width && dc->lcevc.height) {
1732
                dc->lcevc.base_width  = frame->width;
1733
                dc->lcevc.base_height = frame->height;
1734
            } else
1735
                dc->lcevc.frame = 0;
1736
        }
1737
    }
1738
    if (dc->lcevc.frame) {
1739
        FFLCEVCFrame *frame_ctx;
1740
        int ret;
1741
1742
        if (fdd->post_process || !dc->lcevc.width || !dc->lcevc.height) {
1743
            dc->lcevc.frame = 0;
1744
            return 0;
1745
        }
1746
1747
        frame_ctx = av_refstruct_pool_get(dc->lcevc.ctx->frame_pool);
1748
        if (!frame_ctx)
1749
            return AVERROR(ENOMEM);
1750
1751
        frame_ctx->lcevc = av_refstruct_ref(dc->lcevc.ctx);
1752
        frame_ctx->frame->width  = dc->lcevc.width;
1753
        frame_ctx->frame->height = dc->lcevc.height;
1754
        frame_ctx->frame->format = dc->lcevc.format;
1755
        avctx->bits_per_raw_sample = av_pix_fmt_desc_get(dc->lcevc.format)->comp[0].depth;
1756
1757
        frame->width  = dc->lcevc.base_width;
1758
        frame->height = dc->lcevc.base_height;
1759
1760
        ret = avctx->get_buffer2(avctx, frame_ctx->frame, 0);
1761
        if (ret < 0) {
1762
            av_refstruct_unref(&frame_ctx);
1763
            return ret;
1764
        }
1765
1766
        validate_avframe_allocation(avctx, frame_ctx->frame);
1767
1768
        fdd->post_process_opaque = frame_ctx;
1769
        fdd->post_process = ff_lcevc_process;
1770
    }
1771
    dc->lcevc.frame = 0;
1772
#endif
1773
1774
0
    return 0;
1775
0
}
1776
1777
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
1778
0
{
1779
0
    const FFHWAccel *hwaccel = ffhwaccel(avctx->hwaccel);
1780
0
    int override_dimensions = 1;
1781
0
    int ret;
1782
1783
0
    av_assert0(ff_codec_is_decoder(avctx->codec));
1784
1785
0
    if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1786
0
        if ((unsigned)avctx->width > INT_MAX - STRIDE_ALIGN ||
1787
0
            (ret = av_image_check_size2(FFALIGN(avctx->width, STRIDE_ALIGN), avctx->height, avctx->max_pixels, AV_PIX_FMT_NONE, 0, avctx)) < 0 || avctx->pix_fmt<0) {
1788
0
            av_log(avctx, AV_LOG_ERROR, "video_get_buffer: image parameters invalid\n");
1789
0
            ret = AVERROR(EINVAL);
1790
0
            goto fail;
1791
0
        }
1792
1793
0
        if (frame->width <= 0 || frame->height <= 0) {
1794
0
            frame->width  = FFMAX(avctx->width,  AV_CEIL_RSHIFT(avctx->coded_width,  avctx->lowres));
1795
0
            frame->height = FFMAX(avctx->height, AV_CEIL_RSHIFT(avctx->coded_height, avctx->lowres));
1796
0
            override_dimensions = 0;
1797
0
        }
1798
1799
0
        if (frame->data[0] || frame->data[1] || frame->data[2] || frame->data[3]) {
1800
0
            av_log(avctx, AV_LOG_ERROR, "pic->data[*]!=NULL in get_buffer_internal\n");
1801
0
            ret = AVERROR(EINVAL);
1802
0
            goto fail;
1803
0
        }
1804
0
    } else if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
1805
0
        if (frame->nb_samples * (int64_t)avctx->ch_layout.nb_channels > avctx->max_samples) {
1806
0
            av_log(avctx, AV_LOG_ERROR, "samples per frame %d, exceeds max_samples %"PRId64"\n", frame->nb_samples, avctx->max_samples);
1807
0
            ret = AVERROR(EINVAL);
1808
0
            goto fail;
1809
0
        }
1810
0
    }
1811
0
    ret = ff_decode_frame_props(avctx, frame);
1812
0
    if (ret < 0)
1813
0
        goto fail;
1814
1815
0
    if (hwaccel) {
1816
0
        if (hwaccel->alloc_frame) {
1817
0
            ret = hwaccel->alloc_frame(avctx, frame);
1818
0
            goto end;
1819
0
        }
1820
0
    } else {
1821
0
        avctx->sw_pix_fmt = avctx->pix_fmt;
1822
0
    }
1823
1824
0
    ret = avctx->get_buffer2(avctx, frame, flags);
1825
0
    if (ret < 0)
1826
0
        goto fail;
1827
1828
0
    validate_avframe_allocation(avctx, frame);
1829
1830
0
    ret = ff_attach_decode_data(avctx, frame);
1831
0
    if (ret < 0)
1832
0
        goto fail;
1833
1834
0
end:
1835
0
    if (avctx->codec_type == AVMEDIA_TYPE_VIDEO && !override_dimensions &&
1836
0
        !(ffcodec(avctx->codec)->caps_internal & FF_CODEC_CAP_EXPORTS_CROPPING)) {
1837
0
        frame->width  = avctx->width;
1838
0
        frame->height = avctx->height;
1839
0
    }
1840
1841
0
fail:
1842
0
    if (ret < 0) {
1843
0
        av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
1844
0
        av_frame_unref(frame);
1845
0
    }
1846
1847
0
    return ret;
1848
0
}
1849
1850
static int reget_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
1851
0
{
1852
0
    int ret;
1853
1854
0
    av_assert0(avctx->codec_type == AVMEDIA_TYPE_VIDEO);
1855
1856
    // make sure the discard flag does not persist
1857
0
    frame->flags &= ~AV_FRAME_FLAG_DISCARD;
1858
1859
0
    if (frame->data[0] && (frame->width != avctx->width || frame->height != avctx->height || frame->format != avctx->pix_fmt)) {
1860
0
        av_log(avctx, AV_LOG_WARNING, "Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()\n",
1861
0
               frame->width, frame->height, av_get_pix_fmt_name(frame->format), avctx->width, avctx->height, av_get_pix_fmt_name(avctx->pix_fmt));
1862
0
        av_frame_unref(frame);
1863
0
    }
1864
1865
0
    if (!frame->data[0])
1866
0
        return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
1867
1868
0
    av_frame_side_data_free(&frame->side_data, &frame->nb_side_data);
1869
1870
0
    if ((flags & FF_REGET_BUFFER_FLAG_READONLY) || av_frame_is_writable(frame))
1871
0
        return ff_decode_frame_props(avctx, frame);
1872
1873
0
    uint8_t *data[AV_VIDEO_MAX_PLANES];
1874
0
    AVBufferRef *buf[AV_VIDEO_MAX_PLANES];
1875
0
    int linesize[AV_VIDEO_MAX_PLANES];
1876
1877
0
    static_assert(AV_VIDEO_MAX_PLANES <= FF_ARRAY_ELEMS(frame->data) &&
1878
0
                  AV_VIDEO_MAX_PLANES <= FF_ARRAY_ELEMS(frame->buf)  &&
1879
0
                  AV_VIDEO_MAX_PLANES <= FF_ARRAY_ELEMS(frame->linesize),
1880
0
                  "Copying code needs to be adjusted");
1881
0
    static_assert(sizeof(frame->linesize[0]) == sizeof(linesize[0]),
1882
0
                  "linesize needs to be switched to ptrdiff_t");
1883
1884
0
    for (int i = 0; i < AV_VIDEO_MAX_PLANES; ++i) {
1885
0
        data[i]       = frame->data[i];
1886
0
        linesize[i]   = frame->linesize[i];
1887
0
        buf[i]        = frame->buf[i];
1888
0
        frame->buf[i] = NULL;
1889
0
    }
1890
0
    av_assert1(!frame->buf[AV_VIDEO_MAX_PLANES] && !frame->extended_buf);
1891
1892
0
    av_frame_unref(frame);
1893
1894
0
    ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
1895
0
    if (ret >= 0) {
1896
0
        av_image_copy2(frame->data, frame->linesize,
1897
0
                       data, linesize,
1898
0
                       frame->format, frame->width, frame->height);
1899
0
    }
1900
0
    for (int i = 0; i < AV_VIDEO_MAX_PLANES; ++i)
1901
0
        av_buffer_unref(&buf[i]);
1902
1903
0
    return ret;
1904
0
}
1905
1906
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
1907
0
{
1908
0
    int ret = reget_buffer_internal(avctx, frame, flags);
1909
0
    if (ret < 0)
1910
0
        av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
1911
0
    return ret;
1912
0
}
1913
1914
typedef struct ProgressInternal {
1915
    ThreadProgress progress;
1916
    struct AVFrame *f;
1917
} ProgressInternal;
1918
1919
static void check_progress_consistency(const ProgressFrame *f)
1920
0
{
1921
0
    av_assert1(!!f->f == !!f->progress);
1922
0
    av_assert1(!f->progress || f->progress->f == f->f);
1923
0
}
1924
1925
int ff_progress_frame_alloc(AVCodecContext *avctx, ProgressFrame *f)
1926
0
{
1927
0
    AVRefStructPool *pool = avctx->internal->progress_frame_pool;
1928
1929
0
    av_assert1(!f->f && !f->progress);
1930
1931
0
    f->progress = av_refstruct_pool_get(pool);
1932
0
    if (!f->progress)
1933
0
        return AVERROR(ENOMEM);
1934
1935
0
    f->f = f->progress->f;
1936
0
    return 0;
1937
0
}
1938
1939
int ff_progress_frame_get_buffer(AVCodecContext *avctx, ProgressFrame *f, int flags)
1940
0
{
1941
0
    int ret = ff_progress_frame_alloc(avctx, f);
1942
0
    if (ret < 0)
1943
0
        return ret;
1944
1945
0
    ret = ff_thread_get_buffer(avctx, f->progress->f, flags);
1946
0
    if (ret < 0) {
1947
0
        f->f = NULL;
1948
0
        av_refstruct_unref(&f->progress);
1949
0
        return ret;
1950
0
    }
1951
0
    return 0;
1952
0
}
1953
1954
void ff_progress_frame_ref(ProgressFrame *dst, const ProgressFrame *src)
1955
0
{
1956
0
    av_assert1(src->progress && src->f && src->f == src->progress->f);
1957
0
    av_assert1(!dst->f && !dst->progress);
1958
0
    dst->f = src->f;
1959
0
    dst->progress = av_refstruct_ref(src->progress);
1960
0
}
1961
1962
void ff_progress_frame_unref(ProgressFrame *f)
1963
0
{
1964
0
    check_progress_consistency(f);
1965
0
    f->f = NULL;
1966
0
    av_refstruct_unref(&f->progress);
1967
0
}
1968
1969
void ff_progress_frame_replace(ProgressFrame *dst, const ProgressFrame *src)
1970
0
{
1971
0
    if (dst == src)
1972
0
        return;
1973
0
    ff_progress_frame_unref(dst);
1974
0
    check_progress_consistency(src);
1975
0
    if (src->f)
1976
0
        ff_progress_frame_ref(dst, src);
1977
0
}
1978
1979
void ff_progress_frame_report(ProgressFrame *f, int n)
1980
0
{
1981
0
    ff_thread_progress_report(&f->progress->progress, n);
1982
0
}
1983
1984
void ff_progress_frame_await(const ProgressFrame *f, int n)
1985
0
{
1986
0
    ff_thread_progress_await(&f->progress->progress, n);
1987
0
}
1988
1989
#if !HAVE_THREADS
1990
enum ThreadingStatus ff_thread_sync_ref(AVCodecContext *avctx, size_t offset)
1991
{
1992
    return FF_THREAD_NO_FRAME_THREADING;
1993
}
1994
#endif /* !HAVE_THREADS */
1995
1996
static av_cold int progress_frame_pool_init_cb(AVRefStructOpaque opaque, void *obj)
1997
0
{
1998
0
    const AVCodecContext *avctx = opaque.nc;
1999
0
    ProgressInternal *progress = obj;
2000
0
    int ret;
2001
2002
0
    ret = ff_thread_progress_init(&progress->progress, avctx->active_thread_type & FF_THREAD_FRAME);
2003
0
    if (ret < 0)
2004
0
        return ret;
2005
2006
0
    progress->f = av_frame_alloc();
2007
0
    if (!progress->f)
2008
0
        return AVERROR(ENOMEM);
2009
2010
0
    return 0;
2011
0
}
2012
2013
static void progress_frame_pool_reset_cb(AVRefStructOpaque unused, void *obj)
2014
0
{
2015
0
    ProgressInternal *progress = obj;
2016
2017
0
    ff_thread_progress_reset(&progress->progress);
2018
0
    av_frame_unref(progress->f);
2019
0
}
2020
2021
static av_cold void progress_frame_pool_free_entry_cb(AVRefStructOpaque opaque, void *obj)
2022
0
{
2023
0
    ProgressInternal *progress = obj;
2024
2025
0
    ff_thread_progress_destroy(&progress->progress);
2026
0
    av_frame_free(&progress->f);
2027
0
}
2028
2029
av_cold int ff_decode_preinit(AVCodecContext *avctx)
2030
0
{
2031
0
    AVCodecInternal *avci = avctx->internal;
2032
0
    DecodeContext     *dc = decode_ctx(avci);
2033
0
    int ret = 0;
2034
2035
0
    dc->initial_pict_type = AV_PICTURE_TYPE_NONE;
2036
0
    if (avctx->codec_descriptor->props & AV_CODEC_PROP_INTRA_ONLY) {
2037
0
        dc->intra_only_flag = AV_FRAME_FLAG_KEY;
2038
0
        if (avctx->codec_type == AVMEDIA_TYPE_VIDEO)
2039
0
            dc->initial_pict_type = AV_PICTURE_TYPE_I;
2040
0
    }
2041
2042
    /* if the decoder init function was already called previously,
2043
     * free the already allocated subtitle_header before overwriting it */
2044
0
    av_freep(&avctx->subtitle_header);
2045
2046
0
    if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
2047
0
        av_log(avctx, AV_LOG_WARNING, "The maximum value for lowres supported by the decoder is %d\n",
2048
0
               avctx->codec->max_lowres);
2049
0
        avctx->lowres = avctx->codec->max_lowres;
2050
0
    }
2051
0
    if (avctx->sub_charenc) {
2052
0
        if (avctx->codec_type != AVMEDIA_TYPE_SUBTITLE) {
2053
0
            av_log(avctx, AV_LOG_ERROR, "Character encoding is only "
2054
0
                   "supported with subtitles codecs\n");
2055
0
            return AVERROR(EINVAL);
2056
0
        } else if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB) {
2057
0
            av_log(avctx, AV_LOG_WARNING, "Codec '%s' is bitmap-based, "
2058
0
                   "subtitles character encoding will be ignored\n",
2059
0
                   avctx->codec_descriptor->name);
2060
0
            avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_DO_NOTHING;
2061
0
        } else {
2062
            /* input character encoding is set for a text based subtitle
2063
             * codec at this point */
2064
0
            if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_AUTOMATIC)
2065
0
                avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_PRE_DECODER;
2066
2067
0
            if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_PRE_DECODER) {
2068
0
#if CONFIG_ICONV
2069
0
                iconv_t cd = iconv_open("UTF-8", avctx->sub_charenc);
2070
0
                if (cd == (iconv_t)-1) {
2071
0
                    ret = AVERROR(errno);
2072
0
                    av_log(avctx, AV_LOG_ERROR, "Unable to open iconv context "
2073
0
                           "with input character encoding \"%s\"\n", avctx->sub_charenc);
2074
0
                    return ret;
2075
0
                }
2076
0
                iconv_close(cd);
2077
#else
2078
                av_log(avctx, AV_LOG_ERROR, "Character encoding subtitles "
2079
                       "conversion needs a libavcodec built with iconv support "
2080
                       "for this codec\n");
2081
                return AVERROR(ENOSYS);
2082
#endif
2083
0
            }
2084
0
        }
2085
0
    }
2086
2087
0
    dc->pts_correction_num_faulty_pts =
2088
0
    dc->pts_correction_num_faulty_dts = 0;
2089
0
    dc->pts_correction_last_pts =
2090
0
    dc->pts_correction_last_dts = INT64_MIN;
2091
2092
0
    if (   !CONFIG_GRAY && avctx->flags & AV_CODEC_FLAG_GRAY
2093
0
        && avctx->codec_descriptor->type == AVMEDIA_TYPE_VIDEO)
2094
0
        av_log(avctx, AV_LOG_WARNING,
2095
0
               "gray decoding requested but not enabled at configuration time\n");
2096
0
    if (avctx->flags2 & AV_CODEC_FLAG2_EXPORT_MVS) {
2097
0
        avctx->export_side_data |= AV_CODEC_EXPORT_DATA_MVS;
2098
0
    }
2099
2100
0
    if (avctx->nb_side_data_prefer_packet == 1 &&
2101
0
        avctx->side_data_prefer_packet[0] == -1)
2102
0
        dc->side_data_pref_mask = ~0ULL;
2103
0
    else {
2104
0
        for (unsigned i = 0; i < avctx->nb_side_data_prefer_packet; i++) {
2105
0
            int val = avctx->side_data_prefer_packet[i];
2106
2107
0
            if (val < 0 || val >= AV_PKT_DATA_NB) {
2108
0
                av_log(avctx, AV_LOG_ERROR, "Invalid side data type: %d\n", val);
2109
0
                return AVERROR(EINVAL);
2110
0
            }
2111
2112
0
            for (unsigned j = 0; ff_sd_global_map[j].packet < AV_PKT_DATA_NB; j++) {
2113
0
                if (ff_sd_global_map[j].packet == val) {
2114
0
                    val = ff_sd_global_map[j].frame;
2115
2116
                    // this code will need to be changed when we have more than
2117
                    // 64 frame side data types
2118
0
                    if (val >= 64) {
2119
0
                        av_log(avctx, AV_LOG_ERROR, "Side data type too big\n");
2120
0
                        return AVERROR_BUG;
2121
0
                    }
2122
2123
0
                    dc->side_data_pref_mask |= 1ULL << val;
2124
0
                }
2125
0
            }
2126
0
        }
2127
0
    }
2128
2129
0
    avci->in_pkt         = av_packet_alloc();
2130
0
    avci->last_pkt_props = av_packet_alloc();
2131
0
    if (!avci->in_pkt || !avci->last_pkt_props)
2132
0
        return AVERROR(ENOMEM);
2133
2134
0
    if (ffcodec(avctx->codec)->caps_internal & FF_CODEC_CAP_USES_PROGRESSFRAMES) {
2135
0
        avci->progress_frame_pool =
2136
0
            av_refstruct_pool_alloc_ext(sizeof(ProgressInternal),
2137
0
                                        AV_REFSTRUCT_POOL_FLAG_FREE_ON_INIT_ERROR,
2138
0
                                        avctx, progress_frame_pool_init_cb,
2139
0
                                        progress_frame_pool_reset_cb,
2140
0
                                        progress_frame_pool_free_entry_cb, NULL);
2141
0
        if (!avci->progress_frame_pool)
2142
0
            return AVERROR(ENOMEM);
2143
0
    }
2144
0
    ret = decode_bsfs_init(avctx);
2145
0
    if (ret < 0)
2146
0
        return ret;
2147
2148
0
    if (!(avctx->export_side_data & AV_CODEC_EXPORT_DATA_ENHANCEMENTS)) {
2149
0
        if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
2150
#if CONFIG_LIBLCEVC_DEC
2151
            ret = ff_lcevc_alloc(&dc->lcevc.ctx, av_log_get_level() + avctx->log_level_offset);
2152
            if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
2153
                return ret;
2154
#endif
2155
0
        }
2156
0
    }
2157
2158
0
    return 0;
2159
0
}
2160
2161
/**
2162
 * Check side data preference and clear existing side data from frame
2163
 * if needed.
2164
 *
2165
 * @retval 0 side data of this type can be added to frame
2166
 * @retval 1 side data of this type should not be added to frame
2167
 */
2168
static int side_data_pref(const AVCodecContext *avctx, AVFrameSideData ***sd,
2169
                          int *nb_sd, enum AVFrameSideDataType type)
2170
0
{
2171
0
    DecodeContext *dc = decode_ctx(avctx->internal);
2172
2173
    // Note: could be skipped for `type` without corresponding packet sd
2174
0
    if (av_frame_side_data_get(*sd, *nb_sd, type)) {
2175
0
        if (dc->side_data_pref_mask & (1ULL << type))
2176
0
            return 1;
2177
0
        av_frame_side_data_remove(sd, nb_sd, type);
2178
0
    }
2179
2180
0
    return 0;
2181
0
}
2182
2183
2184
int ff_frame_new_side_data(const AVCodecContext *avctx, AVFrame *frame,
2185
                           enum AVFrameSideDataType type, size_t size,
2186
                           AVFrameSideData **psd)
2187
0
{
2188
0
    AVFrameSideData *sd;
2189
2190
0
    if (side_data_pref(avctx, &frame->side_data, &frame->nb_side_data, type)) {
2191
0
        if (psd)
2192
0
            *psd = NULL;
2193
0
        return 0;
2194
0
    }
2195
2196
0
    sd = av_frame_new_side_data(frame, type, size);
2197
0
    if (psd)
2198
0
        *psd = sd;
2199
2200
0
    return sd ? 0 : AVERROR(ENOMEM);
2201
0
}
2202
2203
int ff_frame_new_side_data_from_buf_ext(const AVCodecContext *avctx,
2204
                                        AVFrameSideData ***sd, int *nb_sd,
2205
                                        enum AVFrameSideDataType type,
2206
                                        AVBufferRef **buf)
2207
0
{
2208
0
    int ret = 0;
2209
2210
0
    if (side_data_pref(avctx, sd, nb_sd, type))
2211
0
        goto finish;
2212
2213
0
    if (!av_frame_side_data_add(sd, nb_sd, type, buf, 0))
2214
0
        ret = AVERROR(ENOMEM);
2215
2216
0
finish:
2217
0
    av_buffer_unref(buf);
2218
2219
0
    return ret;
2220
0
}
2221
2222
int ff_frame_new_side_data_from_buf(const AVCodecContext *avctx,
2223
                                    AVFrame *frame, enum AVFrameSideDataType type,
2224
                                    AVBufferRef **buf)
2225
0
{
2226
0
    return ff_frame_new_side_data_from_buf_ext(avctx,
2227
0
                                               &frame->side_data, &frame->nb_side_data,
2228
0
                                               type, buf);
2229
0
}
2230
2231
int ff_decode_mastering_display_new_ext(const AVCodecContext *avctx,
2232
                                        AVFrameSideData ***sd, int *nb_sd,
2233
                                        struct AVMasteringDisplayMetadata **mdm)
2234
0
{
2235
0
    AVBufferRef *buf;
2236
0
    size_t size;
2237
2238
0
    if (side_data_pref(avctx, sd, nb_sd, AV_FRAME_DATA_MASTERING_DISPLAY_METADATA)) {
2239
0
        *mdm = NULL;
2240
0
        return 0;
2241
0
    }
2242
2243
0
    *mdm = av_mastering_display_metadata_alloc_size(&size);
2244
0
    if (!*mdm)
2245
0
        return AVERROR(ENOMEM);
2246
2247
0
    buf = av_buffer_create((uint8_t *)*mdm, size, NULL, NULL, 0);
2248
0
    if (!buf) {
2249
0
        av_freep(mdm);
2250
0
        return AVERROR(ENOMEM);
2251
0
    }
2252
2253
0
    if (!av_frame_side_data_add(sd, nb_sd, AV_FRAME_DATA_MASTERING_DISPLAY_METADATA,
2254
0
                                &buf, 0)) {
2255
0
        *mdm = NULL;
2256
0
        av_buffer_unref(&buf);
2257
0
        return AVERROR(ENOMEM);
2258
0
    }
2259
2260
0
    return 0;
2261
0
}
2262
2263
int ff_decode_mastering_display_new(const AVCodecContext *avctx, AVFrame *frame,
2264
                                    AVMasteringDisplayMetadata **mdm)
2265
0
{
2266
0
    if (side_data_pref(avctx, &frame->side_data, &frame->nb_side_data,
2267
0
                       AV_FRAME_DATA_MASTERING_DISPLAY_METADATA)) {
2268
0
        *mdm = NULL;
2269
0
        return 0;
2270
0
    }
2271
2272
0
    *mdm = av_mastering_display_metadata_create_side_data(frame);
2273
0
    return *mdm ? 0 : AVERROR(ENOMEM);
2274
0
}
2275
2276
int ff_decode_content_light_new_ext(const AVCodecContext *avctx,
2277
                                    AVFrameSideData ***sd, int *nb_sd,
2278
                                    AVContentLightMetadata **clm)
2279
0
{
2280
0
    AVBufferRef *buf;
2281
0
    size_t size;
2282
2283
0
    if (side_data_pref(avctx, sd, nb_sd, AV_FRAME_DATA_CONTENT_LIGHT_LEVEL)) {
2284
0
        *clm = NULL;
2285
0
        return 0;
2286
0
    }
2287
2288
0
    *clm = av_content_light_metadata_alloc(&size);
2289
0
    if (!*clm)
2290
0
        return AVERROR(ENOMEM);
2291
2292
0
    buf = av_buffer_create((uint8_t *)*clm, size, NULL, NULL, 0);
2293
0
    if (!buf) {
2294
0
        av_freep(clm);
2295
0
        return AVERROR(ENOMEM);
2296
0
    }
2297
2298
0
    if (!av_frame_side_data_add(sd, nb_sd, AV_FRAME_DATA_CONTENT_LIGHT_LEVEL,
2299
0
                                &buf, 0)) {
2300
0
        *clm = NULL;
2301
0
        av_buffer_unref(&buf);
2302
0
        return AVERROR(ENOMEM);
2303
0
    }
2304
2305
0
    return 0;
2306
0
}
2307
2308
int ff_decode_content_light_new(const AVCodecContext *avctx, AVFrame *frame,
2309
                                AVContentLightMetadata **clm)
2310
0
{
2311
0
    if (side_data_pref(avctx, &frame->side_data, &frame->nb_side_data,
2312
0
                       AV_FRAME_DATA_CONTENT_LIGHT_LEVEL)) {
2313
0
        *clm = NULL;
2314
0
        return 0;
2315
0
    }
2316
2317
0
    *clm = av_content_light_metadata_create_side_data(frame);
2318
0
    return *clm ? 0 : AVERROR(ENOMEM);
2319
0
}
2320
2321
int ff_copy_palette(void *dst, const AVPacket *src, void *logctx)
2322
0
{
2323
0
    size_t size;
2324
0
    const void *pal = av_packet_get_side_data(src, AV_PKT_DATA_PALETTE, &size);
2325
2326
0
    if (pal && size == AVPALETTE_SIZE) {
2327
0
        memcpy(dst, pal, AVPALETTE_SIZE);
2328
0
        return 1;
2329
0
    } else if (pal) {
2330
0
        av_log(logctx, AV_LOG_ERROR,
2331
0
               "Palette size %zu is wrong\n", size);
2332
0
    }
2333
0
    return 0;
2334
0
}
2335
2336
int ff_hwaccel_frame_priv_alloc(AVCodecContext *avctx, void **hwaccel_picture_private)
2337
0
{
2338
0
    const FFHWAccel *hwaccel = ffhwaccel(avctx->hwaccel);
2339
2340
0
    if (!hwaccel || !hwaccel->frame_priv_data_size)
2341
0
        return 0;
2342
2343
0
    av_assert0(!*hwaccel_picture_private);
2344
2345
0
    if (hwaccel->free_frame_priv) {
2346
0
        AVHWFramesContext *frames_ctx;
2347
2348
0
        if (!avctx->hw_frames_ctx)
2349
0
            return AVERROR(EINVAL);
2350
2351
0
        frames_ctx = (AVHWFramesContext *) avctx->hw_frames_ctx->data;
2352
0
        *hwaccel_picture_private = av_refstruct_alloc_ext(hwaccel->frame_priv_data_size, 0,
2353
0
                                                          frames_ctx->device_ctx,
2354
0
                                                          hwaccel->free_frame_priv);
2355
0
    } else {
2356
0
        *hwaccel_picture_private = av_refstruct_allocz(hwaccel->frame_priv_data_size);
2357
0
    }
2358
2359
0
    if (!*hwaccel_picture_private)
2360
0
        return AVERROR(ENOMEM);
2361
2362
0
    return 0;
2363
0
}
2364
2365
av_cold void ff_decode_flush_buffers(AVCodecContext *avctx)
2366
0
{
2367
0
    AVCodecInternal *avci = avctx->internal;
2368
0
    DecodeContext     *dc = decode_ctx(avci);
2369
2370
0
    av_packet_unref(avci->last_pkt_props);
2371
0
    av_packet_unref(avci->in_pkt);
2372
2373
0
    dc->pts_correction_num_faulty_pts =
2374
0
    dc->pts_correction_num_faulty_dts = 0;
2375
0
    dc->pts_correction_last_pts =
2376
0
    dc->pts_correction_last_dts = INT64_MIN;
2377
2378
0
    if (avci->bsf)
2379
0
        av_bsf_flush(avci->bsf);
2380
2381
0
    dc->nb_draining_errors = 0;
2382
0
    dc->draining_started   = 0;
2383
0
}
2384
2385
av_cold AVCodecInternal *ff_decode_internal_alloc(void)
2386
0
{
2387
0
    return av_mallocz(sizeof(DecodeContext));
2388
0
}
2389
2390
av_cold void ff_decode_internal_sync(AVCodecContext *dst, const AVCodecContext *src)
2391
0
{
2392
0
    const DecodeContext *src_dc = decode_ctx(src->internal);
2393
0
    DecodeContext *dst_dc = decode_ctx(dst->internal);
2394
2395
0
    dst_dc->initial_pict_type = src_dc->initial_pict_type;
2396
0
    dst_dc->intra_only_flag   = src_dc->intra_only_flag;
2397
0
    dst_dc->side_data_pref_mask = src_dc->side_data_pref_mask;
2398
#if CONFIG_LIBLCEVC_DEC
2399
    av_refstruct_replace(&dst_dc->lcevc.ctx, src_dc->lcevc.ctx);
2400
    dst_dc->lcevc.width = src_dc->lcevc.width;
2401
    dst_dc->lcevc.height = src_dc->lcevc.height;
2402
    dst_dc->lcevc.format = src_dc->lcevc.format;
2403
#endif
2404
0
}
2405
2406
av_cold void ff_decode_internal_uninit(AVCodecContext *avctx)
2407
0
{
2408
#if CONFIG_LIBLCEVC_DEC
2409
    AVCodecInternal *avci = avctx->internal;
2410
    DecodeContext *dc = decode_ctx(avci);
2411
2412
    av_refstruct_unref(&dc->lcevc.ctx);
2413
#endif
2414
0
}
2415
2416
static int attach_displaymatrix(AVCodecContext *avctx, AVFrame *frame, int orientation)
2417
0
{
2418
0
    AVFrameSideData *sd = NULL;
2419
0
    int32_t *matrix;
2420
0
    int ret;
2421
    /* invalid orientation */
2422
0
    if (orientation < 1 || orientation > 8)
2423
0
        return AVERROR_INVALIDDATA;
2424
0
    ret = ff_frame_new_side_data(avctx, frame, AV_FRAME_DATA_DISPLAYMATRIX, sizeof(int32_t) * 9, &sd);
2425
0
    if (ret < 0) {
2426
0
        av_log(avctx, AV_LOG_ERROR, "Could not allocate frame side data: %s\n", av_err2str(ret));
2427
0
        return ret;
2428
0
    }
2429
0
    if (sd) {
2430
0
        matrix = (int32_t *) sd->data;
2431
0
        ret = av_exif_orientation_to_matrix(matrix, orientation);
2432
0
    }
2433
2434
0
    return ret;
2435
0
}
2436
2437
static int exif_attach_ifd(AVCodecContext *avctx, AVFrame *frame, const AVExifMetadata *ifd, AVBufferRef **pbuf)
2438
0
{
2439
0
    const AVExifEntry *orient = NULL;
2440
0
    AVExifMetadata *cloned = NULL;
2441
0
    int ret;
2442
2443
0
    for (size_t i = 0; i < ifd->count; i++) {
2444
0
        const AVExifEntry *entry = &ifd->entries[i];
2445
0
        if (entry->id == av_exif_get_tag_id("Orientation") &&
2446
0
            entry->count > 0 && entry->type == AV_TIFF_SHORT) {
2447
0
            orient = entry;
2448
0
            break;
2449
0
        }
2450
0
    }
2451
2452
0
    if (orient) {
2453
0
        av_log(avctx, AV_LOG_DEBUG, "found EXIF orientation: %" PRIu64 "\n", orient->value.uint[0]);
2454
0
        ret = attach_displaymatrix(avctx, frame, orient->value.uint[0]);
2455
0
        if (ret < 0) {
2456
0
            av_log(avctx, AV_LOG_WARNING, "unable to attach displaymatrix from EXIF\n");
2457
0
        } else {
2458
0
            cloned = av_exif_clone_ifd(ifd);
2459
0
            if (!cloned) {
2460
0
                ret = AVERROR(ENOMEM);
2461
0
                goto end;
2462
0
            }
2463
0
            av_exif_remove_entry(avctx, cloned, orient->id, 0);
2464
0
            ifd = cloned;
2465
0
        }
2466
0
    }
2467
2468
0
    ret = av_exif_ifd_to_dict(avctx, ifd, &frame->metadata);
2469
0
    if (ret < 0)
2470
0
        goto end;
2471
2472
0
    if (cloned || !*pbuf) {
2473
0
        av_buffer_unref(pbuf);
2474
0
        ret = av_exif_write(avctx, ifd, pbuf, AV_EXIF_TIFF_HEADER);
2475
0
        if (ret < 0)
2476
0
            goto end;
2477
0
    }
2478
2479
0
    ret = ff_frame_new_side_data_from_buf(avctx, frame, AV_FRAME_DATA_EXIF, pbuf);
2480
0
    if (ret < 0)
2481
0
        goto end;
2482
2483
0
    ret = 0;
2484
2485
0
end:
2486
0
    av_buffer_unref(pbuf);
2487
0
    av_exif_free(cloned);
2488
0
    av_free(cloned);
2489
0
    return ret;
2490
0
}
2491
2492
int ff_decode_exif_attach_ifd(AVCodecContext *avctx, AVFrame *frame, const AVExifMetadata *ifd)
2493
0
{
2494
0
    AVBufferRef *dummy = NULL;
2495
0
    return exif_attach_ifd(avctx, frame, ifd, &dummy);
2496
0
}
2497
2498
int ff_decode_exif_attach_buffer(AVCodecContext *avctx, AVFrame *frame, AVBufferRef **pbuf,
2499
                                 enum AVExifHeaderMode header_mode)
2500
0
{
2501
0
    int ret;
2502
0
    AVBufferRef *data = *pbuf;
2503
0
    AVExifMetadata ifd = { 0 };
2504
2505
0
    ret = av_exif_parse_buffer(avctx, data->data, data->size, &ifd, header_mode);
2506
0
    if (ret < 0)
2507
0
        goto end;
2508
2509
0
    ret = exif_attach_ifd(avctx, frame, &ifd, pbuf);
2510
2511
0
end:
2512
0
    av_buffer_unref(pbuf);
2513
0
    av_exif_free(&ifd);
2514
0
    return ret;
2515
0
}