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