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