summaryrefslogtreecommitdiff
path: root/libavcodec/cdgraphics.c
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-12-26 11:07:47 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-12-26 11:07:47 +0000
commitb03a63d16ad940af629234aa4e80b813cc1f1dca (patch)
tree25057e1a6ad4e144819665362c9c52f7ec079b28 /libavcodec/cdgraphics.c
parentf877954fd33b7b03bb09735298faffef1f65f14d (diff)
Fix cdg reference and buffer_hints value:
reference must be 3 because both "fields" are used as reference, and buffer_hints must include readable since we might memcpy from the old frame. Originally committed as revision 20923 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cdgraphics.c')
-rw-r--r--libavcodec/cdgraphics.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/cdgraphics.c b/libavcodec/cdgraphics.c
index fa835b9897..8f04e01297 100644
--- a/libavcodec/cdgraphics.c
+++ b/libavcodec/cdgraphics.c
@@ -71,8 +71,9 @@ typedef struct CDGraphicsContext {
static void cdg_init_frame(AVFrame *frame)
{
avcodec_get_frame_defaults(frame);
- frame->reference = 1;
+ frame->reference = 3;
frame->buffer_hints = FF_BUFFER_HINTS_VALID |
+ FF_BUFFER_HINTS_READABLE |
FF_BUFFER_HINTS_PRESERVE |
FF_BUFFER_HINTS_REUSABLE;
}