Coverage Report

Created: 2026-04-29 07:00

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