]> git.sesse.net Git - ffmpeg/blob - libavutil/frame.c
Merge commit 'bd49be885e9ad6bae599c54473ba2fa2957eb140'
[ffmpeg] / libavutil / frame.c
1 /*
2  *
3  * This file is part of FFmpeg.
4  *
5  * FFmpeg is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * FFmpeg is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with FFmpeg; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19
20 #include "channel_layout.h"
21 #include "avassert.h"
22 #include "buffer.h"
23 #include "common.h"
24 #include "dict.h"
25 #include "frame.h"
26 #include "imgutils.h"
27 #include "mem.h"
28 #include "samplefmt.h"
29
30 MAKE_ACCESSORS(AVFrame, frame, int64_t, best_effort_timestamp)
31 MAKE_ACCESSORS(AVFrame, frame, int64_t, pkt_duration)
32 MAKE_ACCESSORS(AVFrame, frame, int64_t, pkt_pos)
33 MAKE_ACCESSORS(AVFrame, frame, int64_t, channel_layout)
34 MAKE_ACCESSORS(AVFrame, frame, int,     channels)
35 MAKE_ACCESSORS(AVFrame, frame, int,     sample_rate)
36 MAKE_ACCESSORS(AVFrame, frame, AVDictionary *, metadata)
37 MAKE_ACCESSORS(AVFrame, frame, int,     decode_error_flags)
38 MAKE_ACCESSORS(AVFrame, frame, int,     pkt_size)
39 MAKE_ACCESSORS(AVFrame, frame, enum AVColorSpace, colorspace)
40 MAKE_ACCESSORS(AVFrame, frame, enum AVColorRange, color_range)
41
42 #define CHECK_CHANNELS_CONSISTENCY(frame) \
43     av_assert2(!(frame)->channel_layout || \
44                (frame)->channels == \
45                av_get_channel_layout_nb_channels((frame)->channel_layout))
46
47 AVDictionary **avpriv_frame_get_metadatap(AVFrame *frame) {return &frame->metadata;};
48
49 #if FF_API_FRAME_QP
50 int av_frame_set_qp_table(AVFrame *f, AVBufferRef *buf, int stride, int qp_type)
51 {
52     av_buffer_unref(&f->qp_table_buf);
53
54     f->qp_table_buf = buf;
55
56 FF_DISABLE_DEPRECATION_WARNINGS
57     f->qscale_table = buf->data;
58     f->qstride      = stride;
59     f->qscale_type  = qp_type;
60 FF_ENABLE_DEPRECATION_WARNINGS
61
62     return 0;
63 }
64
65 int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type)
66 {
67 FF_DISABLE_DEPRECATION_WARNINGS
68     *stride = f->qstride;
69     *type   = f->qscale_type;
70 FF_ENABLE_DEPRECATION_WARNINGS
71
72     if (!f->qp_table_buf)
73         return NULL;
74
75     return f->qp_table_buf->data;
76 }
77 #endif
78
79 const char *av_get_colorspace_name(enum AVColorSpace val)
80 {
81     static const char * const name[] = {
82         [AVCOL_SPC_RGB]       = "GBR",
83         [AVCOL_SPC_BT709]     = "bt709",
84         [AVCOL_SPC_FCC]       = "fcc",
85         [AVCOL_SPC_BT470BG]   = "bt470bg",
86         [AVCOL_SPC_SMPTE170M] = "smpte170m",
87         [AVCOL_SPC_SMPTE240M] = "smpte240m",
88         [AVCOL_SPC_YCOCG]     = "YCgCo",
89     };
90     if ((unsigned)val >= FF_ARRAY_ELEMS(name))
91         return NULL;
92     return name[val];
93 }
94
95 static void get_frame_defaults(AVFrame *frame)
96 {
97     if (frame->extended_data != frame->data)
98         av_freep(&frame->extended_data);
99
100     memset(frame, 0, sizeof(*frame));
101
102     frame->pts                   =
103     frame->pkt_dts               =
104     frame->pkt_pts               = AV_NOPTS_VALUE;
105     av_frame_set_best_effort_timestamp(frame, AV_NOPTS_VALUE);
106     av_frame_set_pkt_duration         (frame, 0);
107     av_frame_set_pkt_pos              (frame, -1);
108     av_frame_set_pkt_size             (frame, -1);
109     frame->key_frame           = 1;
110     frame->sample_aspect_ratio = (AVRational){ 0, 1 };
111     frame->format              = -1; /* unknown */
112     frame->extended_data       = frame->data;
113     frame->color_primaries     = AVCOL_PRI_UNSPECIFIED;
114     frame->color_trc           = AVCOL_TRC_UNSPECIFIED;
115     frame->colorspace          = AVCOL_SPC_UNSPECIFIED;
116     frame->color_range         = AVCOL_RANGE_UNSPECIFIED;
117     frame->chroma_location     = AVCHROMA_LOC_UNSPECIFIED;
118 }
119
120 static void free_side_data(AVFrameSideData **ptr_sd)
121 {
122     AVFrameSideData *sd = *ptr_sd;
123
124     av_buffer_unref(&sd->buf);
125     av_dict_free(&sd->metadata);
126     av_freep(ptr_sd);
127 }
128
129 static void wipe_side_data(AVFrame *frame)
130 {
131     int i;
132
133     for (i = 0; i < frame->nb_side_data; i++) {
134         free_side_data(&frame->side_data[i]);
135     }
136     frame->nb_side_data = 0;
137
138     av_freep(&frame->side_data);
139 }
140
141 AVFrame *av_frame_alloc(void)
142 {
143     AVFrame *frame = av_mallocz(sizeof(*frame));
144
145     if (!frame)
146         return NULL;
147
148     frame->extended_data = NULL;
149     get_frame_defaults(frame);
150
151     return frame;
152 }
153
154 void av_frame_free(AVFrame **frame)
155 {
156     if (!frame || !*frame)
157         return;
158
159     av_frame_unref(*frame);
160     av_freep(frame);
161 }
162
163 static int get_video_buffer(AVFrame *frame, int align)
164 {
165     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
166     int ret, i;
167
168     if (!desc)
169         return AVERROR(EINVAL);
170
171     if ((ret = av_image_check_size(frame->width, frame->height, 0, NULL)) < 0)
172         return ret;
173
174     if (!frame->linesize[0]) {
175         for(i=1; i<=align; i+=i) {
176             ret = av_image_fill_linesizes(frame->linesize, frame->format,
177                                           FFALIGN(frame->width, i));
178             if (ret < 0)
179                 return ret;
180             if (!(frame->linesize[0] & (align-1)))
181                 break;
182         }
183
184         for (i = 0; i < 4 && frame->linesize[i]; i++)
185             frame->linesize[i] = FFALIGN(frame->linesize[i], align);
186     }
187
188     for (i = 0; i < 4 && frame->linesize[i]; i++) {
189         int h = FFALIGN(frame->height, 32);
190         if (i == 1 || i == 2)
191             h = AV_CEIL_RSHIFT(h, desc->log2_chroma_h);
192
193         frame->buf[i] = av_buffer_alloc(frame->linesize[i] * h + 16 + 16/*STRIDE_ALIGN*/ - 1);
194         if (!frame->buf[i])
195             goto fail;
196
197         frame->data[i] = frame->buf[i]->data;
198     }
199     if (desc->flags & AV_PIX_FMT_FLAG_PAL || desc->flags & AV_PIX_FMT_FLAG_PSEUDOPAL) {
200         av_buffer_unref(&frame->buf[1]);
201         frame->buf[1] = av_buffer_alloc(AVPALETTE_SIZE);
202         if (!frame->buf[1])
203             goto fail;
204         frame->data[1] = frame->buf[1]->data;
205     }
206
207     frame->extended_data = frame->data;
208
209     return 0;
210 fail:
211     av_frame_unref(frame);
212     return AVERROR(ENOMEM);
213 }
214
215 static int get_audio_buffer(AVFrame *frame, int align)
216 {
217     int channels;
218     int planar   = av_sample_fmt_is_planar(frame->format);
219     int planes;
220     int ret, i;
221
222     if (!frame->channels)
223         frame->channels = av_get_channel_layout_nb_channels(frame->channel_layout);
224
225     channels = frame->channels;
226     planes = planar ? channels : 1;
227
228     CHECK_CHANNELS_CONSISTENCY(frame);
229     if (!frame->linesize[0]) {
230         ret = av_samples_get_buffer_size(&frame->linesize[0], channels,
231                                          frame->nb_samples, frame->format,
232                                          align);
233         if (ret < 0)
234             return ret;
235     }
236
237     if (planes > AV_NUM_DATA_POINTERS) {
238         frame->extended_data = av_mallocz_array(planes,
239                                           sizeof(*frame->extended_data));
240         frame->extended_buf  = av_mallocz_array((planes - AV_NUM_DATA_POINTERS),
241                                           sizeof(*frame->extended_buf));
242         if (!frame->extended_data || !frame->extended_buf) {
243             av_freep(&frame->extended_data);
244             av_freep(&frame->extended_buf);
245             return AVERROR(ENOMEM);
246         }
247         frame->nb_extended_buf = planes - AV_NUM_DATA_POINTERS;
248     } else
249         frame->extended_data = frame->data;
250
251     for (i = 0; i < FFMIN(planes, AV_NUM_DATA_POINTERS); i++) {
252         frame->buf[i] = av_buffer_alloc(frame->linesize[0]);
253         if (!frame->buf[i]) {
254             av_frame_unref(frame);
255             return AVERROR(ENOMEM);
256         }
257         frame->extended_data[i] = frame->data[i] = frame->buf[i]->data;
258     }
259     for (i = 0; i < planes - AV_NUM_DATA_POINTERS; i++) {
260         frame->extended_buf[i] = av_buffer_alloc(frame->linesize[0]);
261         if (!frame->extended_buf[i]) {
262             av_frame_unref(frame);
263             return AVERROR(ENOMEM);
264         }
265         frame->extended_data[i + AV_NUM_DATA_POINTERS] = frame->extended_buf[i]->data;
266     }
267     return 0;
268
269 }
270
271 int av_frame_get_buffer(AVFrame *frame, int align)
272 {
273     if (frame->format < 0)
274         return AVERROR(EINVAL);
275
276     if (frame->width > 0 && frame->height > 0)
277         return get_video_buffer(frame, align);
278     else if (frame->nb_samples > 0 && (frame->channel_layout || frame->channels > 0))
279         return get_audio_buffer(frame, align);
280
281     return AVERROR(EINVAL);
282 }
283
284 static int frame_copy_props(AVFrame *dst, const AVFrame *src, int force_copy)
285 {
286     int i;
287
288     dst->key_frame              = src->key_frame;
289     dst->pict_type              = src->pict_type;
290     dst->sample_aspect_ratio    = src->sample_aspect_ratio;
291     dst->pts                    = src->pts;
292     dst->repeat_pict            = src->repeat_pict;
293     dst->interlaced_frame       = src->interlaced_frame;
294     dst->top_field_first        = src->top_field_first;
295     dst->palette_has_changed    = src->palette_has_changed;
296     dst->sample_rate            = src->sample_rate;
297     dst->opaque                 = src->opaque;
298     dst->pkt_pts                = src->pkt_pts;
299     dst->pkt_dts                = src->pkt_dts;
300     dst->pkt_pos                = src->pkt_pos;
301     dst->pkt_size               = src->pkt_size;
302     dst->pkt_duration           = src->pkt_duration;
303     dst->reordered_opaque       = src->reordered_opaque;
304     dst->quality                = src->quality;
305     dst->best_effort_timestamp  = src->best_effort_timestamp;
306     dst->coded_picture_number   = src->coded_picture_number;
307     dst->display_picture_number = src->display_picture_number;
308     dst->flags                  = src->flags;
309     dst->decode_error_flags     = src->decode_error_flags;
310     dst->color_primaries        = src->color_primaries;
311     dst->color_trc              = src->color_trc;
312     dst->colorspace             = src->colorspace;
313     dst->color_range            = src->color_range;
314     dst->chroma_location        = src->chroma_location;
315
316     av_dict_copy(&dst->metadata, src->metadata, 0);
317
318 #if FF_API_ERROR_FRAME
319 FF_DISABLE_DEPRECATION_WARNINGS
320     memcpy(dst->error, src->error, sizeof(dst->error));
321 FF_ENABLE_DEPRECATION_WARNINGS
322 #endif
323
324     for (i = 0; i < src->nb_side_data; i++) {
325         const AVFrameSideData *sd_src = src->side_data[i];
326         AVFrameSideData *sd_dst;
327         if (   sd_src->type == AV_FRAME_DATA_PANSCAN
328             && (src->width != dst->width || src->height != dst->height))
329             continue;
330         if (force_copy) {
331             sd_dst = av_frame_new_side_data(dst, sd_src->type,
332                                             sd_src->size);
333             if (!sd_dst) {
334                 wipe_side_data(dst);
335                 return AVERROR(ENOMEM);
336             }
337             memcpy(sd_dst->data, sd_src->data, sd_src->size);
338         } else {
339             sd_dst = av_frame_new_side_data(dst, sd_src->type, 0);
340             if (!sd_dst) {
341                 wipe_side_data(dst);
342                 return AVERROR(ENOMEM);
343             }
344             sd_dst->buf = av_buffer_ref(sd_src->buf);
345             if (!sd_dst->buf) {
346                 wipe_side_data(dst);
347                 return AVERROR(ENOMEM);
348             }
349             sd_dst->data = sd_dst->buf->data;
350             sd_dst->size = sd_dst->buf->size;
351         }
352         av_dict_copy(&sd_dst->metadata, sd_src->metadata, 0);
353     }
354
355 #if FF_API_FRAME_QP
356 FF_DISABLE_DEPRECATION_WARNINGS
357     dst->qscale_table = NULL;
358     dst->qstride      = 0;
359     dst->qscale_type  = 0;
360     av_buffer_unref(&dst->qp_table_buf);
361     if (src->qp_table_buf) {
362         dst->qp_table_buf = av_buffer_ref(src->qp_table_buf);
363         if (dst->qp_table_buf) {
364             dst->qscale_table = dst->qp_table_buf->data;
365             dst->qstride      = src->qstride;
366             dst->qscale_type  = src->qscale_type;
367         }
368     }
369 FF_ENABLE_DEPRECATION_WARNINGS
370 #endif
371
372     return 0;
373 }
374
375 int av_frame_ref(AVFrame *dst, const AVFrame *src)
376 {
377     int i, ret = 0;
378
379     dst->format         = src->format;
380     dst->width          = src->width;
381     dst->height         = src->height;
382     dst->channels       = src->channels;
383     dst->channel_layout = src->channel_layout;
384     dst->nb_samples     = src->nb_samples;
385
386     ret = frame_copy_props(dst, src, 0);
387     if (ret < 0)
388         return ret;
389
390     /* duplicate the frame data if it's not refcounted */
391     if (!src->buf[0]) {
392         ret = av_frame_get_buffer(dst, 32);
393         if (ret < 0)
394             return ret;
395
396         ret = av_frame_copy(dst, src);
397         if (ret < 0)
398             av_frame_unref(dst);
399
400         return ret;
401     }
402
403     /* ref the buffers */
404     for (i = 0; i < FF_ARRAY_ELEMS(src->buf); i++) {
405         if (!src->buf[i])
406             continue;
407         dst->buf[i] = av_buffer_ref(src->buf[i]);
408         if (!dst->buf[i]) {
409             ret = AVERROR(ENOMEM);
410             goto fail;
411         }
412     }
413
414     if (src->extended_buf) {
415         dst->extended_buf = av_mallocz_array(sizeof(*dst->extended_buf),
416                                        src->nb_extended_buf);
417         if (!dst->extended_buf) {
418             ret = AVERROR(ENOMEM);
419             goto fail;
420         }
421         dst->nb_extended_buf = src->nb_extended_buf;
422
423         for (i = 0; i < src->nb_extended_buf; i++) {
424             dst->extended_buf[i] = av_buffer_ref(src->extended_buf[i]);
425             if (!dst->extended_buf[i]) {
426                 ret = AVERROR(ENOMEM);
427                 goto fail;
428             }
429         }
430     }
431
432     if (src->hw_frames_ctx) {
433         dst->hw_frames_ctx = av_buffer_ref(src->hw_frames_ctx);
434         if (!dst->hw_frames_ctx) {
435             ret = AVERROR(ENOMEM);
436             goto fail;
437         }
438     }
439
440     /* duplicate extended data */
441     if (src->extended_data != src->data) {
442         int ch = src->channels;
443
444         if (!ch) {
445             ret = AVERROR(EINVAL);
446             goto fail;
447         }
448         CHECK_CHANNELS_CONSISTENCY(src);
449
450         dst->extended_data = av_malloc_array(sizeof(*dst->extended_data), ch);
451         if (!dst->extended_data) {
452             ret = AVERROR(ENOMEM);
453             goto fail;
454         }
455         memcpy(dst->extended_data, src->extended_data, sizeof(*src->extended_data) * ch);
456     } else
457         dst->extended_data = dst->data;
458
459     memcpy(dst->data,     src->data,     sizeof(src->data));
460     memcpy(dst->linesize, src->linesize, sizeof(src->linesize));
461
462     return 0;
463
464 fail:
465     av_frame_unref(dst);
466     return ret;
467 }
468
469 AVFrame *av_frame_clone(const AVFrame *src)
470 {
471     AVFrame *ret = av_frame_alloc();
472
473     if (!ret)
474         return NULL;
475
476     if (av_frame_ref(ret, src) < 0)
477         av_frame_free(&ret);
478
479     return ret;
480 }
481
482 void av_frame_unref(AVFrame *frame)
483 {
484     int i;
485
486     if (!frame)
487         return;
488
489     wipe_side_data(frame);
490
491     for (i = 0; i < FF_ARRAY_ELEMS(frame->buf); i++)
492         av_buffer_unref(&frame->buf[i]);
493     for (i = 0; i < frame->nb_extended_buf; i++)
494         av_buffer_unref(&frame->extended_buf[i]);
495     av_freep(&frame->extended_buf);
496     av_dict_free(&frame->metadata);
497 #if FF_API_FRAME_QP
498     av_buffer_unref(&frame->qp_table_buf);
499 #endif
500
501     av_buffer_unref(&frame->hw_frames_ctx);
502
503     get_frame_defaults(frame);
504 }
505
506 void av_frame_move_ref(AVFrame *dst, AVFrame *src)
507 {
508     *dst = *src;
509     if (src->extended_data == src->data)
510         dst->extended_data = dst->data;
511     memset(src, 0, sizeof(*src));
512     get_frame_defaults(src);
513 }
514
515 int av_frame_is_writable(AVFrame *frame)
516 {
517     int i, ret = 1;
518
519     /* assume non-refcounted frames are not writable */
520     if (!frame->buf[0])
521         return 0;
522
523     for (i = 0; i < FF_ARRAY_ELEMS(frame->buf); i++)
524         if (frame->buf[i])
525             ret &= !!av_buffer_is_writable(frame->buf[i]);
526     for (i = 0; i < frame->nb_extended_buf; i++)
527         ret &= !!av_buffer_is_writable(frame->extended_buf[i]);
528
529     return ret;
530 }
531
532 int av_frame_make_writable(AVFrame *frame)
533 {
534     AVFrame tmp;
535     int ret;
536
537     if (!frame->buf[0])
538         return AVERROR(EINVAL);
539
540     if (av_frame_is_writable(frame))
541         return 0;
542
543     memset(&tmp, 0, sizeof(tmp));
544     tmp.format         = frame->format;
545     tmp.width          = frame->width;
546     tmp.height         = frame->height;
547     tmp.channels       = frame->channels;
548     tmp.channel_layout = frame->channel_layout;
549     tmp.nb_samples     = frame->nb_samples;
550     ret = av_frame_get_buffer(&tmp, 32);
551     if (ret < 0)
552         return ret;
553
554     ret = av_frame_copy(&tmp, frame);
555     if (ret < 0) {
556         av_frame_unref(&tmp);
557         return ret;
558     }
559
560     ret = av_frame_copy_props(&tmp, frame);
561     if (ret < 0) {
562         av_frame_unref(&tmp);
563         return ret;
564     }
565
566     av_frame_unref(frame);
567
568     *frame = tmp;
569     if (tmp.data == tmp.extended_data)
570         frame->extended_data = frame->data;
571
572     return 0;
573 }
574
575 int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
576 {
577     return frame_copy_props(dst, src, 1);
578 }
579
580 AVBufferRef *av_frame_get_plane_buffer(AVFrame *frame, int plane)
581 {
582     uint8_t *data;
583     int planes, i;
584
585     if (frame->nb_samples) {
586         int channels = frame->channels;
587         if (!channels)
588             return NULL;
589         CHECK_CHANNELS_CONSISTENCY(frame);
590         planes = av_sample_fmt_is_planar(frame->format) ? channels : 1;
591     } else
592         planes = 4;
593
594     if (plane < 0 || plane >= planes || !frame->extended_data[plane])
595         return NULL;
596     data = frame->extended_data[plane];
597
598     for (i = 0; i < FF_ARRAY_ELEMS(frame->buf) && frame->buf[i]; i++) {
599         AVBufferRef *buf = frame->buf[i];
600         if (data >= buf->data && data < buf->data + buf->size)
601             return buf;
602     }
603     for (i = 0; i < frame->nb_extended_buf; i++) {
604         AVBufferRef *buf = frame->extended_buf[i];
605         if (data >= buf->data && data < buf->data + buf->size)
606             return buf;
607     }
608     return NULL;
609 }
610
611 AVFrameSideData *av_frame_new_side_data(AVFrame *frame,
612                                         enum AVFrameSideDataType type,
613                                         int size)
614 {
615     AVFrameSideData *ret, **tmp;
616
617     if (frame->nb_side_data > INT_MAX / sizeof(*frame->side_data) - 1)
618         return NULL;
619
620     tmp = av_realloc(frame->side_data,
621                      (frame->nb_side_data + 1) * sizeof(*frame->side_data));
622     if (!tmp)
623         return NULL;
624     frame->side_data = tmp;
625
626     ret = av_mallocz(sizeof(*ret));
627     if (!ret)
628         return NULL;
629
630     if (size > 0) {
631         ret->buf = av_buffer_alloc(size);
632         if (!ret->buf) {
633             av_freep(&ret);
634             return NULL;
635         }
636
637         ret->data = ret->buf->data;
638         ret->size = size;
639     }
640     ret->type = type;
641
642     frame->side_data[frame->nb_side_data++] = ret;
643
644     return ret;
645 }
646
647 AVFrameSideData *av_frame_get_side_data(const AVFrame *frame,
648                                         enum AVFrameSideDataType type)
649 {
650     int i;
651
652     for (i = 0; i < frame->nb_side_data; i++) {
653         if (frame->side_data[i]->type == type)
654             return frame->side_data[i];
655     }
656     return NULL;
657 }
658
659 static int frame_copy_video(AVFrame *dst, const AVFrame *src)
660 {
661     const uint8_t *src_data[4];
662     int i, planes;
663
664     if (dst->width  < src->width ||
665         dst->height < src->height)
666         return AVERROR(EINVAL);
667
668     planes = av_pix_fmt_count_planes(dst->format);
669     for (i = 0; i < planes; i++)
670         if (!dst->data[i] || !src->data[i])
671             return AVERROR(EINVAL);
672
673     memcpy(src_data, src->data, sizeof(src_data));
674     av_image_copy(dst->data, dst->linesize,
675                   src_data, src->linesize,
676                   dst->format, src->width, src->height);
677
678     return 0;
679 }
680
681 static int frame_copy_audio(AVFrame *dst, const AVFrame *src)
682 {
683     int planar   = av_sample_fmt_is_planar(dst->format);
684     int channels = dst->channels;
685     int planes   = planar ? channels : 1;
686     int i;
687
688     if (dst->nb_samples     != src->nb_samples ||
689         dst->channels       != src->channels ||
690         dst->channel_layout != src->channel_layout)
691         return AVERROR(EINVAL);
692
693     CHECK_CHANNELS_CONSISTENCY(src);
694
695     for (i = 0; i < planes; i++)
696         if (!dst->extended_data[i] || !src->extended_data[i])
697             return AVERROR(EINVAL);
698
699     av_samples_copy(dst->extended_data, src->extended_data, 0, 0,
700                     dst->nb_samples, channels, dst->format);
701
702     return 0;
703 }
704
705 int av_frame_copy(AVFrame *dst, const AVFrame *src)
706 {
707     if (dst->format != src->format || dst->format < 0)
708         return AVERROR(EINVAL);
709
710     if (dst->width > 0 && dst->height > 0)
711         return frame_copy_video(dst, src);
712     else if (dst->nb_samples > 0 && dst->channel_layout)
713         return frame_copy_audio(dst, src);
714
715     return AVERROR(EINVAL);
716 }
717
718 void av_frame_remove_side_data(AVFrame *frame, enum AVFrameSideDataType type)
719 {
720     int i;
721
722     for (i = 0; i < frame->nb_side_data; i++) {
723         AVFrameSideData *sd = frame->side_data[i];
724         if (sd->type == type) {
725             free_side_data(&frame->side_data[i]);
726             frame->side_data[i] = frame->side_data[frame->nb_side_data - 1];
727             frame->nb_side_data--;
728         }
729     }
730 }
731
732 const char *av_frame_side_data_name(enum AVFrameSideDataType type)
733 {
734     switch(type) {
735     case AV_FRAME_DATA_PANSCAN:         return "AVPanScan";
736     case AV_FRAME_DATA_A53_CC:          return "ATSC A53 Part 4 Closed Captions";
737     case AV_FRAME_DATA_STEREO3D:        return "Stereoscopic 3d metadata";
738     case AV_FRAME_DATA_MATRIXENCODING:  return "AVMatrixEncoding";
739     case AV_FRAME_DATA_DOWNMIX_INFO:    return "Metadata relevant to a downmix procedure";
740     case AV_FRAME_DATA_REPLAYGAIN:      return "AVReplayGain";
741     case AV_FRAME_DATA_DISPLAYMATRIX:   return "3x3 displaymatrix";
742     case AV_FRAME_DATA_AFD:             return "Active format description";
743     case AV_FRAME_DATA_MOTION_VECTORS:  return "Motion vectors";
744     case AV_FRAME_DATA_SKIP_SAMPLES:    return "Skip samples";
745     case AV_FRAME_DATA_AUDIO_SERVICE_TYPE:          return "Audio service type";
746     case AV_FRAME_DATA_MASTERING_DISPLAY_METADATA:  return "Mastering display metadata";
747     case AV_FRAME_DATA_GOP_TIMECODE:                return "GOP timecode";
748     }
749     return NULL;
750 }