aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/kgv1dec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-12 19:23:34 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-08-12 19:53:37 +0200
commitbb015b519e29a125b794bf1a5e18c422bcb4090c (patch)
tree26195c9564b7b46800b2606e659b70e54fd11a92 /libavcodec/kgv1dec.c
parentacf7c5b8ee63d4a3614dd93aa7bcc23d582c3ccd (diff)
parent0ab76ddf313eeab70d06619ae0376fd7dd40761b (diff)
downloadffmpeg-bb015b519e29a125b794bf1a5e18c422bcb4090c.tar.gz
Merge commit '0ab76ddf313eeab70d06619ae0376fd7dd40761b' into release/0.10
* commit '0ab76ddf313eeab70d06619ae0376fd7dd40761b': avcodec: Introduce ff_get_buffer Conflicts: libavcodec/8svx.c libavcodec/dpcm.c libavcodec/utils.c libavcodec/vmdav.c libavcodec/yop.c See: 668494acd8b20f974c7722895d4a6a14c1005f1e Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/kgv1dec.c')
-rw-r--r--libavcodec/kgv1dec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/kgv1dec.c b/libavcodec/kgv1dec.c
index 264efa2a29..cd701ae75f 100644
--- a/libavcodec/kgv1dec.c
+++ b/libavcodec/kgv1dec.c
@@ -27,6 +27,7 @@
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "avcodec.h"
+#include "internal.h"
typedef struct {
AVCodecContext *avctx;
@@ -70,7 +71,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
maxcnt = w * h;
c->cur.reference = 3;
- if ((res = avctx->get_buffer(avctx, &c->cur)) < 0)
+ if ((res = ff_get_buffer(avctx, &c->cur)) < 0)
return res;
out = (uint16_t *) c->cur.data[0];
if (c->prev.data[0]) {