diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-03-13 18:56:34 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-03-13 19:00:10 +0100 |
commit | 20dab078e6ea69c381070eb45600109d4dacac70 (patch) | |
tree | 6a26d958bd7cbc81cf090b222c6c5366f86b8999 /libavcodec/crystalhd.c | |
parent | 1ec94b0f066f14153d86395980a31b7466de3d9d (diff) | |
download | ffmpeg-20dab078e6ea69c381070eb45600109d4dacac70.tar.gz |
lavc/crystalhd: remove now unecessary buffer_hints.
Diffstat (limited to 'libavcodec/crystalhd.c')
-rw-r--r-- | libavcodec/crystalhd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/crystalhd.c b/libavcodec/crystalhd.c index d1ed84bbf5..5dee82513b 100644 --- a/libavcodec/crystalhd.c +++ b/libavcodec/crystalhd.c @@ -639,8 +639,6 @@ static inline CopyRet copy_frame(AVCodecContext *avctx, priv->need_second_field = interlaced && !priv->need_second_field; - priv->pic->buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | - FF_BUFFER_HINTS_REUSABLE; if (!priv->pic->data[0]) { if (ff_get_buffer(avctx, priv->pic, AV_GET_BUFFER_FLAG_REF) < 0) return RET_ERROR; |