]> git.sesse.net Git - ffmpeg/blob - libavcodec/decode.c
avformat: Constify the API wrt AV(In|Out)putFormat
[ffmpeg] / libavcodec / decode.c
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 <stdint.h>
22 #include <string.h>
23
24 #include "config.h"
25
26 #if CONFIG_ICONV
27 # include <iconv.h>
28 #endif
29
30 #include "libavutil/avassert.h"
31 #include "libavutil/avstring.h"
32 #include "libavutil/bprint.h"
33 #include "libavutil/common.h"
34 #include "libavutil/frame.h"
35 #include "libavutil/hwcontext.h"
36 #include "libavutil/imgutils.h"
37 #include "libavutil/internal.h"
38 #include "libavutil/intmath.h"
39 #include "libavutil/opt.h"
40
41 #include "avcodec.h"
42 #include "bytestream.h"
43 #include "decode.h"
44 #include "hwconfig.h"
45 #include "internal.h"
46 #include "thread.h"
47
48 typedef struct FramePool {
49     /**
50      * Pools for each data plane. For audio all the planes have the same size,
51      * so only pools[0] is used.
52      */
53     AVBufferPool *pools[4];
54
55     /*
56      * Pool parameters
57      */
58     int format;
59     int width, height;
60     int stride_align[AV_NUM_DATA_POINTERS];
61     int linesize[4];
62     int planes;
63     int channels;
64     int samples;
65 } FramePool;
66
67 static int apply_param_change(AVCodecContext *avctx, const AVPacket *avpkt)
68 {
69     int ret;
70     buffer_size_t size;
71     const uint8_t *data;
72     uint32_t flags;
73     int64_t val;
74
75     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
76     if (!data)
77         return 0;
78
79     if (!(avctx->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE)) {
80         av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
81                "changes, but PARAM_CHANGE side data was sent to it.\n");
82         ret = AVERROR(EINVAL);
83         goto fail2;
84     }
85
86     if (size < 4)
87         goto fail;
88
89     flags = bytestream_get_le32(&data);
90     size -= 4;
91
92     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
93         if (size < 4)
94             goto fail;
95         val = bytestream_get_le32(&data);
96         if (val <= 0 || val > INT_MAX) {
97             av_log(avctx, AV_LOG_ERROR, "Invalid channel count");
98             ret = AVERROR_INVALIDDATA;
99             goto fail2;
100         }
101         avctx->channels = val;
102         size -= 4;
103     }
104     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
105         if (size < 8)
106             goto fail;
107         avctx->channel_layout = bytestream_get_le64(&data);
108         size -= 8;
109     }
110     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
111         if (size < 4)
112             goto fail;
113         val = bytestream_get_le32(&data);
114         if (val <= 0 || val > INT_MAX) {
115             av_log(avctx, AV_LOG_ERROR, "Invalid sample rate");
116             ret = AVERROR_INVALIDDATA;
117             goto fail2;
118         }
119         avctx->sample_rate = val;
120         size -= 4;
121     }
122     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
123         if (size < 8)
124             goto fail;
125         avctx->width  = bytestream_get_le32(&data);
126         avctx->height = bytestream_get_le32(&data);
127         size -= 8;
128         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
129         if (ret < 0)
130             goto fail2;
131     }
132
133     return 0;
134 fail:
135     av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
136     ret = AVERROR_INVALIDDATA;
137 fail2:
138     if (ret < 0) {
139         av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
140         if (avctx->err_recognition & AV_EF_EXPLODE)
141             return ret;
142     }
143     return 0;
144 }
145
146 #define IS_EMPTY(pkt) (!(pkt)->data)
147
148 static int copy_packet_props(AVPacket *dst, const AVPacket *src)
149 {
150     int ret = av_packet_copy_props(dst, src);
151     if (ret < 0)
152         return ret;
153
154     dst->size = src->size; // HACK: Needed for ff_decode_frame_props().
155     dst->data = (void*)1;  // HACK: Needed for IS_EMPTY().
156
157     return 0;
158 }
159
160 static int extract_packet_props(AVCodecInternal *avci, const AVPacket *pkt)
161 {
162     AVPacket tmp = { 0 };
163     int ret = 0;
164
165     if (IS_EMPTY(avci->last_pkt_props)) {
166         if (av_fifo_size(avci->pkt_props) >= sizeof(*pkt)) {
167             av_fifo_generic_read(avci->pkt_props, avci->last_pkt_props,
168                                  sizeof(*avci->last_pkt_props), NULL);
169         } else
170             return copy_packet_props(avci->last_pkt_props, pkt);
171     }
172
173     if (av_fifo_space(avci->pkt_props) < sizeof(*pkt)) {
174         ret = av_fifo_grow(avci->pkt_props, sizeof(*pkt));
175         if (ret < 0)
176             return ret;
177     }
178
179     ret = copy_packet_props(&tmp, pkt);
180     if (ret < 0)
181         return ret;
182
183     av_fifo_generic_write(avci->pkt_props, &tmp, sizeof(tmp), NULL);
184
185     return 0;
186 }
187
188 static int decode_bsfs_init(AVCodecContext *avctx)
189 {
190     AVCodecInternal *avci = avctx->internal;
191     int ret;
192
193     if (avci->bsf)
194         return 0;
195
196     ret = av_bsf_list_parse_str(avctx->codec->bsfs, &avci->bsf);
197     if (ret < 0) {
198         av_log(avctx, AV_LOG_ERROR, "Error parsing decoder bitstream filters '%s': %s\n", avctx->codec->bsfs, av_err2str(ret));
199         if (ret != AVERROR(ENOMEM))
200             ret = AVERROR_BUG;
201         goto fail;
202     }
203
204     /* We do not currently have an API for passing the input timebase into decoders,
205      * but no filters used here should actually need it.
206      * So we make up some plausible-looking number (the MPEG 90kHz timebase) */
207     avci->bsf->time_base_in = (AVRational){ 1, 90000 };
208     ret = avcodec_parameters_from_context(avci->bsf->par_in, avctx);
209     if (ret < 0)
210         goto fail;
211
212     ret = av_bsf_init(avci->bsf);
213     if (ret < 0)
214         goto fail;
215
216     return 0;
217 fail:
218     av_bsf_free(&avci->bsf);
219     return ret;
220 }
221
222 int ff_decode_get_packet(AVCodecContext *avctx, AVPacket *pkt)
223 {
224     AVCodecInternal *avci = avctx->internal;
225     int ret;
226
227     if (avci->draining)
228         return AVERROR_EOF;
229
230     ret = av_bsf_receive_packet(avci->bsf, pkt);
231     if (ret == AVERROR_EOF)
232         avci->draining = 1;
233     if (ret < 0)
234         return ret;
235
236     ret = extract_packet_props(avctx->internal, pkt);
237     if (ret < 0)
238         goto finish;
239
240     ret = apply_param_change(avctx, pkt);
241     if (ret < 0)
242         goto finish;
243
244 #if FF_API_OLD_ENCDEC
245     if (avctx->codec->receive_frame)
246         avci->compat_decode_consumed += pkt->size;
247 #endif
248
249     return 0;
250 finish:
251     av_packet_unref(pkt);
252     return ret;
253 }
254
255 /**
256  * Attempt to guess proper monotonic timestamps for decoded video frames
257  * which might have incorrect times. Input timestamps may wrap around, in
258  * which case the output will as well.
259  *
260  * @param pts the pts field of the decoded AVPacket, as passed through
261  * AVFrame.pts
262  * @param dts the dts field of the decoded AVPacket
263  * @return one of the input values, may be AV_NOPTS_VALUE
264  */
265 static int64_t guess_correct_pts(AVCodecContext *ctx,
266                                  int64_t reordered_pts, int64_t dts)
267 {
268     int64_t pts = AV_NOPTS_VALUE;
269
270     if (dts != AV_NOPTS_VALUE) {
271         ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
272         ctx->pts_correction_last_dts = dts;
273     } else if (reordered_pts != AV_NOPTS_VALUE)
274         ctx->pts_correction_last_dts = reordered_pts;
275
276     if (reordered_pts != AV_NOPTS_VALUE) {
277         ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
278         ctx->pts_correction_last_pts = reordered_pts;
279     } else if(dts != AV_NOPTS_VALUE)
280         ctx->pts_correction_last_pts = dts;
281
282     if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
283        && reordered_pts != AV_NOPTS_VALUE)
284         pts = reordered_pts;
285     else
286         pts = dts;
287
288     return pts;
289 }
290
291 /*
292  * The core of the receive_frame_wrapper for the decoders implementing
293  * the simple API. Certain decoders might consume partial packets without
294  * returning any output, so this function needs to be called in a loop until it
295  * returns EAGAIN.
296  **/
297 static inline int decode_simple_internal(AVCodecContext *avctx, AVFrame *frame, int64_t *discarded_samples)
298 {
299     AVCodecInternal   *avci = avctx->internal;
300     DecodeSimpleContext *ds = &avci->ds;
301     AVPacket           *pkt = ds->in_pkt;
302     int got_frame, actual_got_frame;
303     int ret;
304
305     if (!pkt->data && !avci->draining) {
306         av_packet_unref(pkt);
307         ret = ff_decode_get_packet(avctx, pkt);
308         if (ret < 0 && ret != AVERROR_EOF)
309             return ret;
310     }
311
312     // Some codecs (at least wma lossless) will crash when feeding drain packets
313     // after EOF was signaled.
314     if (avci->draining_done)
315         return AVERROR_EOF;
316
317     if (!pkt->data &&
318         !(avctx->codec->capabilities & AV_CODEC_CAP_DELAY ||
319           avctx->active_thread_type & FF_THREAD_FRAME))
320         return AVERROR_EOF;
321
322     got_frame = 0;
323
324     if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME) {
325         ret = ff_thread_decode_frame(avctx, frame, &got_frame, pkt);
326     } else {
327         ret = avctx->codec->decode(avctx, frame, &got_frame, pkt);
328
329         if (!(avctx->codec->caps_internal & FF_CODEC_CAP_SETS_PKT_DTS))
330             frame->pkt_dts = pkt->dts;
331         if (avctx->codec->type == AVMEDIA_TYPE_VIDEO) {
332             if(!avctx->has_b_frames)
333                 frame->pkt_pos = pkt->pos;
334             //FIXME these should be under if(!avctx->has_b_frames)
335             /* get_buffer is supposed to set frame parameters */
336             if (!(avctx->codec->capabilities & AV_CODEC_CAP_DR1)) {
337                 if (!frame->sample_aspect_ratio.num)  frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
338                 if (!frame->width)                    frame->width               = avctx->width;
339                 if (!frame->height)                   frame->height              = avctx->height;
340                 if (frame->format == AV_PIX_FMT_NONE) frame->format              = avctx->pix_fmt;
341             }
342         }
343     }
344     emms_c();
345     actual_got_frame = got_frame;
346
347     if (avctx->codec->type == AVMEDIA_TYPE_VIDEO) {
348         if (frame->flags & AV_FRAME_FLAG_DISCARD)
349             got_frame = 0;
350     } else if (avctx->codec->type == AVMEDIA_TYPE_AUDIO) {
351         uint8_t *side;
352         buffer_size_t side_size;
353         uint32_t discard_padding = 0;
354         uint8_t skip_reason = 0;
355         uint8_t discard_reason = 0;
356
357         if (ret >= 0 && got_frame) {
358             if (frame->format == AV_SAMPLE_FMT_NONE)
359                 frame->format = avctx->sample_fmt;
360             if (!frame->channel_layout)
361                 frame->channel_layout = avctx->channel_layout;
362             if (!frame->channels)
363                 frame->channels = avctx->channels;
364             if (!frame->sample_rate)
365                 frame->sample_rate = avctx->sample_rate;
366         }
367
368         side= av_packet_get_side_data(avci->last_pkt_props, AV_PKT_DATA_SKIP_SAMPLES, &side_size);
369         if(side && side_size>=10) {
370             avci->skip_samples = AV_RL32(side) * avci->skip_samples_multiplier;
371             discard_padding = AV_RL32(side + 4);
372             av_log(avctx, AV_LOG_DEBUG, "skip %d / discard %d samples due to side data\n",
373                    avci->skip_samples, (int)discard_padding);
374             skip_reason = AV_RL8(side + 8);
375             discard_reason = AV_RL8(side + 9);
376         }
377
378         if ((frame->flags & AV_FRAME_FLAG_DISCARD) && got_frame &&
379             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
380             avci->skip_samples = FFMAX(0, avci->skip_samples - frame->nb_samples);
381             got_frame = 0;
382             *discarded_samples += frame->nb_samples;
383         }
384
385         if (avci->skip_samples > 0 && got_frame &&
386             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
387             if(frame->nb_samples <= avci->skip_samples){
388                 got_frame = 0;
389                 *discarded_samples += frame->nb_samples;
390                 avci->skip_samples -= frame->nb_samples;
391                 av_log(avctx, AV_LOG_DEBUG, "skip whole frame, skip left: %d\n",
392                        avci->skip_samples);
393             } else {
394                 av_samples_copy(frame->extended_data, frame->extended_data, 0, avci->skip_samples,
395                                 frame->nb_samples - avci->skip_samples, avctx->channels, frame->format);
396                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
397                     int64_t diff_ts = av_rescale_q(avci->skip_samples,
398                                                    (AVRational){1, avctx->sample_rate},
399                                                    avctx->pkt_timebase);
400                     if(frame->pts!=AV_NOPTS_VALUE)
401                         frame->pts += diff_ts;
402 #if FF_API_PKT_PTS
403 FF_DISABLE_DEPRECATION_WARNINGS
404                     if(frame->pkt_pts!=AV_NOPTS_VALUE)
405                         frame->pkt_pts += diff_ts;
406 FF_ENABLE_DEPRECATION_WARNINGS
407 #endif
408                     if(frame->pkt_dts!=AV_NOPTS_VALUE)
409                         frame->pkt_dts += diff_ts;
410                     if (frame->pkt_duration >= diff_ts)
411                         frame->pkt_duration -= diff_ts;
412                 } else {
413                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for skipped samples.\n");
414                 }
415                 av_log(avctx, AV_LOG_DEBUG, "skip %d/%d samples\n",
416                        avci->skip_samples, frame->nb_samples);
417                 *discarded_samples += avci->skip_samples;
418                 frame->nb_samples -= avci->skip_samples;
419                 avci->skip_samples = 0;
420             }
421         }
422
423         if (discard_padding > 0 && discard_padding <= frame->nb_samples && got_frame &&
424             !(avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL)) {
425             if (discard_padding == frame->nb_samples) {
426                 *discarded_samples += frame->nb_samples;
427                 got_frame = 0;
428             } else {
429                 if(avctx->pkt_timebase.num && avctx->sample_rate) {
430                     int64_t diff_ts = av_rescale_q(frame->nb_samples - discard_padding,
431                                                    (AVRational){1, avctx->sample_rate},
432                                                    avctx->pkt_timebase);
433                     frame->pkt_duration = diff_ts;
434                 } else {
435                     av_log(avctx, AV_LOG_WARNING, "Could not update timestamps for discarded samples.\n");
436                 }
437                 av_log(avctx, AV_LOG_DEBUG, "discard %d/%d samples\n",
438                        (int)discard_padding, frame->nb_samples);
439                 frame->nb_samples -= discard_padding;
440             }
441         }
442
443         if ((avctx->flags2 & AV_CODEC_FLAG2_SKIP_MANUAL) && got_frame) {
444             AVFrameSideData *fside = av_frame_new_side_data(frame, AV_FRAME_DATA_SKIP_SAMPLES, 10);
445             if (fside) {
446                 AV_WL32(fside->data, avci->skip_samples);
447                 AV_WL32(fside->data + 4, discard_padding);
448                 AV_WL8(fside->data + 8, skip_reason);
449                 AV_WL8(fside->data + 9, discard_reason);
450                 avci->skip_samples = 0;
451             }
452         }
453     }
454
455     if (avctx->codec->type == AVMEDIA_TYPE_AUDIO &&
456         !avci->showed_multi_packet_warning &&
457         ret >= 0 && ret != pkt->size && !(avctx->codec->capabilities & AV_CODEC_CAP_SUBFRAMES)) {
458         av_log(avctx, AV_LOG_WARNING, "Multiple frames in a packet.\n");
459         avci->showed_multi_packet_warning = 1;
460     }
461
462     if (!got_frame)
463         av_frame_unref(frame);
464
465     if (ret >= 0 && avctx->codec->type == AVMEDIA_TYPE_VIDEO && !(avctx->flags & AV_CODEC_FLAG_TRUNCATED))
466         ret = pkt->size;
467
468 #if FF_API_AVCTX_TIMEBASE
469     if (avctx->framerate.num > 0 && avctx->framerate.den > 0)
470         avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
471 #endif
472
473     /* do not stop draining when actual_got_frame != 0 or ret < 0 */
474     /* got_frame == 0 but actual_got_frame != 0 when frame is discarded */
475     if (avci->draining && !actual_got_frame) {
476         if (ret < 0) {
477             /* prevent infinite loop if a decoder wrongly always return error on draining */
478             /* reasonable nb_errors_max = maximum b frames + thread count */
479             int nb_errors_max = 20 + (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME ?
480                                 avctx->thread_count : 1);
481
482             if (avci->nb_draining_errors++ >= nb_errors_max) {
483                 av_log(avctx, AV_LOG_ERROR, "Too many errors when draining, this is a bug. "
484                        "Stop draining and force EOF.\n");
485                 avci->draining_done = 1;
486                 ret = AVERROR_BUG;
487             }
488         } else {
489             avci->draining_done = 1;
490         }
491     }
492
493 #if FF_API_OLD_ENCDEC
494     avci->compat_decode_consumed += ret;
495 #endif
496
497     if (ret >= pkt->size || ret < 0) {
498         av_packet_unref(pkt);
499         av_packet_unref(avci->last_pkt_props);
500     } else {
501         int consumed = ret;
502
503         pkt->data                += consumed;
504         pkt->size                -= consumed;
505         avci->last_pkt_props->size -= consumed; // See extract_packet_props() comment.
506         pkt->pts                  = AV_NOPTS_VALUE;
507         pkt->dts                  = AV_NOPTS_VALUE;
508         avci->last_pkt_props->pts = AV_NOPTS_VALUE;
509         avci->last_pkt_props->dts = AV_NOPTS_VALUE;
510     }
511
512     if (got_frame)
513         av_assert0(frame->buf[0]);
514
515     return ret < 0 ? ret : 0;
516 }
517
518 static int decode_simple_receive_frame(AVCodecContext *avctx, AVFrame *frame)
519 {
520     int ret;
521     int64_t discarded_samples = 0;
522
523     while (!frame->buf[0]) {
524         if (discarded_samples > avctx->max_samples)
525             return AVERROR(EAGAIN);
526         ret = decode_simple_internal(avctx, frame, &discarded_samples);
527         if (ret < 0)
528             return ret;
529     }
530
531     return 0;
532 }
533
534 static int decode_receive_frame_internal(AVCodecContext *avctx, AVFrame *frame)
535 {
536     AVCodecInternal *avci = avctx->internal;
537     int ret;
538
539     av_assert0(!frame->buf[0]);
540
541     if (avctx->codec->receive_frame) {
542         ret = avctx->codec->receive_frame(avctx, frame);
543         if (ret != AVERROR(EAGAIN))
544             av_packet_unref(avci->last_pkt_props);
545     } else
546         ret = decode_simple_receive_frame(avctx, frame);
547
548     if (ret == AVERROR_EOF)
549         avci->draining_done = 1;
550
551     if (!ret) {
552         frame->best_effort_timestamp = guess_correct_pts(avctx,
553                                                          frame->pts,
554                                                          frame->pkt_dts);
555
556         /* the only case where decode data is not set should be decoders
557          * that do not call ff_get_buffer() */
558         av_assert0((frame->private_ref && frame->private_ref->size == sizeof(FrameDecodeData)) ||
559                    !(avctx->codec->capabilities & AV_CODEC_CAP_DR1));
560
561         if (frame->private_ref) {
562             FrameDecodeData *fdd = (FrameDecodeData*)frame->private_ref->data;
563
564             if (fdd->post_process) {
565                 ret = fdd->post_process(avctx, frame);
566                 if (ret < 0) {
567                     av_frame_unref(frame);
568                     return ret;
569                 }
570             }
571         }
572     }
573
574     /* free the per-frame decode data */
575     av_buffer_unref(&frame->private_ref);
576
577     return ret;
578 }
579
580 int attribute_align_arg avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt)
581 {
582     AVCodecInternal *avci = avctx->internal;
583     int ret;
584
585     if (!avcodec_is_open(avctx) || !av_codec_is_decoder(avctx->codec))
586         return AVERROR(EINVAL);
587
588     if (avctx->internal->draining)
589         return AVERROR_EOF;
590
591     if (avpkt && !avpkt->size && avpkt->data)
592         return AVERROR(EINVAL);
593
594     av_packet_unref(avci->buffer_pkt);
595     if (avpkt && (avpkt->data || avpkt->side_data_elems)) {
596         ret = av_packet_ref(avci->buffer_pkt, avpkt);
597         if (ret < 0)
598             return ret;
599     }
600
601     ret = av_bsf_send_packet(avci->bsf, avci->buffer_pkt);
602     if (ret < 0) {
603         av_packet_unref(avci->buffer_pkt);
604         return ret;
605     }
606
607     if (!avci->buffer_frame->buf[0]) {
608         ret = decode_receive_frame_internal(avctx, avci->buffer_frame);
609         if (ret < 0 && ret != AVERROR(EAGAIN) && ret != AVERROR_EOF)
610             return ret;
611     }
612
613     return 0;
614 }
615
616 static int apply_cropping(AVCodecContext *avctx, AVFrame *frame)
617 {
618     /* make sure we are noisy about decoders returning invalid cropping data */
619     if (frame->crop_left >= INT_MAX - frame->crop_right        ||
620         frame->crop_top  >= INT_MAX - frame->crop_bottom       ||
621         (frame->crop_left + frame->crop_right) >= frame->width ||
622         (frame->crop_top + frame->crop_bottom) >= frame->height) {
623         av_log(avctx, AV_LOG_WARNING,
624                "Invalid cropping information set by a decoder: "
625                "%"SIZE_SPECIFIER"/%"SIZE_SPECIFIER"/%"SIZE_SPECIFIER"/%"SIZE_SPECIFIER" "
626                "(frame size %dx%d). This is a bug, please report it\n",
627                frame->crop_left, frame->crop_right, frame->crop_top, frame->crop_bottom,
628                frame->width, frame->height);
629         frame->crop_left   = 0;
630         frame->crop_right  = 0;
631         frame->crop_top    = 0;
632         frame->crop_bottom = 0;
633         return 0;
634     }
635
636     if (!avctx->apply_cropping)
637         return 0;
638
639     return av_frame_apply_cropping(frame, avctx->flags & AV_CODEC_FLAG_UNALIGNED ?
640                                           AV_FRAME_CROP_UNALIGNED : 0);
641 }
642
643 int attribute_align_arg avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
644 {
645     AVCodecInternal *avci = avctx->internal;
646     int ret, changed;
647
648     av_frame_unref(frame);
649
650     if (!avcodec_is_open(avctx) || !av_codec_is_decoder(avctx->codec))
651         return AVERROR(EINVAL);
652
653     if (avci->buffer_frame->buf[0]) {
654         av_frame_move_ref(frame, avci->buffer_frame);
655     } else {
656         ret = decode_receive_frame_internal(avctx, frame);
657         if (ret < 0)
658             return ret;
659     }
660
661     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
662         ret = apply_cropping(avctx, frame);
663         if (ret < 0) {
664             av_frame_unref(frame);
665             return ret;
666         }
667     }
668
669     avctx->frame_number++;
670
671     if (avctx->flags & AV_CODEC_FLAG_DROPCHANGED) {
672
673         if (avctx->frame_number == 1) {
674             avci->initial_format = frame->format;
675             switch(avctx->codec_type) {
676             case AVMEDIA_TYPE_VIDEO:
677                 avci->initial_width  = frame->width;
678                 avci->initial_height = frame->height;
679                 break;
680             case AVMEDIA_TYPE_AUDIO:
681                 avci->initial_sample_rate = frame->sample_rate ? frame->sample_rate :
682                                                                  avctx->sample_rate;
683                 avci->initial_channels       = frame->channels;
684                 avci->initial_channel_layout = frame->channel_layout;
685                 break;
686             }
687         }
688
689         if (avctx->frame_number > 1) {
690             changed = avci->initial_format != frame->format;
691
692             switch(avctx->codec_type) {
693             case AVMEDIA_TYPE_VIDEO:
694                 changed |= avci->initial_width  != frame->width ||
695                            avci->initial_height != frame->height;
696                 break;
697             case AVMEDIA_TYPE_AUDIO:
698                 changed |= avci->initial_sample_rate    != frame->sample_rate ||
699                            avci->initial_sample_rate    != avctx->sample_rate ||
700                            avci->initial_channels       != frame->channels ||
701                            avci->initial_channel_layout != frame->channel_layout;
702                 break;
703             }
704
705             if (changed) {
706                 avci->changed_frames_dropped++;
707                 av_log(avctx, AV_LOG_INFO, "dropped changed frame #%d pts %"PRId64
708                                             " drop count: %d \n",
709                                             avctx->frame_number, frame->pts,
710                                             avci->changed_frames_dropped);
711                 av_frame_unref(frame);
712                 return AVERROR_INPUT_CHANGED;
713             }
714         }
715     }
716     return 0;
717 }
718
719 #if FF_API_OLD_ENCDEC
720 FF_DISABLE_DEPRECATION_WARNINGS
721 static int unrefcount_frame(AVCodecInternal *avci, AVFrame *frame)
722 {
723     int ret;
724
725     /* move the original frame to our backup */
726     av_frame_unref(avci->to_free);
727     av_frame_move_ref(avci->to_free, frame);
728
729     /* now copy everything except the AVBufferRefs back
730      * note that we make a COPY of the side data, so calling av_frame_free() on
731      * the caller's frame will work properly */
732     ret = av_frame_copy_props(frame, avci->to_free);
733     if (ret < 0)
734         return ret;
735
736     memcpy(frame->data,     avci->to_free->data,     sizeof(frame->data));
737     memcpy(frame->linesize, avci->to_free->linesize, sizeof(frame->linesize));
738     if (avci->to_free->extended_data != avci->to_free->data) {
739         int planes = avci->to_free->channels;
740         int size   = planes * sizeof(*frame->extended_data);
741
742         if (!size) {
743             av_frame_unref(frame);
744             return AVERROR_BUG;
745         }
746
747         frame->extended_data = av_malloc(size);
748         if (!frame->extended_data) {
749             av_frame_unref(frame);
750             return AVERROR(ENOMEM);
751         }
752         memcpy(frame->extended_data, avci->to_free->extended_data,
753                size);
754     } else
755         frame->extended_data = frame->data;
756
757     frame->format         = avci->to_free->format;
758     frame->width          = avci->to_free->width;
759     frame->height         = avci->to_free->height;
760     frame->channel_layout = avci->to_free->channel_layout;
761     frame->nb_samples     = avci->to_free->nb_samples;
762     frame->channels       = avci->to_free->channels;
763
764     return 0;
765 }
766
767 static int compat_decode(AVCodecContext *avctx, AVFrame *frame,
768                          int *got_frame, const AVPacket *pkt)
769 {
770     AVCodecInternal *avci = avctx->internal;
771     int ret = 0;
772
773     av_assert0(avci->compat_decode_consumed == 0);
774
775     if (avci->draining_done && pkt && pkt->size != 0) {
776         av_log(avctx, AV_LOG_WARNING, "Got unexpected packet after EOF\n");
777         avcodec_flush_buffers(avctx);
778     }
779
780     *got_frame = 0;
781
782     if (avci->compat_decode_partial_size > 0 &&
783         avci->compat_decode_partial_size != pkt->size) {
784         av_log(avctx, AV_LOG_ERROR,
785                "Got unexpected packet size after a partial decode\n");
786         ret = AVERROR(EINVAL);
787         goto finish;
788     }
789
790     if (!avci->compat_decode_partial_size) {
791         ret = avcodec_send_packet(avctx, pkt);
792         if (ret == AVERROR_EOF)
793             ret = 0;
794         else if (ret == AVERROR(EAGAIN)) {
795             /* we fully drain all the output in each decode call, so this should not
796              * ever happen */
797             ret = AVERROR_BUG;
798             goto finish;
799         } else if (ret < 0)
800             goto finish;
801     }
802
803     while (ret >= 0) {
804         ret = avcodec_receive_frame(avctx, frame);
805         if (ret < 0) {
806             if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
807                 ret = 0;
808             goto finish;
809         }
810
811         if (frame != avci->compat_decode_frame) {
812             if (!avctx->refcounted_frames) {
813                 ret = unrefcount_frame(avci, frame);
814                 if (ret < 0)
815                     goto finish;
816             }
817
818             *got_frame = 1;
819             frame = avci->compat_decode_frame;
820         } else {
821             if (!avci->compat_decode_warned) {
822                 av_log(avctx, AV_LOG_WARNING, "The deprecated avcodec_decode_* "
823                        "API cannot return all the frames for this decoder. "
824                        "Some frames will be dropped. Update your code to the "
825                        "new decoding API to fix this.\n");
826                 avci->compat_decode_warned = 1;
827             }
828         }
829
830         if (avci->draining || (!avctx->codec->bsfs && avci->compat_decode_consumed < pkt->size))
831             break;
832     }
833
834 finish:
835     if (ret == 0) {
836         /* if there are any bsfs then assume full packet is always consumed */
837         if (avctx->codec->bsfs)
838             ret = pkt->size;
839         else
840             ret = FFMIN(avci->compat_decode_consumed, pkt->size);
841     }
842     avci->compat_decode_consumed = 0;
843     avci->compat_decode_partial_size = (ret >= 0) ? pkt->size - ret : 0;
844
845     return ret;
846 }
847
848 int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
849                                               int *got_picture_ptr,
850                                               const AVPacket *avpkt)
851 {
852     return compat_decode(avctx, picture, got_picture_ptr, avpkt);
853 }
854
855 int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
856                                               AVFrame *frame,
857                                               int *got_frame_ptr,
858                                               const AVPacket *avpkt)
859 {
860     return compat_decode(avctx, frame, got_frame_ptr, avpkt);
861 }
862 FF_ENABLE_DEPRECATION_WARNINGS
863 #endif
864
865 static void get_subtitle_defaults(AVSubtitle *sub)
866 {
867     memset(sub, 0, sizeof(*sub));
868     sub->pts = AV_NOPTS_VALUE;
869 }
870
871 #define UTF8_MAX_BYTES 4 /* 5 and 6 bytes sequences should not be used */
872 static int recode_subtitle(AVCodecContext *avctx, AVPacket **outpkt,
873                            AVPacket *inpkt, AVPacket *buf_pkt)
874 {
875 #if CONFIG_ICONV
876     iconv_t cd = (iconv_t)-1;
877     int ret = 0;
878     char *inb, *outb;
879     size_t inl, outl;
880 #endif
881
882     if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0) {
883         *outpkt = inpkt;
884         return 0;
885     }
886
887 #if CONFIG_ICONV
888     inb = inpkt->data;
889     inl = inpkt->size;
890
891     if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
892         av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
893         return AVERROR(ERANGE);
894     }
895
896     cd = iconv_open("UTF-8", avctx->sub_charenc);
897     av_assert0(cd != (iconv_t)-1);
898
899     ret = av_new_packet(buf_pkt, inl * UTF8_MAX_BYTES);
900     if (ret < 0)
901         goto end;
902     ret = av_packet_copy_props(buf_pkt, inpkt);
903     if (ret < 0)
904         goto end;
905     outb = buf_pkt->data;
906     outl = buf_pkt->size;
907
908     if (iconv(cd, &inb, &inl, &outb, &outl) == (size_t)-1 ||
909         iconv(cd, NULL, NULL, &outb, &outl) == (size_t)-1 ||
910         outl >= buf_pkt->size || inl != 0) {
911         ret = FFMIN(AVERROR(errno), -1);
912         av_log(avctx, AV_LOG_ERROR, "Unable to recode subtitle event \"%s\" "
913                "from %s to UTF-8\n", inpkt->data, avctx->sub_charenc);
914         goto end;
915     }
916     buf_pkt->size -= outl;
917     memset(buf_pkt->data + buf_pkt->size, 0, outl);
918     *outpkt = buf_pkt;
919
920     ret = 0;
921 end:
922     if (ret < 0)
923         av_packet_unref(buf_pkt);
924     if (cd != (iconv_t)-1)
925         iconv_close(cd);
926     return ret;
927 #else
928     av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
929     return AVERROR(EINVAL);
930 #endif
931 }
932
933 static int utf8_check(const uint8_t *str)
934 {
935     const uint8_t *byte;
936     uint32_t codepoint, min;
937
938     while (*str) {
939         byte = str;
940         GET_UTF8(codepoint, *(byte++), return 0;);
941         min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
942               1 << (5 * (byte - str) - 4);
943         if (codepoint < min || codepoint >= 0x110000 ||
944             codepoint == 0xFFFE /* BOM */ ||
945             codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
946             return 0;
947         str = byte;
948     }
949     return 1;
950 }
951
952 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
953                              int *got_sub_ptr,
954                              AVPacket *avpkt)
955 {
956     int ret = 0;
957
958     if (!avpkt->data && avpkt->size) {
959         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
960         return AVERROR(EINVAL);
961     }
962     if (!avctx->codec)
963         return AVERROR(EINVAL);
964     if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
965         av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
966         return AVERROR(EINVAL);
967     }
968
969     *got_sub_ptr = 0;
970     get_subtitle_defaults(sub);
971
972     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
973         AVCodecInternal *avci = avctx->internal;
974         AVPacket *pkt;
975
976         ret = recode_subtitle(avctx, &pkt, avpkt, avci->buffer_pkt);
977         if (ret < 0)
978             return ret;
979
980         if (avctx->pkt_timebase.num && avpkt->pts != AV_NOPTS_VALUE)
981             sub->pts = av_rescale_q(avpkt->pts,
982                                     avctx->pkt_timebase, AV_TIME_BASE_Q);
983         ret = avctx->codec->decode(avctx, sub, got_sub_ptr, pkt);
984         av_assert1((ret >= 0) >= !!*got_sub_ptr &&
985                    !!*got_sub_ptr >= !!sub->num_rects);
986
987         if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
988             avctx->pkt_timebase.num) {
989             AVRational ms = { 1, 1000 };
990             sub->end_display_time = av_rescale_q(avpkt->duration,
991                                                  avctx->pkt_timebase, ms);
992         }
993
994         if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB)
995             sub->format = 0;
996         else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
997             sub->format = 1;
998
999         for (unsigned i = 0; i < sub->num_rects; i++) {
1000             if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_IGNORE &&
1001                 sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
1002                 av_log(avctx, AV_LOG_ERROR,
1003                        "Invalid UTF-8 in decoded subtitles text; "
1004                        "maybe missing -sub_charenc option\n");
1005                 avsubtitle_free(sub);
1006                 ret = AVERROR_INVALIDDATA;
1007                 break;
1008             }
1009         }
1010
1011         if (*got_sub_ptr)
1012             avctx->frame_number++;
1013
1014         if (pkt == avci->buffer_pkt) // did we recode?
1015             av_packet_unref(avci->buffer_pkt);
1016     }
1017
1018     return ret;
1019 }
1020
1021 enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *avctx,
1022                                               const enum AVPixelFormat *fmt)
1023 {
1024     const AVPixFmtDescriptor *desc;
1025     const AVCodecHWConfig *config;
1026     int i, n;
1027
1028     // If a device was supplied when the codec was opened, assume that the
1029     // user wants to use it.
1030     if (avctx->hw_device_ctx && avctx->codec->hw_configs) {
1031         AVHWDeviceContext *device_ctx =
1032             (AVHWDeviceContext*)avctx->hw_device_ctx->data;
1033         for (i = 0;; i++) {
1034             config = &avctx->codec->hw_configs[i]->public;
1035             if (!config)
1036                 break;
1037             if (!(config->methods &
1038                   AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX))
1039                 continue;
1040             if (device_ctx->type != config->device_type)
1041                 continue;
1042             for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1043                 if (config->pix_fmt == fmt[n])
1044                     return fmt[n];
1045             }
1046         }
1047     }
1048     // No device or other setup, so we have to choose from things which
1049     // don't any other external information.
1050
1051     // If the last element of the list is a software format, choose it
1052     // (this should be best software format if any exist).
1053     for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++);
1054     desc = av_pix_fmt_desc_get(fmt[n - 1]);
1055     if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
1056         return fmt[n - 1];
1057
1058     // Finally, traverse the list in order and choose the first entry
1059     // with no external dependencies (if there is no hardware configuration
1060     // information available then this just picks the first entry).
1061     for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1062         for (i = 0;; i++) {
1063             config = avcodec_get_hw_config(avctx->codec, i);
1064             if (!config)
1065                 break;
1066             if (config->pix_fmt == fmt[n])
1067                 break;
1068         }
1069         if (!config) {
1070             // No specific config available, so the decoder must be able
1071             // to handle this format without any additional setup.
1072             return fmt[n];
1073         }
1074         if (config->methods & AV_CODEC_HW_CONFIG_METHOD_INTERNAL) {
1075             // Usable with only internal setup.
1076             return fmt[n];
1077         }
1078     }
1079
1080     // Nothing is usable, give up.
1081     return AV_PIX_FMT_NONE;
1082 }
1083
1084 int ff_decode_get_hw_frames_ctx(AVCodecContext *avctx,
1085                                 enum AVHWDeviceType dev_type)
1086 {
1087     AVHWDeviceContext *device_ctx;
1088     AVHWFramesContext *frames_ctx;
1089     int ret;
1090
1091     if (!avctx->hwaccel)
1092         return AVERROR(ENOSYS);
1093
1094     if (avctx->hw_frames_ctx)
1095         return 0;
1096     if (!avctx->hw_device_ctx) {
1097         av_log(avctx, AV_LOG_ERROR, "A hardware frames or device context is "
1098                 "required for hardware accelerated decoding.\n");
1099         return AVERROR(EINVAL);
1100     }
1101
1102     device_ctx = (AVHWDeviceContext *)avctx->hw_device_ctx->data;
1103     if (device_ctx->type != dev_type) {
1104         av_log(avctx, AV_LOG_ERROR, "Device type %s expected for hardware "
1105                "decoding, but got %s.\n", av_hwdevice_get_type_name(dev_type),
1106                av_hwdevice_get_type_name(device_ctx->type));
1107         return AVERROR(EINVAL);
1108     }
1109
1110     ret = avcodec_get_hw_frames_parameters(avctx,
1111                                            avctx->hw_device_ctx,
1112                                            avctx->hwaccel->pix_fmt,
1113                                            &avctx->hw_frames_ctx);
1114     if (ret < 0)
1115         return ret;
1116
1117     frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1118
1119
1120     if (frames_ctx->initial_pool_size) {
1121         // We guarantee 4 base work surfaces. The function above guarantees 1
1122         // (the absolute minimum), so add the missing count.
1123         frames_ctx->initial_pool_size += 3;
1124     }
1125
1126     ret = av_hwframe_ctx_init(avctx->hw_frames_ctx);
1127     if (ret < 0) {
1128         av_buffer_unref(&avctx->hw_frames_ctx);
1129         return ret;
1130     }
1131
1132     return 0;
1133 }
1134
1135 int avcodec_get_hw_frames_parameters(AVCodecContext *avctx,
1136                                      AVBufferRef *device_ref,
1137                                      enum AVPixelFormat hw_pix_fmt,
1138                                      AVBufferRef **out_frames_ref)
1139 {
1140     AVBufferRef *frames_ref = NULL;
1141     const AVCodecHWConfigInternal *hw_config;
1142     const AVHWAccel *hwa;
1143     int i, ret;
1144
1145     for (i = 0;; i++) {
1146         hw_config = avctx->codec->hw_configs[i];
1147         if (!hw_config)
1148             return AVERROR(ENOENT);
1149         if (hw_config->public.pix_fmt == hw_pix_fmt)
1150             break;
1151     }
1152
1153     hwa = hw_config->hwaccel;
1154     if (!hwa || !hwa->frame_params)
1155         return AVERROR(ENOENT);
1156
1157     frames_ref = av_hwframe_ctx_alloc(device_ref);
1158     if (!frames_ref)
1159         return AVERROR(ENOMEM);
1160
1161     ret = hwa->frame_params(avctx, frames_ref);
1162     if (ret >= 0) {
1163         AVHWFramesContext *frames_ctx = (AVHWFramesContext*)frames_ref->data;
1164
1165         if (frames_ctx->initial_pool_size) {
1166             // If the user has requested that extra output surfaces be
1167             // available then add them here.
1168             if (avctx->extra_hw_frames > 0)
1169                 frames_ctx->initial_pool_size += avctx->extra_hw_frames;
1170
1171             // If frame threading is enabled then an extra surface per thread
1172             // is also required.
1173             if (avctx->active_thread_type & FF_THREAD_FRAME)
1174                 frames_ctx->initial_pool_size += avctx->thread_count;
1175         }
1176
1177         *out_frames_ref = frames_ref;
1178     } else {
1179         av_buffer_unref(&frames_ref);
1180     }
1181     return ret;
1182 }
1183
1184 static int hwaccel_init(AVCodecContext *avctx,
1185                         const AVCodecHWConfigInternal *hw_config)
1186 {
1187     const AVHWAccel *hwaccel;
1188     int err;
1189
1190     hwaccel = hw_config->hwaccel;
1191     if (hwaccel->capabilities & AV_HWACCEL_CODEC_CAP_EXPERIMENTAL &&
1192         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
1193         av_log(avctx, AV_LOG_WARNING, "Ignoring experimental hwaccel: %s\n",
1194                hwaccel->name);
1195         return AVERROR_PATCHWELCOME;
1196     }
1197
1198     if (hwaccel->priv_data_size) {
1199         avctx->internal->hwaccel_priv_data =
1200             av_mallocz(hwaccel->priv_data_size);
1201         if (!avctx->internal->hwaccel_priv_data)
1202             return AVERROR(ENOMEM);
1203     }
1204
1205     avctx->hwaccel = hwaccel;
1206     if (hwaccel->init) {
1207         err = hwaccel->init(avctx);
1208         if (err < 0) {
1209             av_log(avctx, AV_LOG_ERROR, "Failed setup for format %s: "
1210                    "hwaccel initialisation returned error.\n",
1211                    av_get_pix_fmt_name(hw_config->public.pix_fmt));
1212             av_freep(&avctx->internal->hwaccel_priv_data);
1213             avctx->hwaccel = NULL;
1214             return err;
1215         }
1216     }
1217
1218     return 0;
1219 }
1220
1221 static void hwaccel_uninit(AVCodecContext *avctx)
1222 {
1223     if (avctx->hwaccel && avctx->hwaccel->uninit)
1224         avctx->hwaccel->uninit(avctx);
1225
1226     av_freep(&avctx->internal->hwaccel_priv_data);
1227
1228     avctx->hwaccel = NULL;
1229
1230     av_buffer_unref(&avctx->hw_frames_ctx);
1231 }
1232
1233 int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
1234 {
1235     const AVPixFmtDescriptor *desc;
1236     enum AVPixelFormat *choices;
1237     enum AVPixelFormat ret, user_choice;
1238     const AVCodecHWConfigInternal *hw_config;
1239     const AVCodecHWConfig *config;
1240     int i, n, err;
1241
1242     // Find end of list.
1243     for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++);
1244     // Must contain at least one entry.
1245     av_assert0(n >= 1);
1246     // If a software format is available, it must be the last entry.
1247     desc = av_pix_fmt_desc_get(fmt[n - 1]);
1248     if (desc->flags & AV_PIX_FMT_FLAG_HWACCEL) {
1249         // No software format is available.
1250     } else {
1251         avctx->sw_pix_fmt = fmt[n - 1];
1252     }
1253
1254     choices = av_malloc_array(n + 1, sizeof(*choices));
1255     if (!choices)
1256         return AV_PIX_FMT_NONE;
1257
1258     memcpy(choices, fmt, (n + 1) * sizeof(*choices));
1259
1260     for (;;) {
1261         // Remove the previous hwaccel, if there was one.
1262         hwaccel_uninit(avctx);
1263
1264         user_choice = avctx->get_format(avctx, choices);
1265         if (user_choice == AV_PIX_FMT_NONE) {
1266             // Explicitly chose nothing, give up.
1267             ret = AV_PIX_FMT_NONE;
1268             break;
1269         }
1270
1271         desc = av_pix_fmt_desc_get(user_choice);
1272         if (!desc) {
1273             av_log(avctx, AV_LOG_ERROR, "Invalid format returned by "
1274                    "get_format() callback.\n");
1275             ret = AV_PIX_FMT_NONE;
1276             break;
1277         }
1278         av_log(avctx, AV_LOG_DEBUG, "Format %s chosen by get_format().\n",
1279                desc->name);
1280
1281         for (i = 0; i < n; i++) {
1282             if (choices[i] == user_choice)
1283                 break;
1284         }
1285         if (i == n) {
1286             av_log(avctx, AV_LOG_ERROR, "Invalid return from get_format(): "
1287                    "%s not in possible list.\n", desc->name);
1288             ret = AV_PIX_FMT_NONE;
1289             break;
1290         }
1291
1292         if (avctx->codec->hw_configs) {
1293             for (i = 0;; i++) {
1294                 hw_config = avctx->codec->hw_configs[i];
1295                 if (!hw_config)
1296                     break;
1297                 if (hw_config->public.pix_fmt == user_choice)
1298                     break;
1299             }
1300         } else {
1301             hw_config = NULL;
1302         }
1303
1304         if (!hw_config) {
1305             // No config available, so no extra setup required.
1306             ret = user_choice;
1307             break;
1308         }
1309         config = &hw_config->public;
1310
1311         if (config->methods &
1312             AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX &&
1313             avctx->hw_frames_ctx) {
1314             const AVHWFramesContext *frames_ctx =
1315                 (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1316             if (frames_ctx->format != user_choice) {
1317                 av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1318                        "does not match the format of the provided frames "
1319                        "context.\n", desc->name);
1320                 goto try_again;
1321             }
1322         } else if (config->methods &
1323                    AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX &&
1324                    avctx->hw_device_ctx) {
1325             const AVHWDeviceContext *device_ctx =
1326                 (AVHWDeviceContext*)avctx->hw_device_ctx->data;
1327             if (device_ctx->type != config->device_type) {
1328                 av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1329                        "does not match the type of the provided device "
1330                        "context.\n", desc->name);
1331                 goto try_again;
1332             }
1333         } else if (config->methods &
1334                    AV_CODEC_HW_CONFIG_METHOD_INTERNAL) {
1335             // Internal-only setup, no additional configuration.
1336         } else if (config->methods &
1337                    AV_CODEC_HW_CONFIG_METHOD_AD_HOC) {
1338             // Some ad-hoc configuration we can't see and can't check.
1339         } else {
1340             av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1341                    "missing configuration.\n", desc->name);
1342             goto try_again;
1343         }
1344         if (hw_config->hwaccel) {
1345             av_log(avctx, AV_LOG_DEBUG, "Format %s requires hwaccel "
1346                    "initialisation.\n", desc->name);
1347             err = hwaccel_init(avctx, hw_config);
1348             if (err < 0)
1349                 goto try_again;
1350         }
1351         ret = user_choice;
1352         break;
1353
1354     try_again:
1355         av_log(avctx, AV_LOG_DEBUG, "Format %s not usable, retrying "
1356                "get_format() without it.\n", desc->name);
1357         for (i = 0; i < n; i++) {
1358             if (choices[i] == user_choice)
1359                 break;
1360         }
1361         for (; i + 1 < n; i++)
1362             choices[i] = choices[i + 1];
1363         --n;
1364     }
1365
1366     av_freep(&choices);
1367     return ret;
1368 }
1369
1370 static void frame_pool_free(void *opaque, uint8_t *data)
1371 {
1372     FramePool *pool = (FramePool*)data;
1373     int i;
1374
1375     for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
1376         av_buffer_pool_uninit(&pool->pools[i]);
1377
1378     av_freep(&data);
1379 }
1380
1381 static AVBufferRef *frame_pool_alloc(void)
1382 {
1383     FramePool *pool = av_mallocz(sizeof(*pool));
1384     AVBufferRef *buf;
1385
1386     if (!pool)
1387         return NULL;
1388
1389     buf = av_buffer_create((uint8_t*)pool, sizeof(*pool),
1390                            frame_pool_free, NULL, 0);
1391     if (!buf) {
1392         av_freep(&pool);
1393         return NULL;
1394     }
1395
1396     return buf;
1397 }
1398
1399 static int update_frame_pool(AVCodecContext *avctx, AVFrame *frame)
1400 {
1401     FramePool *pool = avctx->internal->pool ?
1402                       (FramePool*)avctx->internal->pool->data : NULL;
1403     AVBufferRef *pool_buf;
1404     int i, ret, ch, planes;
1405
1406     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
1407         int planar = av_sample_fmt_is_planar(frame->format);
1408         ch     = frame->channels;
1409         planes = planar ? ch : 1;
1410     }
1411
1412     if (pool && pool->format == frame->format) {
1413         if (avctx->codec_type == AVMEDIA_TYPE_VIDEO &&
1414             pool->width == frame->width && pool->height == frame->height)
1415             return 0;
1416         if (avctx->codec_type == AVMEDIA_TYPE_AUDIO && pool->planes == planes &&
1417             pool->channels == ch && frame->nb_samples == pool->samples)
1418             return 0;
1419     }
1420
1421     pool_buf = frame_pool_alloc();
1422     if (!pool_buf)
1423         return AVERROR(ENOMEM);
1424     pool = (FramePool*)pool_buf->data;
1425
1426     switch (avctx->codec_type) {
1427     case AVMEDIA_TYPE_VIDEO: {
1428         int linesize[4];
1429         int w = frame->width;
1430         int h = frame->height;
1431         int unaligned;
1432         ptrdiff_t linesize1[4];
1433         size_t size[4];
1434
1435         avcodec_align_dimensions2(avctx, &w, &h, pool->stride_align);
1436
1437         do {
1438             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
1439             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
1440             ret = av_image_fill_linesizes(linesize, avctx->pix_fmt, w);
1441             if (ret < 0)
1442                 goto fail;
1443             // increase alignment of w for next try (rhs gives the lowest bit set in w)
1444             w += w & ~(w - 1);
1445
1446             unaligned = 0;
1447             for (i = 0; i < 4; i++)
1448                 unaligned |= linesize[i] % pool->stride_align[i];
1449         } while (unaligned);
1450
1451         for (i = 0; i < 4; i++)
1452             linesize1[i] = linesize[i];
1453         ret = av_image_fill_plane_sizes(size, avctx->pix_fmt, h, linesize1);
1454         if (ret < 0)
1455             goto fail;
1456
1457         for (i = 0; i < 4; i++) {
1458             pool->linesize[i] = linesize[i];
1459             if (size[i]) {
1460                 if (size[i] > INT_MAX - (16 + STRIDE_ALIGN - 1)) {
1461                     ret = AVERROR(EINVAL);
1462                     goto fail;
1463                 }
1464                 pool->pools[i] = av_buffer_pool_init(size[i] + 16 + STRIDE_ALIGN - 1,
1465                                                      CONFIG_MEMORY_POISONING ?
1466                                                         NULL :
1467                                                         av_buffer_allocz);
1468                 if (!pool->pools[i]) {
1469                     ret = AVERROR(ENOMEM);
1470                     goto fail;
1471                 }
1472             }
1473         }
1474         pool->format = frame->format;
1475         pool->width  = frame->width;
1476         pool->height = frame->height;
1477
1478         break;
1479         }
1480     case AVMEDIA_TYPE_AUDIO: {
1481         ret = av_samples_get_buffer_size(&pool->linesize[0], ch,
1482                                          frame->nb_samples, frame->format, 0);
1483         if (ret < 0)
1484             goto fail;
1485
1486         pool->pools[0] = av_buffer_pool_init(pool->linesize[0], NULL);
1487         if (!pool->pools[0]) {
1488             ret = AVERROR(ENOMEM);
1489             goto fail;
1490         }
1491
1492         pool->format     = frame->format;
1493         pool->planes     = planes;
1494         pool->channels   = ch;
1495         pool->samples = frame->nb_samples;
1496         break;
1497         }
1498     default: av_assert0(0);
1499     }
1500
1501     av_buffer_unref(&avctx->internal->pool);
1502     avctx->internal->pool = pool_buf;
1503
1504     return 0;
1505 fail:
1506     av_buffer_unref(&pool_buf);
1507     return ret;
1508 }
1509
1510 static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
1511 {
1512     FramePool *pool = (FramePool*)avctx->internal->pool->data;
1513     int planes = pool->planes;
1514     int i;
1515
1516     frame->linesize[0] = pool->linesize[0];
1517
1518     if (planes > AV_NUM_DATA_POINTERS) {
1519         frame->extended_data = av_mallocz_array(planes, sizeof(*frame->extended_data));
1520         frame->nb_extended_buf = planes - AV_NUM_DATA_POINTERS;
1521         frame->extended_buf  = av_mallocz_array(frame->nb_extended_buf,
1522                                           sizeof(*frame->extended_buf));
1523         if (!frame->extended_data || !frame->extended_buf) {
1524             av_freep(&frame->extended_data);
1525             av_freep(&frame->extended_buf);
1526             return AVERROR(ENOMEM);
1527         }
1528     } else {
1529         frame->extended_data = frame->data;
1530         av_assert0(frame->nb_extended_buf == 0);
1531     }
1532
1533     for (i = 0; i < FFMIN(planes, AV_NUM_DATA_POINTERS); i++) {
1534         frame->buf[i] = av_buffer_pool_get(pool->pools[0]);
1535         if (!frame->buf[i])
1536             goto fail;
1537         frame->extended_data[i] = frame->data[i] = frame->buf[i]->data;
1538     }
1539     for (i = 0; i < frame->nb_extended_buf; i++) {
1540         frame->extended_buf[i] = av_buffer_pool_get(pool->pools[0]);
1541         if (!frame->extended_buf[i])
1542             goto fail;
1543         frame->extended_data[i + AV_NUM_DATA_POINTERS] = frame->extended_buf[i]->data;
1544     }
1545
1546     if (avctx->debug & FF_DEBUG_BUFFERS)
1547         av_log(avctx, AV_LOG_DEBUG, "default_get_buffer called on frame %p", frame);
1548
1549     return 0;
1550 fail:
1551     av_frame_unref(frame);
1552     return AVERROR(ENOMEM);
1553 }
1554
1555 static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
1556 {
1557     FramePool *pool = (FramePool*)s->internal->pool->data;
1558     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pic->format);
1559     int i;
1560
1561     if (pic->data[0] || pic->data[1] || pic->data[2] || pic->data[3]) {
1562         av_log(s, AV_LOG_ERROR, "pic->data[*]!=NULL in avcodec_default_get_buffer\n");
1563         return -1;
1564     }
1565
1566     if (!desc) {
1567         av_log(s, AV_LOG_ERROR,
1568             "Unable to get pixel format descriptor for format %s\n",
1569             av_get_pix_fmt_name(pic->format));
1570         return AVERROR(EINVAL);
1571     }
1572
1573     memset(pic->data, 0, sizeof(pic->data));
1574     pic->extended_data = pic->data;
1575
1576     for (i = 0; i < 4 && pool->pools[i]; i++) {
1577         pic->linesize[i] = pool->linesize[i];
1578
1579         pic->buf[i] = av_buffer_pool_get(pool->pools[i]);
1580         if (!pic->buf[i])
1581             goto fail;
1582
1583         pic->data[i] = pic->buf[i]->data;
1584     }
1585     for (; i < AV_NUM_DATA_POINTERS; i++) {
1586         pic->data[i] = NULL;
1587         pic->linesize[i] = 0;
1588     }
1589     if (desc->flags & AV_PIX_FMT_FLAG_PAL ||
1590         ((desc->flags & FF_PSEUDOPAL) && pic->data[1]))
1591         avpriv_set_systematic_pal2((uint32_t *)pic->data[1], pic->format);
1592
1593     if (s->debug & FF_DEBUG_BUFFERS)
1594         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p\n", pic);
1595
1596     return 0;
1597 fail:
1598     av_frame_unref(pic);
1599     return AVERROR(ENOMEM);
1600 }
1601
1602 int avcodec_default_get_buffer2(AVCodecContext *avctx, AVFrame *frame, int flags)
1603 {
1604     int ret;
1605
1606     if (avctx->hw_frames_ctx) {
1607         ret = av_hwframe_get_buffer(avctx->hw_frames_ctx, frame, 0);
1608         frame->width  = avctx->coded_width;
1609         frame->height = avctx->coded_height;
1610         return ret;
1611     }
1612
1613     if ((ret = update_frame_pool(avctx, frame)) < 0)
1614         return ret;
1615
1616     switch (avctx->codec_type) {
1617     case AVMEDIA_TYPE_VIDEO:
1618         return video_get_buffer(avctx, frame);
1619     case AVMEDIA_TYPE_AUDIO:
1620         return audio_get_buffer(avctx, frame);
1621     default:
1622         return -1;
1623     }
1624 }
1625
1626 static int add_metadata_from_side_data(const AVPacket *avpkt, AVFrame *frame)
1627 {
1628     buffer_size_t size;
1629     const uint8_t *side_metadata;
1630
1631     AVDictionary **frame_md = &frame->metadata;
1632
1633     side_metadata = av_packet_get_side_data(avpkt,
1634                                             AV_PKT_DATA_STRINGS_METADATA, &size);
1635     return av_packet_unpack_dictionary(side_metadata, size, frame_md);
1636 }
1637
1638 int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
1639 {
1640     AVPacket *pkt = avctx->internal->last_pkt_props;
1641     static const struct {
1642         enum AVPacketSideDataType packet;
1643         enum AVFrameSideDataType frame;
1644     } sd[] = {
1645         { AV_PKT_DATA_REPLAYGAIN ,                AV_FRAME_DATA_REPLAYGAIN },
1646         { AV_PKT_DATA_DISPLAYMATRIX,              AV_FRAME_DATA_DISPLAYMATRIX },
1647         { AV_PKT_DATA_SPHERICAL,                  AV_FRAME_DATA_SPHERICAL },
1648         { AV_PKT_DATA_STEREO3D,                   AV_FRAME_DATA_STEREO3D },
1649         { AV_PKT_DATA_AUDIO_SERVICE_TYPE,         AV_FRAME_DATA_AUDIO_SERVICE_TYPE },
1650         { AV_PKT_DATA_MASTERING_DISPLAY_METADATA, AV_FRAME_DATA_MASTERING_DISPLAY_METADATA },
1651         { AV_PKT_DATA_CONTENT_LIGHT_LEVEL,        AV_FRAME_DATA_CONTENT_LIGHT_LEVEL },
1652         { AV_PKT_DATA_A53_CC,                     AV_FRAME_DATA_A53_CC },
1653         { AV_PKT_DATA_ICC_PROFILE,                AV_FRAME_DATA_ICC_PROFILE },
1654         { AV_PKT_DATA_S12M_TIMECODE,              AV_FRAME_DATA_S12M_TIMECODE },
1655     };
1656
1657     if (IS_EMPTY(pkt) && av_fifo_size(avctx->internal->pkt_props) >= sizeof(*pkt))
1658         av_fifo_generic_read(avctx->internal->pkt_props,
1659                              pkt, sizeof(*pkt), NULL);
1660
1661     frame->pts = pkt->pts;
1662 #if FF_API_PKT_PTS
1663 FF_DISABLE_DEPRECATION_WARNINGS
1664     frame->pkt_pts = pkt->pts;
1665 FF_ENABLE_DEPRECATION_WARNINGS
1666 #endif
1667     frame->pkt_pos      = pkt->pos;
1668     frame->pkt_duration = pkt->duration;
1669     frame->pkt_size     = pkt->size;
1670
1671     for (int i = 0; i < FF_ARRAY_ELEMS(sd); i++) {
1672         buffer_size_t size;
1673         uint8_t *packet_sd = av_packet_get_side_data(pkt, sd[i].packet, &size);
1674         if (packet_sd) {
1675             AVFrameSideData *frame_sd = av_frame_new_side_data(frame,
1676                                                                sd[i].frame,
1677                                                                size);
1678             if (!frame_sd)
1679                 return AVERROR(ENOMEM);
1680
1681             memcpy(frame_sd->data, packet_sd, size);
1682         }
1683     }
1684     add_metadata_from_side_data(pkt, frame);
1685
1686     if (pkt->flags & AV_PKT_FLAG_DISCARD) {
1687         frame->flags |= AV_FRAME_FLAG_DISCARD;
1688     } else {
1689         frame->flags = (frame->flags & ~AV_FRAME_FLAG_DISCARD);
1690     }
1691     frame->reordered_opaque = avctx->reordered_opaque;
1692
1693     if (frame->color_primaries == AVCOL_PRI_UNSPECIFIED)
1694         frame->color_primaries = avctx->color_primaries;
1695     if (frame->color_trc == AVCOL_TRC_UNSPECIFIED)
1696         frame->color_trc = avctx->color_trc;
1697     if (frame->colorspace == AVCOL_SPC_UNSPECIFIED)
1698         frame->colorspace = avctx->colorspace;
1699     if (frame->color_range == AVCOL_RANGE_UNSPECIFIED)
1700         frame->color_range = avctx->color_range;
1701     if (frame->chroma_location == AVCHROMA_LOC_UNSPECIFIED)
1702         frame->chroma_location = avctx->chroma_sample_location;
1703
1704     switch (avctx->codec->type) {
1705     case AVMEDIA_TYPE_VIDEO:
1706         frame->format              = avctx->pix_fmt;
1707         if (!frame->sample_aspect_ratio.num)
1708             frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
1709
1710         if (frame->width && frame->height &&
1711             av_image_check_sar(frame->width, frame->height,
1712                                frame->sample_aspect_ratio) < 0) {
1713             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
1714                    frame->sample_aspect_ratio.num,
1715                    frame->sample_aspect_ratio.den);
1716             frame->sample_aspect_ratio = (AVRational){ 0, 1 };
1717         }
1718
1719         break;
1720     case AVMEDIA_TYPE_AUDIO:
1721         if (!frame->sample_rate)
1722             frame->sample_rate    = avctx->sample_rate;
1723         if (frame->format < 0)
1724             frame->format         = avctx->sample_fmt;
1725         if (!frame->channel_layout) {
1726             if (avctx->channel_layout) {
1727                  if (av_get_channel_layout_nb_channels(avctx->channel_layout) !=
1728                      avctx->channels) {
1729                      av_log(avctx, AV_LOG_ERROR, "Inconsistent channel "
1730                             "configuration.\n");
1731                      return AVERROR(EINVAL);
1732                  }
1733
1734                 frame->channel_layout = avctx->channel_layout;
1735             } else {
1736                 if (avctx->channels > FF_SANE_NB_CHANNELS) {
1737                     av_log(avctx, AV_LOG_ERROR, "Too many channels: %d.\n",
1738                            avctx->channels);
1739                     return AVERROR(ENOSYS);
1740                 }
1741             }
1742         }
1743         frame->channels = avctx->channels;
1744         break;
1745     }
1746     return 0;
1747 }
1748
1749 static void validate_avframe_allocation(AVCodecContext *avctx, AVFrame *frame)
1750 {
1751     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1752         int i;
1753         int num_planes = av_pix_fmt_count_planes(frame->format);
1754         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
1755         int flags = desc ? desc->flags : 0;
1756         if (num_planes == 1 && (flags & AV_PIX_FMT_FLAG_PAL))
1757             num_planes = 2;
1758         if ((flags & FF_PSEUDOPAL) && frame->data[1])
1759             num_planes = 2;
1760         for (i = 0; i < num_planes; i++) {
1761             av_assert0(frame->data[i]);
1762         }
1763         // For formats without data like hwaccel allow unused pointers to be non-NULL.
1764         for (i = num_planes; num_planes > 0 && i < FF_ARRAY_ELEMS(frame->data); i++) {
1765             if (frame->data[i])
1766                 av_log(avctx, AV_LOG_ERROR, "Buffer returned by get_buffer2() did not zero unused plane pointers\n");
1767             frame->data[i] = NULL;
1768         }
1769     }
1770 }
1771
1772 static void decode_data_free(void *opaque, uint8_t *data)
1773 {
1774     FrameDecodeData *fdd = (FrameDecodeData*)data;
1775
1776     if (fdd->post_process_opaque_free)
1777         fdd->post_process_opaque_free(fdd->post_process_opaque);
1778
1779     if (fdd->hwaccel_priv_free)
1780         fdd->hwaccel_priv_free(fdd->hwaccel_priv);
1781
1782     av_freep(&fdd);
1783 }
1784
1785 int ff_attach_decode_data(AVFrame *frame)
1786 {
1787     AVBufferRef *fdd_buf;
1788     FrameDecodeData *fdd;
1789
1790     av_assert1(!frame->private_ref);
1791     av_buffer_unref(&frame->private_ref);
1792
1793     fdd = av_mallocz(sizeof(*fdd));
1794     if (!fdd)
1795         return AVERROR(ENOMEM);
1796
1797     fdd_buf = av_buffer_create((uint8_t*)fdd, sizeof(*fdd), decode_data_free,
1798                                NULL, AV_BUFFER_FLAG_READONLY);
1799     if (!fdd_buf) {
1800         av_freep(&fdd);
1801         return AVERROR(ENOMEM);
1802     }
1803
1804     frame->private_ref = fdd_buf;
1805
1806     return 0;
1807 }
1808
1809 int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
1810 {
1811     const AVHWAccel *hwaccel = avctx->hwaccel;
1812     int override_dimensions = 1;
1813     int ret;
1814
1815     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1816         if ((unsigned)avctx->width > INT_MAX - STRIDE_ALIGN ||
1817             (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) {
1818             av_log(avctx, AV_LOG_ERROR, "video_get_buffer: image parameters invalid\n");
1819             ret = AVERROR(EINVAL);
1820             goto fail;
1821         }
1822
1823         if (frame->width <= 0 || frame->height <= 0) {
1824             frame->width  = FFMAX(avctx->width,  AV_CEIL_RSHIFT(avctx->coded_width,  avctx->lowres));
1825             frame->height = FFMAX(avctx->height, AV_CEIL_RSHIFT(avctx->coded_height, avctx->lowres));
1826             override_dimensions = 0;
1827         }
1828
1829         if (frame->data[0] || frame->data[1] || frame->data[2] || frame->data[3]) {
1830             av_log(avctx, AV_LOG_ERROR, "pic->data[*]!=NULL in get_buffer_internal\n");
1831             ret = AVERROR(EINVAL);
1832             goto fail;
1833         }
1834     } else if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
1835         if (frame->nb_samples * (int64_t)avctx->channels > avctx->max_samples) {
1836             av_log(avctx, AV_LOG_ERROR, "samples per frame %d, exceeds max_samples %"PRId64"\n", frame->nb_samples, avctx->max_samples);
1837             ret = AVERROR(EINVAL);
1838             goto fail;
1839         }
1840     }
1841     ret = ff_decode_frame_props(avctx, frame);
1842     if (ret < 0)
1843         goto fail;
1844
1845     if (hwaccel) {
1846         if (hwaccel->alloc_frame) {
1847             ret = hwaccel->alloc_frame(avctx, frame);
1848             goto end;
1849         }
1850     } else
1851         avctx->sw_pix_fmt = avctx->pix_fmt;
1852
1853     ret = avctx->get_buffer2(avctx, frame, flags);
1854     if (ret < 0)
1855         goto fail;
1856
1857     validate_avframe_allocation(avctx, frame);
1858
1859     ret = ff_attach_decode_data(frame);
1860     if (ret < 0)
1861         goto fail;
1862
1863 end:
1864     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO && !override_dimensions &&
1865         !(avctx->codec->caps_internal & FF_CODEC_CAP_EXPORTS_CROPPING)) {
1866         frame->width  = avctx->width;
1867         frame->height = avctx->height;
1868     }
1869
1870 fail:
1871     if (ret < 0) {
1872         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
1873         av_frame_unref(frame);
1874     }
1875
1876     return ret;
1877 }
1878
1879 static int reget_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
1880 {
1881     AVFrame *tmp;
1882     int ret;
1883
1884     av_assert0(avctx->codec_type == AVMEDIA_TYPE_VIDEO);
1885
1886     if (frame->data[0] && (frame->width != avctx->width || frame->height != avctx->height || frame->format != avctx->pix_fmt)) {
1887         av_log(avctx, AV_LOG_WARNING, "Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()\n",
1888                frame->width, frame->height, av_get_pix_fmt_name(frame->format), avctx->width, avctx->height, av_get_pix_fmt_name(avctx->pix_fmt));
1889         av_frame_unref(frame);
1890     }
1891
1892     if (!frame->data[0])
1893         return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
1894
1895     if ((flags & FF_REGET_BUFFER_FLAG_READONLY) || av_frame_is_writable(frame))
1896         return ff_decode_frame_props(avctx, frame);
1897
1898     tmp = av_frame_alloc();
1899     if (!tmp)
1900         return AVERROR(ENOMEM);
1901
1902     av_frame_move_ref(tmp, frame);
1903
1904     ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
1905     if (ret < 0) {
1906         av_frame_free(&tmp);
1907         return ret;
1908     }
1909
1910     av_frame_copy(frame, tmp);
1911     av_frame_free(&tmp);
1912
1913     return 0;
1914 }
1915
1916 int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
1917 {
1918     int ret = reget_buffer_internal(avctx, frame, flags);
1919     if (ret < 0)
1920         av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
1921     return ret;
1922 }
1923
1924 int ff_decode_preinit(AVCodecContext *avctx)
1925 {
1926     int ret = 0;
1927
1928     /* if the decoder init function was already called previously,
1929      * free the already allocated subtitle_header before overwriting it */
1930     av_freep(&avctx->subtitle_header);
1931
1932 #if FF_API_THREAD_SAFE_CALLBACKS
1933 FF_DISABLE_DEPRECATION_WARNINGS
1934     if ((avctx->thread_type & FF_THREAD_FRAME) &&
1935         avctx->get_buffer2 != avcodec_default_get_buffer2 &&
1936         !avctx->thread_safe_callbacks) {
1937         av_log(avctx, AV_LOG_WARNING, "Requested frame threading with a "
1938                "custom get_buffer2() implementation which is not marked as "
1939                "thread safe. This is not supported anymore, make your "
1940                "callback thread-safe.\n");
1941     }
1942 FF_ENABLE_DEPRECATION_WARNINGS
1943 #endif
1944
1945     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO && avctx->channels == 0 &&
1946         !(avctx->codec->capabilities & AV_CODEC_CAP_CHANNEL_CONF)) {
1947         av_log(avctx, AV_LOG_ERROR, "Decoder requires channel count but channels not set\n");
1948         return AVERROR(EINVAL);
1949     }
1950     if (avctx->codec->max_lowres < avctx->lowres || avctx->lowres < 0) {
1951         av_log(avctx, AV_LOG_WARNING, "The maximum value for lowres supported by the decoder is %d\n",
1952                avctx->codec->max_lowres);
1953         avctx->lowres = avctx->codec->max_lowres;
1954     }
1955     if (avctx->sub_charenc) {
1956         if (avctx->codec_type != AVMEDIA_TYPE_SUBTITLE) {
1957             av_log(avctx, AV_LOG_ERROR, "Character encoding is only "
1958                    "supported with subtitles codecs\n");
1959             return AVERROR(EINVAL);
1960         } else if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB) {
1961             av_log(avctx, AV_LOG_WARNING, "Codec '%s' is bitmap-based, "
1962                    "subtitles character encoding will be ignored\n",
1963                    avctx->codec_descriptor->name);
1964             avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_DO_NOTHING;
1965         } else {
1966             /* input character encoding is set for a text based subtitle
1967              * codec at this point */
1968             if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_AUTOMATIC)
1969                 avctx->sub_charenc_mode = FF_SUB_CHARENC_MODE_PRE_DECODER;
1970
1971             if (avctx->sub_charenc_mode == FF_SUB_CHARENC_MODE_PRE_DECODER) {
1972 #if CONFIG_ICONV
1973                 iconv_t cd = iconv_open("UTF-8", avctx->sub_charenc);
1974                 if (cd == (iconv_t)-1) {
1975                     ret = AVERROR(errno);
1976                     av_log(avctx, AV_LOG_ERROR, "Unable to open iconv context "
1977                            "with input character encoding \"%s\"\n", avctx->sub_charenc);
1978                     return ret;
1979                 }
1980                 iconv_close(cd);
1981 #else
1982                 av_log(avctx, AV_LOG_ERROR, "Character encoding subtitles "
1983                        "conversion needs a libavcodec built with iconv support "
1984                        "for this codec\n");
1985                 return AVERROR(ENOSYS);
1986 #endif
1987             }
1988         }
1989     }
1990
1991     avctx->pts_correction_num_faulty_pts =
1992     avctx->pts_correction_num_faulty_dts = 0;
1993     avctx->pts_correction_last_pts =
1994     avctx->pts_correction_last_dts = INT64_MIN;
1995
1996     if (   !CONFIG_GRAY && avctx->flags & AV_CODEC_FLAG_GRAY
1997         && avctx->codec_descriptor->type == AVMEDIA_TYPE_VIDEO)
1998         av_log(avctx, AV_LOG_WARNING,
1999                "gray decoding requested but not enabled at configuration time\n");
2000     if (avctx->flags2 & AV_CODEC_FLAG2_EXPORT_MVS) {
2001         avctx->export_side_data |= AV_CODEC_EXPORT_DATA_MVS;
2002     }
2003
2004     ret = decode_bsfs_init(avctx);
2005     if (ret < 0)
2006         return ret;
2007
2008     return 0;
2009 }
2010
2011 int ff_copy_palette(void *dst, const AVPacket *src, void *logctx)
2012 {
2013     buffer_size_t size;
2014     const void *pal = av_packet_get_side_data(src, AV_PKT_DATA_PALETTE, &size);
2015
2016     if (pal && size == AVPALETTE_SIZE) {
2017         memcpy(dst, pal, AVPALETTE_SIZE);
2018         return 1;
2019     } else if (pal) {
2020         av_log(logctx, AV_LOG_ERROR, "Palette size %d is wrong\n", size);
2021     }
2022     return 0;
2023 }