frame: Remove some FF_API_AVFRAME_COLORSPACE leftovers

This commit is contained in:
Diego Biurrun 2014-08-13 22:35:47 +02:00
parent ab059f0aa8
commit e070d0a5ca
1 changed files with 0 additions and 2 deletions

View File

@ -385,13 +385,11 @@ int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
dst->coded_picture_number = src->coded_picture_number;
dst->display_picture_number = src->display_picture_number;
dst->flags = src->flags;
#if FF_API_AVFRAME_COLORSPACE
dst->color_primaries = src->color_primaries;
dst->color_trc = src->color_trc;
dst->colorspace = src->colorspace;
dst->color_range = src->color_range;
dst->chroma_location = src->chroma_location;
#endif
memcpy(dst->error, src->error, sizeof(dst->error));