summaryrefslogtreecommitdiff
path: root/libavcodec/h264_picture.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2015-03-31 10:10:42 +0200
committerAnton Khirnov <anton@khirnov.net>2015-04-29 05:52:57 +0200
commit27b0e6ebfd47b0c11156c18b90fa8c571f0f60c3 (patch)
treed09e19a8bfe6562cc303834999cdad0507066ed4 /libavcodec/h264_picture.c
parent0ac8ff618c5e6d878c547a8877e714ed728950ce (diff)
h264: drop needs_realloc
It is not needed anymore since switching to refcounted frames.
Diffstat (limited to 'libavcodec/h264_picture.c')
-rw-r--r--libavcodec/h264_picture.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/h264_picture.c b/libavcodec/h264_picture.c
index 694ddb9c8f..0263e6eed4 100644
--- a/libavcodec/h264_picture.c
+++ b/libavcodec/h264_picture.c
@@ -113,7 +113,6 @@ int ff_h264_ref_picture(H264Context *h, H264Picture *dst, H264Picture *src)
dst->long_ref = src->long_ref;
dst->mbaff = src->mbaff;
dst->field_picture = src->field_picture;
- dst->needs_realloc = src->needs_realloc;
dst->reference = src->reference;
dst->recovered = src->recovered;