]> git.sesse.net Git - ffmpeg/blob - libavutil/frame.c
Merge commit 'c084d6d2cfb570b10d8784eb20cc696dfb7c5605'
[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     /* duplicate extended data */
433     if (src->extended_data != src->data) {
434         int ch = src->channels;
435
436         if (!ch) {
437             ret = AVERROR(EINVAL);
438             goto fail;
439         }
440         CHECK_CHANNELS_CONSISTENCY(src);
441
442         dst->extended_data = av_malloc_array(sizeof(*dst->extended_data), ch);
443         if (!dst->extended_data) {
444             ret = AVERROR(ENOMEM);
445             goto fail;
446         }
447         memcpy(dst->extended_data, src->extended_data, sizeof(*src->extended_data) * ch);
448     } else
449         dst->extended_data = dst->data;
450
451     memcpy(dst->data,     src->data,     sizeof(src->data));
452     memcpy(dst->linesize, src->linesize, sizeof(src->linesize));
453
454     return 0;
455
456 fail:
457     av_frame_unref(dst);
458     return ret;
459 }
460
461 AVFrame *av_frame_clone(const AVFrame *src)
462 {
463     AVFrame *ret = av_frame_alloc();
464
465     if (!ret)
466         return NULL;
467
468     if (av_frame_ref(ret, src) < 0)
469         av_frame_free(&ret);
470
471     return ret;
472 }
473
474 void av_frame_unref(AVFrame *frame)
475 {
476     int i;
477
478     if (!frame)
479         return;
480
481     wipe_side_data(frame);
482
483     for (i = 0; i < FF_ARRAY_ELEMS(frame->buf); i++)
484         av_buffer_unref(&frame->buf[i]);
485     for (i = 0; i < frame->nb_extended_buf; i++)
486         av_buffer_unref(&frame->extended_buf[i]);
487     av_freep(&frame->extended_buf);
488     av_dict_free(&frame->metadata);
489 #if FF_API_FRAME_QP
490     av_buffer_unref(&frame->qp_table_buf);
491 #endif
492
493     get_frame_defaults(frame);
494 }
495
496 void av_frame_move_ref(AVFrame *dst, AVFrame *src)
497 {
498     *dst = *src;
499     if (src->extended_data == src->data)
500         dst->extended_data = dst->data;
501     memset(src, 0, sizeof(*src));
502     get_frame_defaults(src);
503 }
504
505 int av_frame_is_writable(AVFrame *frame)
506 {
507     int i, ret = 1;
508
509     /* assume non-refcounted frames are not writable */
510     if (!frame->buf[0])
511         return 0;
512
513     for (i = 0; i < FF_ARRAY_ELEMS(frame->buf); i++)
514         if (frame->buf[i])
515             ret &= !!av_buffer_is_writable(frame->buf[i]);
516     for (i = 0; i < frame->nb_extended_buf; i++)
517         ret &= !!av_buffer_is_writable(frame->extended_buf[i]);
518
519     return ret;
520 }
521
522 int av_frame_make_writable(AVFrame *frame)
523 {
524     AVFrame tmp;
525     int ret;
526
527     if (!frame->buf[0])
528         return AVERROR(EINVAL);
529
530     if (av_frame_is_writable(frame))
531         return 0;
532
533     memset(&tmp, 0, sizeof(tmp));
534     tmp.format         = frame->format;
535     tmp.width          = frame->width;
536     tmp.height         = frame->height;
537     tmp.channels       = frame->channels;
538     tmp.channel_layout = frame->channel_layout;
539     tmp.nb_samples     = frame->nb_samples;
540     ret = av_frame_get_buffer(&tmp, 32);
541     if (ret < 0)
542         return ret;
543
544     ret = av_frame_copy(&tmp, frame);
545     if (ret < 0) {
546         av_frame_unref(&tmp);
547         return ret;
548     }
549
550     ret = av_frame_copy_props(&tmp, frame);
551     if (ret < 0) {
552         av_frame_unref(&tmp);
553         return ret;
554     }
555
556     av_frame_unref(frame);
557
558     *frame = tmp;
559     if (tmp.data == tmp.extended_data)
560         frame->extended_data = frame->data;
561
562     return 0;
563 }
564
565 int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
566 {
567     return frame_copy_props(dst, src, 1);
568 }
569
570 AVBufferRef *av_frame_get_plane_buffer(AVFrame *frame, int plane)
571 {
572     uint8_t *data;
573     int planes, i;
574
575     if (frame->nb_samples) {
576         int channels = frame->channels;
577         if (!channels)
578             return NULL;
579         CHECK_CHANNELS_CONSISTENCY(frame);
580         planes = av_sample_fmt_is_planar(frame->format) ? channels : 1;
581     } else
582         planes = 4;
583
584     if (plane < 0 || plane >= planes || !frame->extended_data[plane])
585         return NULL;
586     data = frame->extended_data[plane];
587
588     for (i = 0; i < FF_ARRAY_ELEMS(frame->buf) && frame->buf[i]; i++) {
589         AVBufferRef *buf = frame->buf[i];
590         if (data >= buf->data && data < buf->data + buf->size)
591             return buf;
592     }
593     for (i = 0; i < frame->nb_extended_buf; i++) {
594         AVBufferRef *buf = frame->extended_buf[i];
595         if (data >= buf->data && data < buf->data + buf->size)
596             return buf;
597     }
598     return NULL;
599 }
600
601 AVFrameSideData *av_frame_new_side_data(AVFrame *frame,
602                                         enum AVFrameSideDataType type,
603                                         int size)
604 {
605     AVFrameSideData *ret, **tmp;
606
607     if (frame->nb_side_data > INT_MAX / sizeof(*frame->side_data) - 1)
608         return NULL;
609
610     tmp = av_realloc(frame->side_data,
611                      (frame->nb_side_data + 1) * sizeof(*frame->side_data));
612     if (!tmp)
613         return NULL;
614     frame->side_data = tmp;
615
616     ret = av_mallocz(sizeof(*ret));
617     if (!ret)
618         return NULL;
619
620     if (size > 0) {
621         ret->buf = av_buffer_alloc(size);
622         if (!ret->buf) {
623             av_freep(&ret);
624             return NULL;
625         }
626
627         ret->data = ret->buf->data;
628         ret->size = size;
629     }
630     ret->type = type;
631
632     frame->side_data[frame->nb_side_data++] = ret;
633
634     return ret;
635 }
636
637 AVFrameSideData *av_frame_get_side_data(const AVFrame *frame,
638                                         enum AVFrameSideDataType type)
639 {
640     int i;
641
642     for (i = 0; i < frame->nb_side_data; i++) {
643         if (frame->side_data[i]->type == type)
644             return frame->side_data[i];
645     }
646     return NULL;
647 }
648
649 static int frame_copy_video(AVFrame *dst, const AVFrame *src)
650 {
651     const uint8_t *src_data[4];
652     int i, planes;
653
654     if (dst->width  < src->width ||
655         dst->height < src->height)
656         return AVERROR(EINVAL);
657
658     planes = av_pix_fmt_count_planes(dst->format);
659     for (i = 0; i < planes; i++)
660         if (!dst->data[i] || !src->data[i])
661             return AVERROR(EINVAL);
662
663     memcpy(src_data, src->data, sizeof(src_data));
664     av_image_copy(dst->data, dst->linesize,
665                   src_data, src->linesize,
666                   dst->format, src->width, src->height);
667
668     return 0;
669 }
670
671 static int frame_copy_audio(AVFrame *dst, const AVFrame *src)
672 {
673     int planar   = av_sample_fmt_is_planar(dst->format);
674     int channels = dst->channels;
675     int planes   = planar ? channels : 1;
676     int i;
677
678     if (dst->nb_samples     != src->nb_samples ||
679         dst->channels       != src->channels ||
680         dst->channel_layout != src->channel_layout)
681         return AVERROR(EINVAL);
682
683     CHECK_CHANNELS_CONSISTENCY(src);
684
685     for (i = 0; i < planes; i++)
686         if (!dst->extended_data[i] || !src->extended_data[i])
687             return AVERROR(EINVAL);
688
689     av_samples_copy(dst->extended_data, src->extended_data, 0, 0,
690                     dst->nb_samples, channels, dst->format);
691
692     return 0;
693 }
694
695 int av_frame_copy(AVFrame *dst, const AVFrame *src)
696 {
697     if (dst->format != src->format || dst->format < 0)
698         return AVERROR(EINVAL);
699
700     if (dst->width > 0 && dst->height > 0)
701         return frame_copy_video(dst, src);
702     else if (dst->nb_samples > 0 && dst->channel_layout)
703         return frame_copy_audio(dst, src);
704
705     return AVERROR(EINVAL);
706 }
707
708 void av_frame_remove_side_data(AVFrame *frame, enum AVFrameSideDataType type)
709 {
710     int i;
711
712     for (i = 0; i < frame->nb_side_data; i++) {
713         AVFrameSideData *sd = frame->side_data[i];
714         if (sd->type == type) {
715             free_side_data(&frame->side_data[i]);
716             frame->side_data[i] = frame->side_data[frame->nb_side_data - 1];
717             frame->nb_side_data--;
718         }
719     }
720 }
721
722 const char *av_frame_side_data_name(enum AVFrameSideDataType type)
723 {
724     switch(type) {
725     case AV_FRAME_DATA_PANSCAN:         return "AVPanScan";
726     case AV_FRAME_DATA_A53_CC:          return "ATSC A53 Part 4 Closed Captions";
727     case AV_FRAME_DATA_STEREO3D:        return "Stereoscopic 3d metadata";
728     case AV_FRAME_DATA_MATRIXENCODING:  return "AVMatrixEncoding";
729     case AV_FRAME_DATA_DOWNMIX_INFO:    return "Metadata relevant to a downmix procedure";
730     case AV_FRAME_DATA_REPLAYGAIN:      return "AVReplayGain";
731     case AV_FRAME_DATA_DISPLAYMATRIX:   return "3x3 displaymatrix";
732     case AV_FRAME_DATA_AFD:             return "Active format description";
733     case AV_FRAME_DATA_MOTION_VECTORS:  return "Motion vectors";
734     case AV_FRAME_DATA_SKIP_SAMPLES:    return "Skip samples";
735     case AV_FRAME_DATA_AUDIO_SERVICE_TYPE:          return "Audio service type";
736     case AV_FRAME_DATA_MASTERING_DISPLAY_METADATA:  return "Mastering display metadata";
737     case AV_FRAME_DATA_GOP_TIMECODE:                return "GOP timecode";
738     }
739     return NULL;
740 }