summaryrefslogtreecommitdiff
path: root/libavcodec/mpegpicture.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-09-28 11:40:09 +0200
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-09-30 16:44:33 +0200
commit1aa24df74c052a73175c43e57d35b4835e537ec8 (patch)
treecaf5aa58da7ca79188cf37e45315aa78cdbacfe4 /libavcodec/mpegpicture.c
parent3f1f6053013d0015e9f115a91a11744807649a07 (diff)
lavu: Deprecate AVFrame.error[]
These field are difficult to interpret, and are provided by a single encoder (mpegvideoenc). In general they do not belong to a structure containing raw data only, so remove them from AVFrame. Mpegvideoenc now uses a private field in Picture for its internal computations. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavcodec/mpegpicture.c')
-rw-r--r--libavcodec/mpegpicture.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/mpegpicture.c b/libavcodec/mpegpicture.c
index 9df14151e6..f3a9dd05af 100644
--- a/libavcodec/mpegpicture.c
+++ b/libavcodec/mpegpicture.c
@@ -358,6 +358,9 @@ int ff_mpeg_ref_picture(AVCodecContext *avctx, Picture *dst, Picture *src)
dst->reference = src->reference;
dst->shared = src->shared;
+ memcpy(dst->encoding_error, src->encoding_error,
+ sizeof(dst->encoding_error));
+
return 0;
fail:
ff_mpeg_unref_picture(avctx, dst);