]> git.sesse.net Git - ffmpeg/blob - libavcodec/decode.c
avcodec/decode: Return early upon failure
[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 size, ret;
70     const uint8_t *data;
71     uint32_t flags;
72     int64_t val;
73
74     data = av_packet_get_side_data(avpkt, AV_PKT_DATA_PARAM_CHANGE, &size);
75     if (!data)
76         return 0;
77
78     if (!(avctx->codec->capabilities & AV_CODEC_CAP_PARAM_CHANGE)) {
79         av_log(avctx, AV_LOG_ERROR, "This decoder does not support parameter "
80                "changes, but PARAM_CHANGE side data was sent to it.\n");
81         ret = AVERROR(EINVAL);
82         goto fail2;
83     }
84
85     if (size < 4)
86         goto fail;
87
88     flags = bytestream_get_le32(&data);
89     size -= 4;
90
91     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
92         if (size < 4)
93             goto fail;
94         val = bytestream_get_le32(&data);
95         if (val <= 0 || val > INT_MAX) {
96             av_log(avctx, AV_LOG_ERROR, "Invalid channel count");
97             ret = AVERROR_INVALIDDATA;
98             goto fail2;
99         }
100         avctx->channels = val;
101         size -= 4;
102     }
103     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
104         if (size < 8)
105             goto fail;
106         avctx->channel_layout = bytestream_get_le64(&data);
107         size -= 8;
108     }
109     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
110         if (size < 4)
111             goto fail;
112         val = bytestream_get_le32(&data);
113         if (val <= 0 || val > INT_MAX) {
114             av_log(avctx, AV_LOG_ERROR, "Invalid sample rate");
115             ret = AVERROR_INVALIDDATA;
116             goto fail2;
117         }
118         avctx->sample_rate = val;
119         size -= 4;
120     }
121     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
122         if (size < 8)
123             goto fail;
124         avctx->width  = bytestream_get_le32(&data);
125         avctx->height = bytestream_get_le32(&data);
126         size -= 8;
127         ret = ff_set_dimensions(avctx, avctx->width, avctx->height);
128         if (ret < 0)
129             goto fail2;
130     }
131
132     return 0;
133 fail:
134     av_log(avctx, AV_LOG_ERROR, "PARAM_CHANGE side data too small.\n");
135     ret = AVERROR_INVALIDDATA;
136 fail2:
137     if (ret < 0) {
138         av_log(avctx, AV_LOG_ERROR, "Error applying parameter changes.\n");
139         if (avctx->err_recognition & AV_EF_EXPLODE)
140             return ret;
141     }
142     return 0;
143 }
144
145 #define IS_EMPTY(pkt) (!(pkt)->data)
146
147 static int copy_packet_props(AVPacket *dst, const AVPacket *src)
148 {
149     int ret = av_packet_copy_props(dst, src);
150     if (ret < 0)
151         return ret;
152
153     dst->size = src->size; // HACK: Needed for ff_decode_frame_props().
154     dst->data = (void*)1;  // HACK: Needed for IS_EMPTY().
155
156     return 0;
157 }
158
159 static int extract_packet_props(AVCodecInternal *avci, const AVPacket *pkt)
160 {
161     AVPacket tmp = { 0 };
162     int ret = 0;
163
164     if (IS_EMPTY(avci->last_pkt_props)) {
165         if (av_fifo_size(avci->pkt_props) >= sizeof(*pkt)) {
166             av_fifo_generic_read(avci->pkt_props, avci->last_pkt_props,
167                                  sizeof(*avci->last_pkt_props), NULL);
168         } else
169             return copy_packet_props(avci->last_pkt_props, pkt);
170     }
171
172     if (av_fifo_space(avci->pkt_props) < sizeof(*pkt)) {
173         ret = av_fifo_grow(avci->pkt_props, sizeof(*pkt));
174         if (ret < 0)
175             return ret;
176     }
177
178     ret = copy_packet_props(&tmp, pkt);
179     if (ret < 0)
180         return ret;
181
182     av_fifo_generic_write(avci->pkt_props, &tmp, sizeof(tmp), NULL);
183
184     return 0;
185 }
186
187 int ff_decode_bsfs_init(AVCodecContext *avctx)
188 {
189     AVCodecInternal *avci = avctx->internal;
190     int ret;
191
192     if (avci->bsf)
193         return 0;
194
195     ret = av_bsf_list_parse_str(avctx->codec->bsfs, &avci->bsf);
196     if (ret < 0) {
197         av_log(avctx, AV_LOG_ERROR, "Error parsing decoder bitstream filters '%s': %s\n", avctx->codec->bsfs, av_err2str(ret));
198         if (ret != AVERROR(ENOMEM))
199             ret = AVERROR_BUG;
200         goto fail;
201     }
202
203     /* We do not currently have an API for passing the input timebase into decoders,
204      * but no filters used here should actually need it.
205      * So we make up some plausible-looking number (the MPEG 90kHz timebase) */
206     avci->bsf->time_base_in = (AVRational){ 1, 90000 };
207     ret = avcodec_parameters_from_context(avci->bsf->par_in, avctx);
208     if (ret < 0)
209         goto fail;
210
211     ret = av_bsf_init(avci->bsf);
212     if (ret < 0)
213         goto fail;
214
215     return 0;
216 fail:
217     av_bsf_free(&avci->bsf);
218     return ret;
219 }
220
221 int ff_decode_get_packet(AVCodecContext *avctx, AVPacket *pkt)
222 {
223     AVCodecInternal *avci = avctx->internal;
224     int ret;
225
226     if (avci->draining)
227         return AVERROR_EOF;
228
229     ret = av_bsf_receive_packet(avci->bsf, pkt);
230     if (ret == AVERROR_EOF)
231         avci->draining = 1;
232     if (ret < 0)
233         return ret;
234
235     ret = extract_packet_props(avctx->internal, pkt);
236     if (ret < 0)
237         goto finish;
238
239     ret = apply_param_change(avctx, pkt);
240     if (ret < 0)
241         goto finish;
242
243 #if FF_API_OLD_ENCDEC
244     if (avctx->codec->receive_frame)
245         avci->compat_decode_consumed += pkt->size;
246 #endif
247
248     return 0;
249 finish:
250     av_packet_unref(pkt);
251     return ret;
252 }
253
254 /**
255  * Attempt to guess proper monotonic timestamps for decoded video frames
256  * which might have incorrect times. Input timestamps may wrap around, in
257  * which case the output will as well.
258  *
259  * @param pts the pts field of the decoded AVPacket, as passed through
260  * AVFrame.pts
261  * @param dts the dts field of the decoded AVPacket
262  * @return one of the input values, may be AV_NOPTS_VALUE
263  */
264 static int64_t guess_correct_pts(AVCodecContext *ctx,
265                                  int64_t reordered_pts, int64_t dts)
266 {
267     int64_t pts = AV_NOPTS_VALUE;
268
269     if (dts != AV_NOPTS_VALUE) {
270         ctx->pts_correction_num_faulty_dts += dts <= ctx->pts_correction_last_dts;
271         ctx->pts_correction_last_dts = dts;
272     } else if (reordered_pts != AV_NOPTS_VALUE)
273         ctx->pts_correction_last_dts = reordered_pts;
274
275     if (reordered_pts != AV_NOPTS_VALUE) {
276         ctx->pts_correction_num_faulty_pts += reordered_pts <= ctx->pts_correction_last_pts;
277         ctx->pts_correction_last_pts = reordered_pts;
278     } else if(dts != AV_NOPTS_VALUE)
279         ctx->pts_correction_last_pts = dts;
280
281     if ((ctx->pts_correction_num_faulty_pts<=ctx->pts_correction_num_faulty_dts || dts == AV_NOPTS_VALUE)
282        && reordered_pts != AV_NOPTS_VALUE)
283         pts = reordered_pts;
284     else
285         pts = dts;
286
287     return pts;
288 }
289
290 /*
291  * The core of the receive_frame_wrapper for the decoders implementing
292  * the simple API. Certain decoders might consume partial packets without
293  * returning any output, so this function needs to be called in a loop until it
294  * returns EAGAIN.
295  **/
296 static inline int decode_simple_internal(AVCodecContext *avctx, AVFrame *frame, int64_t *discarded_samples)
297 {
298     AVCodecInternal   *avci = avctx->internal;
299     DecodeSimpleContext *ds = &avci->ds;
300     AVPacket           *pkt = ds->in_pkt;
301     // copy to ensure we do not change 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         int 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,
873                            AVPacket *outpkt, const AVPacket *inpkt)
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     AVPacket tmp;
881 #endif
882
883     if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_PRE_DECODER || inpkt->size == 0)
884         return 0;
885
886 #if CONFIG_ICONV
887     cd = iconv_open("UTF-8", avctx->sub_charenc);
888     av_assert0(cd != (iconv_t)-1);
889
890     inb = inpkt->data;
891     inl = inpkt->size;
892
893     if (inl >= INT_MAX / UTF8_MAX_BYTES - AV_INPUT_BUFFER_PADDING_SIZE) {
894         av_log(avctx, AV_LOG_ERROR, "Subtitles packet is too big for recoding\n");
895         ret = AVERROR(ENOMEM);
896         goto end;
897     }
898
899     ret = av_new_packet(&tmp, inl * UTF8_MAX_BYTES);
900     if (ret < 0)
901         goto end;
902     outpkt->buf  = tmp.buf;
903     outpkt->data = tmp.data;
904     outpkt->size = tmp.size;
905     outb = outpkt->data;
906     outl = outpkt->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 >= outpkt->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         av_packet_unref(&tmp);
915         goto end;
916     }
917     outpkt->size -= outl;
918     memset(outpkt->data + outpkt->size, 0, outl);
919
920 end:
921     if (cd != (iconv_t)-1)
922         iconv_close(cd);
923     return ret;
924 #else
925     av_log(avctx, AV_LOG_ERROR, "requesting subtitles recoding without iconv");
926     return AVERROR(EINVAL);
927 #endif
928 }
929
930 static int utf8_check(const uint8_t *str)
931 {
932     const uint8_t *byte;
933     uint32_t codepoint, min;
934
935     while (*str) {
936         byte = str;
937         GET_UTF8(codepoint, *(byte++), return 0;);
938         min = byte - str == 1 ? 0 : byte - str == 2 ? 0x80 :
939               1 << (5 * (byte - str) - 4);
940         if (codepoint < min || codepoint >= 0x110000 ||
941             codepoint == 0xFFFE /* BOM */ ||
942             codepoint >= 0xD800 && codepoint <= 0xDFFF /* surrogates */)
943             return 0;
944         str = byte;
945     }
946     return 1;
947 }
948
949 #if FF_API_ASS_TIMING
950 static void insert_ts(AVBPrint *buf, int ts)
951 {
952     if (ts == -1) {
953         av_bprintf(buf, "9:59:59.99,");
954     } else {
955         int h, m, s;
956
957         h = ts/360000;  ts -= 360000*h;
958         m = ts/  6000;  ts -=   6000*m;
959         s = ts/   100;  ts -=    100*s;
960         av_bprintf(buf, "%d:%02d:%02d.%02d,", h, m, s, ts);
961     }
962 }
963
964 static int convert_sub_to_old_ass_form(AVSubtitle *sub, const AVPacket *pkt, AVRational tb)
965 {
966     int i;
967     AVBPrint buf;
968
969     av_bprint_init(&buf, 0, AV_BPRINT_SIZE_UNLIMITED);
970
971     for (i = 0; i < sub->num_rects; i++) {
972         char *final_dialog;
973         const char *dialog;
974         AVSubtitleRect *rect = sub->rects[i];
975         int ts_start, ts_duration = -1;
976         long int layer;
977
978         if (rect->type != SUBTITLE_ASS || !strncmp(rect->ass, "Dialogue: ", 10))
979             continue;
980
981         av_bprint_clear(&buf);
982
983         /* skip ReadOrder */
984         dialog = strchr(rect->ass, ',');
985         if (!dialog)
986             continue;
987         dialog++;
988
989         /* extract Layer or Marked */
990         layer = strtol(dialog, (char**)&dialog, 10);
991         if (*dialog != ',')
992             continue;
993         dialog++;
994
995         /* rescale timing to ASS time base (ms) */
996         ts_start = av_rescale_q(pkt->pts, tb, av_make_q(1, 100));
997         if (pkt->duration != -1)
998             ts_duration = av_rescale_q(pkt->duration, tb, av_make_q(1, 100));
999         sub->end_display_time = FFMAX(sub->end_display_time, 10 * ts_duration);
1000
1001         /* construct ASS (standalone file form with timestamps) string */
1002         av_bprintf(&buf, "Dialogue: %ld,", layer);
1003         insert_ts(&buf, ts_start);
1004         insert_ts(&buf, ts_duration == -1 ? -1 : ts_start + ts_duration);
1005         av_bprintf(&buf, "%s\r\n", dialog);
1006
1007         final_dialog = av_strdup(buf.str);
1008         if (!av_bprint_is_complete(&buf) || !final_dialog) {
1009             av_freep(&final_dialog);
1010             av_bprint_finalize(&buf, NULL);
1011             return AVERROR(ENOMEM);
1012         }
1013         av_freep(&rect->ass);
1014         rect->ass = final_dialog;
1015     }
1016
1017     av_bprint_finalize(&buf, NULL);
1018     return 0;
1019 }
1020 #endif
1021
1022 int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
1023                              int *got_sub_ptr,
1024                              AVPacket *avpkt)
1025 {
1026     int i, ret = 0;
1027
1028     if (!avpkt->data && avpkt->size) {
1029         av_log(avctx, AV_LOG_ERROR, "invalid packet: NULL data, size != 0\n");
1030         return AVERROR(EINVAL);
1031     }
1032     if (!avctx->codec)
1033         return AVERROR(EINVAL);
1034     if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
1035         av_log(avctx, AV_LOG_ERROR, "Invalid media type for subtitles\n");
1036         return AVERROR(EINVAL);
1037     }
1038
1039     *got_sub_ptr = 0;
1040     get_subtitle_defaults(sub);
1041
1042     if ((avctx->codec->capabilities & AV_CODEC_CAP_DELAY) || avpkt->size) {
1043         AVPacket pkt_recoded = *avpkt;
1044
1045         ret = recode_subtitle(avctx, &pkt_recoded, avpkt);
1046         if (ret < 0)
1047             return ret;
1048
1049              ret = extract_packet_props(avctx->internal, &pkt_recoded);
1050              if (ret < 0)
1051                 return ret;
1052
1053             if (avctx->pkt_timebase.num && avpkt->pts != AV_NOPTS_VALUE)
1054                 sub->pts = av_rescale_q(avpkt->pts,
1055                                         avctx->pkt_timebase, AV_TIME_BASE_Q);
1056             ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &pkt_recoded);
1057             av_assert1((ret >= 0) >= !!*got_sub_ptr &&
1058                        !!*got_sub_ptr >= !!sub->num_rects);
1059
1060 #if FF_API_ASS_TIMING
1061             if (avctx->sub_text_format == FF_SUB_TEXT_FMT_ASS_WITH_TIMINGS
1062                 && *got_sub_ptr && sub->num_rects) {
1063                 const AVRational tb = avctx->pkt_timebase.num ? avctx->pkt_timebase
1064                                                               : avctx->time_base;
1065                 int err = convert_sub_to_old_ass_form(sub, avpkt, tb);
1066                 if (err < 0)
1067                     ret = err;
1068             }
1069 #endif
1070
1071             if (sub->num_rects && !sub->end_display_time && avpkt->duration &&
1072                 avctx->pkt_timebase.num) {
1073                 AVRational ms = { 1, 1000 };
1074                 sub->end_display_time = av_rescale_q(avpkt->duration,
1075                                                      avctx->pkt_timebase, ms);
1076             }
1077
1078             if (avctx->codec_descriptor->props & AV_CODEC_PROP_BITMAP_SUB)
1079                 sub->format = 0;
1080             else if (avctx->codec_descriptor->props & AV_CODEC_PROP_TEXT_SUB)
1081                 sub->format = 1;
1082
1083             for (i = 0; i < sub->num_rects; i++) {
1084                 if (avctx->sub_charenc_mode != FF_SUB_CHARENC_MODE_IGNORE &&
1085                     sub->rects[i]->ass && !utf8_check(sub->rects[i]->ass)) {
1086                     av_log(avctx, AV_LOG_ERROR,
1087                            "Invalid UTF-8 in decoded subtitles text; "
1088                            "maybe missing -sub_charenc option\n");
1089                     avsubtitle_free(sub);
1090                     ret = AVERROR_INVALIDDATA;
1091                     break;
1092                 }
1093             }
1094
1095             if (avpkt->data != pkt_recoded.data) { // did we recode?
1096                 /* prevent from destroying side data from original packet */
1097                 pkt_recoded.side_data = NULL;
1098                 pkt_recoded.side_data_elems = 0;
1099
1100                 av_packet_unref(&pkt_recoded);
1101             }
1102
1103         if (*got_sub_ptr)
1104             avctx->frame_number++;
1105     }
1106
1107     return ret;
1108 }
1109
1110 enum AVPixelFormat avcodec_default_get_format(struct AVCodecContext *avctx,
1111                                               const enum AVPixelFormat *fmt)
1112 {
1113     const AVPixFmtDescriptor *desc;
1114     const AVCodecHWConfig *config;
1115     int i, n;
1116
1117     // If a device was supplied when the codec was opened, assume that the
1118     // user wants to use it.
1119     if (avctx->hw_device_ctx && avctx->codec->hw_configs) {
1120         AVHWDeviceContext *device_ctx =
1121             (AVHWDeviceContext*)avctx->hw_device_ctx->data;
1122         for (i = 0;; i++) {
1123             config = &avctx->codec->hw_configs[i]->public;
1124             if (!config)
1125                 break;
1126             if (!(config->methods &
1127                   AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX))
1128                 continue;
1129             if (device_ctx->type != config->device_type)
1130                 continue;
1131             for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1132                 if (config->pix_fmt == fmt[n])
1133                     return fmt[n];
1134             }
1135         }
1136     }
1137     // No device or other setup, so we have to choose from things which
1138     // don't any other external information.
1139
1140     // If the last element of the list is a software format, choose it
1141     // (this should be best software format if any exist).
1142     for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++);
1143     desc = av_pix_fmt_desc_get(fmt[n - 1]);
1144     if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL))
1145         return fmt[n - 1];
1146
1147     // Finally, traverse the list in order and choose the first entry
1148     // with no external dependencies (if there is no hardware configuration
1149     // information available then this just picks the first entry).
1150     for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++) {
1151         for (i = 0;; i++) {
1152             config = avcodec_get_hw_config(avctx->codec, i);
1153             if (!config)
1154                 break;
1155             if (config->pix_fmt == fmt[n])
1156                 break;
1157         }
1158         if (!config) {
1159             // No specific config available, so the decoder must be able
1160             // to handle this format without any additional setup.
1161             return fmt[n];
1162         }
1163         if (config->methods & AV_CODEC_HW_CONFIG_METHOD_INTERNAL) {
1164             // Usable with only internal setup.
1165             return fmt[n];
1166         }
1167     }
1168
1169     // Nothing is usable, give up.
1170     return AV_PIX_FMT_NONE;
1171 }
1172
1173 int ff_decode_get_hw_frames_ctx(AVCodecContext *avctx,
1174                                 enum AVHWDeviceType dev_type)
1175 {
1176     AVHWDeviceContext *device_ctx;
1177     AVHWFramesContext *frames_ctx;
1178     int ret;
1179
1180     if (!avctx->hwaccel)
1181         return AVERROR(ENOSYS);
1182
1183     if (avctx->hw_frames_ctx)
1184         return 0;
1185     if (!avctx->hw_device_ctx) {
1186         av_log(avctx, AV_LOG_ERROR, "A hardware frames or device context is "
1187                 "required for hardware accelerated decoding.\n");
1188         return AVERROR(EINVAL);
1189     }
1190
1191     device_ctx = (AVHWDeviceContext *)avctx->hw_device_ctx->data;
1192     if (device_ctx->type != dev_type) {
1193         av_log(avctx, AV_LOG_ERROR, "Device type %s expected for hardware "
1194                "decoding, but got %s.\n", av_hwdevice_get_type_name(dev_type),
1195                av_hwdevice_get_type_name(device_ctx->type));
1196         return AVERROR(EINVAL);
1197     }
1198
1199     ret = avcodec_get_hw_frames_parameters(avctx,
1200                                            avctx->hw_device_ctx,
1201                                            avctx->hwaccel->pix_fmt,
1202                                            &avctx->hw_frames_ctx);
1203     if (ret < 0)
1204         return ret;
1205
1206     frames_ctx = (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1207
1208
1209     if (frames_ctx->initial_pool_size) {
1210         // We guarantee 4 base work surfaces. The function above guarantees 1
1211         // (the absolute minimum), so add the missing count.
1212         frames_ctx->initial_pool_size += 3;
1213     }
1214
1215     ret = av_hwframe_ctx_init(avctx->hw_frames_ctx);
1216     if (ret < 0) {
1217         av_buffer_unref(&avctx->hw_frames_ctx);
1218         return ret;
1219     }
1220
1221     return 0;
1222 }
1223
1224 int avcodec_get_hw_frames_parameters(AVCodecContext *avctx,
1225                                      AVBufferRef *device_ref,
1226                                      enum AVPixelFormat hw_pix_fmt,
1227                                      AVBufferRef **out_frames_ref)
1228 {
1229     AVBufferRef *frames_ref = NULL;
1230     const AVCodecHWConfigInternal *hw_config;
1231     const AVHWAccel *hwa;
1232     int i, ret;
1233
1234     for (i = 0;; i++) {
1235         hw_config = avctx->codec->hw_configs[i];
1236         if (!hw_config)
1237             return AVERROR(ENOENT);
1238         if (hw_config->public.pix_fmt == hw_pix_fmt)
1239             break;
1240     }
1241
1242     hwa = hw_config->hwaccel;
1243     if (!hwa || !hwa->frame_params)
1244         return AVERROR(ENOENT);
1245
1246     frames_ref = av_hwframe_ctx_alloc(device_ref);
1247     if (!frames_ref)
1248         return AVERROR(ENOMEM);
1249
1250     ret = hwa->frame_params(avctx, frames_ref);
1251     if (ret >= 0) {
1252         AVHWFramesContext *frames_ctx = (AVHWFramesContext*)frames_ref->data;
1253
1254         if (frames_ctx->initial_pool_size) {
1255             // If the user has requested that extra output surfaces be
1256             // available then add them here.
1257             if (avctx->extra_hw_frames > 0)
1258                 frames_ctx->initial_pool_size += avctx->extra_hw_frames;
1259
1260             // If frame threading is enabled then an extra surface per thread
1261             // is also required.
1262             if (avctx->active_thread_type & FF_THREAD_FRAME)
1263                 frames_ctx->initial_pool_size += avctx->thread_count;
1264         }
1265
1266         *out_frames_ref = frames_ref;
1267     } else {
1268         av_buffer_unref(&frames_ref);
1269     }
1270     return ret;
1271 }
1272
1273 static int hwaccel_init(AVCodecContext *avctx,
1274                         const AVCodecHWConfigInternal *hw_config)
1275 {
1276     const AVHWAccel *hwaccel;
1277     int err;
1278
1279     hwaccel = hw_config->hwaccel;
1280     if (hwaccel->capabilities & AV_HWACCEL_CODEC_CAP_EXPERIMENTAL &&
1281         avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
1282         av_log(avctx, AV_LOG_WARNING, "Ignoring experimental hwaccel: %s\n",
1283                hwaccel->name);
1284         return AVERROR_PATCHWELCOME;
1285     }
1286
1287     if (hwaccel->priv_data_size) {
1288         avctx->internal->hwaccel_priv_data =
1289             av_mallocz(hwaccel->priv_data_size);
1290         if (!avctx->internal->hwaccel_priv_data)
1291             return AVERROR(ENOMEM);
1292     }
1293
1294     avctx->hwaccel = hwaccel;
1295     if (hwaccel->init) {
1296         err = hwaccel->init(avctx);
1297         if (err < 0) {
1298             av_log(avctx, AV_LOG_ERROR, "Failed setup for format %s: "
1299                    "hwaccel initialisation returned error.\n",
1300                    av_get_pix_fmt_name(hw_config->public.pix_fmt));
1301             av_freep(&avctx->internal->hwaccel_priv_data);
1302             avctx->hwaccel = NULL;
1303             return err;
1304         }
1305     }
1306
1307     return 0;
1308 }
1309
1310 static void hwaccel_uninit(AVCodecContext *avctx)
1311 {
1312     if (avctx->hwaccel && avctx->hwaccel->uninit)
1313         avctx->hwaccel->uninit(avctx);
1314
1315     av_freep(&avctx->internal->hwaccel_priv_data);
1316
1317     avctx->hwaccel = NULL;
1318
1319     av_buffer_unref(&avctx->hw_frames_ctx);
1320 }
1321
1322 int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
1323 {
1324     const AVPixFmtDescriptor *desc;
1325     enum AVPixelFormat *choices;
1326     enum AVPixelFormat ret, user_choice;
1327     const AVCodecHWConfigInternal *hw_config;
1328     const AVCodecHWConfig *config;
1329     int i, n, err;
1330
1331     // Find end of list.
1332     for (n = 0; fmt[n] != AV_PIX_FMT_NONE; n++);
1333     // Must contain at least one entry.
1334     av_assert0(n >= 1);
1335     // If a software format is available, it must be the last entry.
1336     desc = av_pix_fmt_desc_get(fmt[n - 1]);
1337     if (desc->flags & AV_PIX_FMT_FLAG_HWACCEL) {
1338         // No software format is available.
1339     } else {
1340         avctx->sw_pix_fmt = fmt[n - 1];
1341     }
1342
1343     choices = av_malloc_array(n + 1, sizeof(*choices));
1344     if (!choices)
1345         return AV_PIX_FMT_NONE;
1346
1347     memcpy(choices, fmt, (n + 1) * sizeof(*choices));
1348
1349     for (;;) {
1350         // Remove the previous hwaccel, if there was one.
1351         hwaccel_uninit(avctx);
1352
1353         user_choice = avctx->get_format(avctx, choices);
1354         if (user_choice == AV_PIX_FMT_NONE) {
1355             // Explicitly chose nothing, give up.
1356             ret = AV_PIX_FMT_NONE;
1357             break;
1358         }
1359
1360         desc = av_pix_fmt_desc_get(user_choice);
1361         if (!desc) {
1362             av_log(avctx, AV_LOG_ERROR, "Invalid format returned by "
1363                    "get_format() callback.\n");
1364             ret = AV_PIX_FMT_NONE;
1365             break;
1366         }
1367         av_log(avctx, AV_LOG_DEBUG, "Format %s chosen by get_format().\n",
1368                desc->name);
1369
1370         for (i = 0; i < n; i++) {
1371             if (choices[i] == user_choice)
1372                 break;
1373         }
1374         if (i == n) {
1375             av_log(avctx, AV_LOG_ERROR, "Invalid return from get_format(): "
1376                    "%s not in possible list.\n", desc->name);
1377             ret = AV_PIX_FMT_NONE;
1378             break;
1379         }
1380
1381         if (avctx->codec->hw_configs) {
1382             for (i = 0;; i++) {
1383                 hw_config = avctx->codec->hw_configs[i];
1384                 if (!hw_config)
1385                     break;
1386                 if (hw_config->public.pix_fmt == user_choice)
1387                     break;
1388             }
1389         } else {
1390             hw_config = NULL;
1391         }
1392
1393         if (!hw_config) {
1394             // No config available, so no extra setup required.
1395             ret = user_choice;
1396             break;
1397         }
1398         config = &hw_config->public;
1399
1400         if (config->methods &
1401             AV_CODEC_HW_CONFIG_METHOD_HW_FRAMES_CTX &&
1402             avctx->hw_frames_ctx) {
1403             const AVHWFramesContext *frames_ctx =
1404                 (AVHWFramesContext*)avctx->hw_frames_ctx->data;
1405             if (frames_ctx->format != user_choice) {
1406                 av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1407                        "does not match the format of the provided frames "
1408                        "context.\n", desc->name);
1409                 goto try_again;
1410             }
1411         } else if (config->methods &
1412                    AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX &&
1413                    avctx->hw_device_ctx) {
1414             const AVHWDeviceContext *device_ctx =
1415                 (AVHWDeviceContext*)avctx->hw_device_ctx->data;
1416             if (device_ctx->type != config->device_type) {
1417                 av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1418                        "does not match the type of the provided device "
1419                        "context.\n", desc->name);
1420                 goto try_again;
1421             }
1422         } else if (config->methods &
1423                    AV_CODEC_HW_CONFIG_METHOD_INTERNAL) {
1424             // Internal-only setup, no additional configuration.
1425         } else if (config->methods &
1426                    AV_CODEC_HW_CONFIG_METHOD_AD_HOC) {
1427             // Some ad-hoc configuration we can't see and can't check.
1428         } else {
1429             av_log(avctx, AV_LOG_ERROR, "Invalid setup for format %s: "
1430                    "missing configuration.\n", desc->name);
1431             goto try_again;
1432         }
1433         if (hw_config->hwaccel) {
1434             av_log(avctx, AV_LOG_DEBUG, "Format %s requires hwaccel "
1435                    "initialisation.\n", desc->name);
1436             err = hwaccel_init(avctx, hw_config);
1437             if (err < 0)
1438                 goto try_again;
1439         }
1440         ret = user_choice;
1441         break;
1442
1443     try_again:
1444         av_log(avctx, AV_LOG_DEBUG, "Format %s not usable, retrying "
1445                "get_format() without it.\n", desc->name);
1446         for (i = 0; i < n; i++) {
1447             if (choices[i] == user_choice)
1448                 break;
1449         }
1450         for (; i + 1 < n; i++)
1451             choices[i] = choices[i + 1];
1452         --n;
1453     }
1454
1455     av_freep(&choices);
1456     return ret;
1457 }
1458
1459 static void frame_pool_free(void *opaque, uint8_t *data)
1460 {
1461     FramePool *pool = (FramePool*)data;
1462     int i;
1463
1464     for (i = 0; i < FF_ARRAY_ELEMS(pool->pools); i++)
1465         av_buffer_pool_uninit(&pool->pools[i]);
1466
1467     av_freep(&data);
1468 }
1469
1470 static AVBufferRef *frame_pool_alloc(void)
1471 {
1472     FramePool *pool = av_mallocz(sizeof(*pool));
1473     AVBufferRef *buf;
1474
1475     if (!pool)
1476         return NULL;
1477
1478     buf = av_buffer_create((uint8_t*)pool, sizeof(*pool),
1479                            frame_pool_free, NULL, 0);
1480     if (!buf) {
1481         av_freep(&pool);
1482         return NULL;
1483     }
1484
1485     return buf;
1486 }
1487
1488 static int update_frame_pool(AVCodecContext *avctx, AVFrame *frame)
1489 {
1490     FramePool *pool = avctx->internal->pool ?
1491                       (FramePool*)avctx->internal->pool->data : NULL;
1492     AVBufferRef *pool_buf;
1493     int i, ret, ch, planes;
1494
1495     if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
1496         int planar = av_sample_fmt_is_planar(frame->format);
1497         ch     = frame->channels;
1498         planes = planar ? ch : 1;
1499     }
1500
1501     if (pool && pool->format == frame->format) {
1502         if (avctx->codec_type == AVMEDIA_TYPE_VIDEO &&
1503             pool->width == frame->width && pool->height == frame->height)
1504             return 0;
1505         if (avctx->codec_type == AVMEDIA_TYPE_AUDIO && pool->planes == planes &&
1506             pool->channels == ch && frame->nb_samples == pool->samples)
1507             return 0;
1508     }
1509
1510     pool_buf = frame_pool_alloc();
1511     if (!pool_buf)
1512         return AVERROR(ENOMEM);
1513     pool = (FramePool*)pool_buf->data;
1514
1515     switch (avctx->codec_type) {
1516     case AVMEDIA_TYPE_VIDEO: {
1517         int linesize[4];
1518         int w = frame->width;
1519         int h = frame->height;
1520         int unaligned;
1521         ptrdiff_t linesize1[4];
1522         size_t size[4];
1523
1524         avcodec_align_dimensions2(avctx, &w, &h, pool->stride_align);
1525
1526         do {
1527             // NOTE: do not align linesizes individually, this breaks e.g. assumptions
1528             // that linesize[0] == 2*linesize[1] in the MPEG-encoder for 4:2:2
1529             ret = av_image_fill_linesizes(linesize, avctx->pix_fmt, w);
1530             if (ret < 0)
1531                 goto fail;
1532             // increase alignment of w for next try (rhs gives the lowest bit set in w)
1533             w += w & ~(w - 1);
1534
1535             unaligned = 0;
1536             for (i = 0; i < 4; i++)
1537                 unaligned |= linesize[i] % pool->stride_align[i];
1538         } while (unaligned);
1539
1540         for (i = 0; i < 4; i++)
1541             linesize1[i] = linesize[i];
1542         ret = av_image_fill_plane_sizes(size, avctx->pix_fmt, h, linesize1);
1543         if (ret < 0)
1544             goto fail;
1545
1546         for (i = 0; i < 4; i++) {
1547             pool->linesize[i] = linesize[i];
1548             if (size[i]) {
1549                 if (size[i] > INT_MAX - (16 + STRIDE_ALIGN - 1)) {
1550                     ret = AVERROR(EINVAL);
1551                     goto fail;
1552                 }
1553                 pool->pools[i] = av_buffer_pool_init(size[i] + 16 + STRIDE_ALIGN - 1,
1554                                                      CONFIG_MEMORY_POISONING ?
1555                                                         NULL :
1556                                                         av_buffer_allocz);
1557                 if (!pool->pools[i]) {
1558                     ret = AVERROR(ENOMEM);
1559                     goto fail;
1560                 }
1561             }
1562         }
1563         pool->format = frame->format;
1564         pool->width  = frame->width;
1565         pool->height = frame->height;
1566
1567         break;
1568         }
1569     case AVMEDIA_TYPE_AUDIO: {
1570         ret = av_samples_get_buffer_size(&pool->linesize[0], ch,
1571                                          frame->nb_samples, frame->format, 0);
1572         if (ret < 0)
1573             goto fail;
1574
1575         pool->pools[0] = av_buffer_pool_init(pool->linesize[0], NULL);
1576         if (!pool->pools[0]) {
1577             ret = AVERROR(ENOMEM);
1578             goto fail;
1579         }
1580
1581         pool->format     = frame->format;
1582         pool->planes     = planes;
1583         pool->channels   = ch;
1584         pool->samples = frame->nb_samples;
1585         break;
1586         }
1587     default: av_assert0(0);
1588     }
1589
1590     av_buffer_unref(&avctx->internal->pool);
1591     avctx->internal->pool = pool_buf;
1592
1593     return 0;
1594 fail:
1595     av_buffer_unref(&pool_buf);
1596     return ret;
1597 }
1598
1599 static int audio_get_buffer(AVCodecContext *avctx, AVFrame *frame)
1600 {
1601     FramePool *pool = (FramePool*)avctx->internal->pool->data;
1602     int planes = pool->planes;
1603     int i;
1604
1605     frame->linesize[0] = pool->linesize[0];
1606
1607     if (planes > AV_NUM_DATA_POINTERS) {
1608         frame->extended_data = av_mallocz_array(planes, sizeof(*frame->extended_data));
1609         frame->nb_extended_buf = planes - AV_NUM_DATA_POINTERS;
1610         frame->extended_buf  = av_mallocz_array(frame->nb_extended_buf,
1611                                           sizeof(*frame->extended_buf));
1612         if (!frame->extended_data || !frame->extended_buf) {
1613             av_freep(&frame->extended_data);
1614             av_freep(&frame->extended_buf);
1615             return AVERROR(ENOMEM);
1616         }
1617     } else {
1618         frame->extended_data = frame->data;
1619         av_assert0(frame->nb_extended_buf == 0);
1620     }
1621
1622     for (i = 0; i < FFMIN(planes, AV_NUM_DATA_POINTERS); i++) {
1623         frame->buf[i] = av_buffer_pool_get(pool->pools[0]);
1624         if (!frame->buf[i])
1625             goto fail;
1626         frame->extended_data[i] = frame->data[i] = frame->buf[i]->data;
1627     }
1628     for (i = 0; i < frame->nb_extended_buf; i++) {
1629         frame->extended_buf[i] = av_buffer_pool_get(pool->pools[0]);
1630         if (!frame->extended_buf[i])
1631             goto fail;
1632         frame->extended_data[i + AV_NUM_DATA_POINTERS] = frame->extended_buf[i]->data;
1633     }
1634
1635     if (avctx->debug & FF_DEBUG_BUFFERS)
1636         av_log(avctx, AV_LOG_DEBUG, "default_get_buffer called on frame %p", frame);
1637
1638     return 0;
1639 fail:
1640     av_frame_unref(frame);
1641     return AVERROR(ENOMEM);
1642 }
1643
1644 static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
1645 {
1646     FramePool *pool = (FramePool*)s->internal->pool->data;
1647     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pic->format);
1648     int i;
1649
1650     if (pic->data[0] || pic->data[1] || pic->data[2] || pic->data[3]) {
1651         av_log(s, AV_LOG_ERROR, "pic->data[*]!=NULL in avcodec_default_get_buffer\n");
1652         return -1;
1653     }
1654
1655     if (!desc) {
1656         av_log(s, AV_LOG_ERROR,
1657             "Unable to get pixel format descriptor for format %s\n",
1658             av_get_pix_fmt_name(pic->format));
1659         return AVERROR(EINVAL);
1660     }
1661
1662     memset(pic->data, 0, sizeof(pic->data));
1663     pic->extended_data = pic->data;
1664
1665     for (i = 0; i < 4 && pool->pools[i]; i++) {
1666         pic->linesize[i] = pool->linesize[i];
1667
1668         pic->buf[i] = av_buffer_pool_get(pool->pools[i]);
1669         if (!pic->buf[i])
1670             goto fail;
1671
1672         pic->data[i] = pic->buf[i]->data;
1673     }
1674     for (; i < AV_NUM_DATA_POINTERS; i++) {
1675         pic->data[i] = NULL;
1676         pic->linesize[i] = 0;
1677     }
1678     if (desc->flags & AV_PIX_FMT_FLAG_PAL ||
1679         ((desc->flags & FF_PSEUDOPAL) && pic->data[1]))
1680         avpriv_set_systematic_pal2((uint32_t *)pic->data[1], pic->format);
1681
1682     if (s->debug & FF_DEBUG_BUFFERS)
1683         av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p\n", pic);
1684
1685     return 0;
1686 fail:
1687     av_frame_unref(pic);
1688     return AVERROR(ENOMEM);
1689 }
1690
1691 int avcodec_default_get_buffer2(AVCodecContext *avctx, AVFrame *frame, int flags)
1692 {
1693     int ret;
1694
1695     if (avctx->hw_frames_ctx) {
1696         ret = av_hwframe_get_buffer(avctx->hw_frames_ctx, frame, 0);
1697         frame->width  = avctx->coded_width;
1698         frame->height = avctx->coded_height;
1699         return ret;
1700     }
1701
1702     if ((ret = update_frame_pool(avctx, frame)) < 0)
1703         return ret;
1704
1705     switch (avctx->codec_type) {
1706     case AVMEDIA_TYPE_VIDEO:
1707         return video_get_buffer(avctx, frame);
1708     case AVMEDIA_TYPE_AUDIO:
1709         return audio_get_buffer(avctx, frame);
1710     default:
1711         return -1;
1712     }
1713 }
1714
1715 static int add_metadata_from_side_data(const AVPacket *avpkt, AVFrame *frame)
1716 {
1717     int size;
1718     const uint8_t *side_metadata;
1719
1720     AVDictionary **frame_md = &frame->metadata;
1721
1722     side_metadata = av_packet_get_side_data(avpkt,
1723                                             AV_PKT_DATA_STRINGS_METADATA, &size);
1724     return av_packet_unpack_dictionary(side_metadata, size, frame_md);
1725 }
1726
1727 int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
1728 {
1729     AVPacket *pkt = avctx->internal->last_pkt_props;
1730     int i;
1731     static const struct {
1732         enum AVPacketSideDataType packet;
1733         enum AVFrameSideDataType frame;
1734     } sd[] = {
1735         { AV_PKT_DATA_REPLAYGAIN ,                AV_FRAME_DATA_REPLAYGAIN },
1736         { AV_PKT_DATA_DISPLAYMATRIX,              AV_FRAME_DATA_DISPLAYMATRIX },
1737         { AV_PKT_DATA_SPHERICAL,                  AV_FRAME_DATA_SPHERICAL },
1738         { AV_PKT_DATA_STEREO3D,                   AV_FRAME_DATA_STEREO3D },
1739         { AV_PKT_DATA_AUDIO_SERVICE_TYPE,         AV_FRAME_DATA_AUDIO_SERVICE_TYPE },
1740         { AV_PKT_DATA_MASTERING_DISPLAY_METADATA, AV_FRAME_DATA_MASTERING_DISPLAY_METADATA },
1741         { AV_PKT_DATA_CONTENT_LIGHT_LEVEL,        AV_FRAME_DATA_CONTENT_LIGHT_LEVEL },
1742         { AV_PKT_DATA_A53_CC,                     AV_FRAME_DATA_A53_CC },
1743         { AV_PKT_DATA_ICC_PROFILE,                AV_FRAME_DATA_ICC_PROFILE },
1744         { AV_PKT_DATA_S12M_TIMECODE,              AV_FRAME_DATA_S12M_TIMECODE },
1745     };
1746
1747     if (IS_EMPTY(pkt) && av_fifo_size(avctx->internal->pkt_props) >= sizeof(*pkt))
1748         av_fifo_generic_read(avctx->internal->pkt_props,
1749                              pkt, sizeof(*pkt), NULL);
1750
1751     if (pkt) {
1752         frame->pts = pkt->pts;
1753 #if FF_API_PKT_PTS
1754 FF_DISABLE_DEPRECATION_WARNINGS
1755         frame->pkt_pts = pkt->pts;
1756 FF_ENABLE_DEPRECATION_WARNINGS
1757 #endif
1758         frame->pkt_pos      = pkt->pos;
1759         frame->pkt_duration = pkt->duration;
1760         frame->pkt_size     = pkt->size;
1761
1762         for (i = 0; i < FF_ARRAY_ELEMS(sd); i++) {
1763             int size;
1764             uint8_t *packet_sd = av_packet_get_side_data(pkt, sd[i].packet, &size);
1765             if (packet_sd) {
1766                 AVFrameSideData *frame_sd = av_frame_new_side_data(frame,
1767                                                                    sd[i].frame,
1768                                                                    size);
1769                 if (!frame_sd)
1770                     return AVERROR(ENOMEM);
1771
1772                 memcpy(frame_sd->data, packet_sd, size);
1773             }
1774         }
1775         add_metadata_from_side_data(pkt, frame);
1776
1777         if (pkt->flags & AV_PKT_FLAG_DISCARD) {
1778             frame->flags |= AV_FRAME_FLAG_DISCARD;
1779         } else {
1780             frame->flags = (frame->flags & ~AV_FRAME_FLAG_DISCARD);
1781         }
1782     }
1783     frame->reordered_opaque = avctx->reordered_opaque;
1784
1785     if (frame->color_primaries == AVCOL_PRI_UNSPECIFIED)
1786         frame->color_primaries = avctx->color_primaries;
1787     if (frame->color_trc == AVCOL_TRC_UNSPECIFIED)
1788         frame->color_trc = avctx->color_trc;
1789     if (frame->colorspace == AVCOL_SPC_UNSPECIFIED)
1790         frame->colorspace = avctx->colorspace;
1791     if (frame->color_range == AVCOL_RANGE_UNSPECIFIED)
1792         frame->color_range = avctx->color_range;
1793     if (frame->chroma_location == AVCHROMA_LOC_UNSPECIFIED)
1794         frame->chroma_location = avctx->chroma_sample_location;
1795
1796     switch (avctx->codec->type) {
1797     case AVMEDIA_TYPE_VIDEO:
1798         frame->format              = avctx->pix_fmt;
1799         if (!frame->sample_aspect_ratio.num)
1800             frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
1801
1802         if (frame->width && frame->height &&
1803             av_image_check_sar(frame->width, frame->height,
1804                                frame->sample_aspect_ratio) < 0) {
1805             av_log(avctx, AV_LOG_WARNING, "ignoring invalid SAR: %u/%u\n",
1806                    frame->sample_aspect_ratio.num,
1807                    frame->sample_aspect_ratio.den);
1808             frame->sample_aspect_ratio = (AVRational){ 0, 1 };
1809         }
1810
1811         break;
1812     case AVMEDIA_TYPE_AUDIO:
1813         if (!frame->sample_rate)
1814             frame->sample_rate    = avctx->sample_rate;
1815         if (frame->format < 0)
1816             frame->format         = avctx->sample_fmt;
1817         if (!frame->channel_layout) {
1818             if (avctx->channel_layout) {
1819                  if (av_get_channel_layout_nb_channels(avctx->channel_layout) !=
1820                      avctx->channels) {
1821                      av_log(avctx, AV_LOG_ERROR, "Inconsistent channel "
1822                             "configuration.\n");
1823                      return AVERROR(EINVAL);
1824                  }
1825
1826                 frame->channel_layout = avctx->channel_layout;
1827             } else {
1828                 if (avctx->channels > FF_SANE_NB_CHANNELS) {
1829                     av_log(avctx, AV_LOG_ERROR, "Too many channels: %d.\n",
1830                            avctx->channels);
1831                     return AVERROR(ENOSYS);
1832                 }
1833             }
1834         }
1835         frame->channels = avctx->channels;
1836         break;
1837     }
1838     return 0;
1839 }
1840
1841 static void validate_avframe_allocation(AVCodecContext *avctx, AVFrame *frame)
1842 {
1843     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1844         int i;
1845         int num_planes = av_pix_fmt_count_planes(frame->format);
1846         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
1847         int flags = desc ? desc->flags : 0;
1848         if (num_planes == 1 && (flags & AV_PIX_FMT_FLAG_PAL))
1849             num_planes = 2;
1850         if ((flags & FF_PSEUDOPAL) && frame->data[1])
1851             num_planes = 2;
1852         for (i = 0; i < num_planes; i++) {
1853             av_assert0(frame->data[i]);
1854         }
1855         // For formats without data like hwaccel allow unused pointers to be non-NULL.
1856         for (i = num_planes; num_planes > 0 && i < FF_ARRAY_ELEMS(frame->data); i++) {
1857             if (frame->data[i])
1858                 av_log(avctx, AV_LOG_ERROR, "Buffer returned by get_buffer2() did not zero unused plane pointers\n");
1859             frame->data[i] = NULL;
1860         }
1861     }
1862 }
1863
1864 static void decode_data_free(void *opaque, uint8_t *data)
1865 {
1866     FrameDecodeData *fdd = (FrameDecodeData*)data;
1867
1868     if (fdd->post_process_opaque_free)
1869         fdd->post_process_opaque_free(fdd->post_process_opaque);
1870
1871     if (fdd->hwaccel_priv_free)
1872         fdd->hwaccel_priv_free(fdd->hwaccel_priv);
1873
1874     av_freep(&fdd);
1875 }
1876
1877 int ff_attach_decode_data(AVFrame *frame)
1878 {
1879     AVBufferRef *fdd_buf;
1880     FrameDecodeData *fdd;
1881
1882     av_assert1(!frame->private_ref);
1883     av_buffer_unref(&frame->private_ref);
1884
1885     fdd = av_mallocz(sizeof(*fdd));
1886     if (!fdd)
1887         return AVERROR(ENOMEM);
1888
1889     fdd_buf = av_buffer_create((uint8_t*)fdd, sizeof(*fdd), decode_data_free,
1890                                NULL, AV_BUFFER_FLAG_READONLY);
1891     if (!fdd_buf) {
1892         av_freep(&fdd);
1893         return AVERROR(ENOMEM);
1894     }
1895
1896     frame->private_ref = fdd_buf;
1897
1898     return 0;
1899 }
1900
1901 int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
1902 {
1903     const AVHWAccel *hwaccel = avctx->hwaccel;
1904     int override_dimensions = 1;
1905     int ret;
1906
1907     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {
1908         if ((unsigned)avctx->width > INT_MAX - STRIDE_ALIGN ||
1909             (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) {
1910             av_log(avctx, AV_LOG_ERROR, "video_get_buffer: image parameters invalid\n");
1911             ret = AVERROR(EINVAL);
1912             goto fail;
1913         }
1914
1915         if (frame->width <= 0 || frame->height <= 0) {
1916             frame->width  = FFMAX(avctx->width,  AV_CEIL_RSHIFT(avctx->coded_width,  avctx->lowres));
1917             frame->height = FFMAX(avctx->height, AV_CEIL_RSHIFT(avctx->coded_height, avctx->lowres));
1918             override_dimensions = 0;
1919         }
1920
1921         if (frame->data[0] || frame->data[1] || frame->data[2] || frame->data[3]) {
1922             av_log(avctx, AV_LOG_ERROR, "pic->data[*]!=NULL in get_buffer_internal\n");
1923             ret = AVERROR(EINVAL);
1924             goto fail;
1925         }
1926     } else if (avctx->codec_type == AVMEDIA_TYPE_AUDIO) {
1927         if (frame->nb_samples * (int64_t)avctx->channels > avctx->max_samples) {
1928             av_log(avctx, AV_LOG_ERROR, "samples per frame %d, exceeds max_samples %"PRId64"\n", frame->nb_samples, avctx->max_samples);
1929             ret = AVERROR(EINVAL);
1930             goto fail;
1931         }
1932     }
1933     ret = ff_decode_frame_props(avctx, frame);
1934     if (ret < 0)
1935         goto fail;
1936
1937     if (hwaccel) {
1938         if (hwaccel->alloc_frame) {
1939             ret = hwaccel->alloc_frame(avctx, frame);
1940             goto end;
1941         }
1942     } else
1943         avctx->sw_pix_fmt = avctx->pix_fmt;
1944
1945     ret = avctx->get_buffer2(avctx, frame, flags);
1946     if (ret < 0)
1947         goto fail;
1948
1949     validate_avframe_allocation(avctx, frame);
1950
1951     ret = ff_attach_decode_data(frame);
1952     if (ret < 0)
1953         goto fail;
1954
1955 end:
1956     if (avctx->codec_type == AVMEDIA_TYPE_VIDEO && !override_dimensions &&
1957         !(avctx->codec->caps_internal & FF_CODEC_CAP_EXPORTS_CROPPING)) {
1958         frame->width  = avctx->width;
1959         frame->height = avctx->height;
1960     }
1961
1962 fail:
1963     if (ret < 0) {
1964         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
1965         av_frame_unref(frame);
1966     }
1967
1968     return ret;
1969 }
1970
1971 static int reget_buffer_internal(AVCodecContext *avctx, AVFrame *frame, int flags)
1972 {
1973     AVFrame *tmp;
1974     int ret;
1975
1976     av_assert0(avctx->codec_type == AVMEDIA_TYPE_VIDEO);
1977
1978     if (frame->data[0] && (frame->width != avctx->width || frame->height != avctx->height || frame->format != avctx->pix_fmt)) {
1979         av_log(avctx, AV_LOG_WARNING, "Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()\n",
1980                frame->width, frame->height, av_get_pix_fmt_name(frame->format), avctx->width, avctx->height, av_get_pix_fmt_name(avctx->pix_fmt));
1981         av_frame_unref(frame);
1982     }
1983
1984     if (!frame->data[0])
1985         return ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
1986
1987     if ((flags & FF_REGET_BUFFER_FLAG_READONLY) || av_frame_is_writable(frame))
1988         return ff_decode_frame_props(avctx, frame);
1989
1990     tmp = av_frame_alloc();
1991     if (!tmp)
1992         return AVERROR(ENOMEM);
1993
1994     av_frame_move_ref(tmp, frame);
1995
1996     ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF);
1997     if (ret < 0) {
1998         av_frame_free(&tmp);
1999         return ret;
2000     }
2001
2002     av_frame_copy(frame, tmp);
2003     av_frame_free(&tmp);
2004
2005     return 0;
2006 }
2007
2008 int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
2009 {
2010     int ret = reget_buffer_internal(avctx, frame, flags);
2011     if (ret < 0)
2012         av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
2013     return ret;
2014 }