summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-10-22 20:42:28 +0200
committerHendrik Leppkes <h.leppkes@gmail.com>2015-10-22 20:48:54 +0200
commit470204218f37e361da02d75845f9db9793a4ee53 (patch)
treeba86e91f6b2c0a35192e4c04ab7182cadb5d3699 /libavcodec
parent4c46f1d493f4d68121526fbede459619a02afa5a (diff)
parentf890677d05bc4e8b494a73373ab4cc19791bf884 (diff)
Merge commit 'f890677d05bc4e8b494a73373ab4cc19791bf884'
* commit 'f890677d05bc4e8b494a73373ab4cc19791bf884': Replace any remaining avpicture function with imgutils Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/pnm_parser.c4
-rw-r--r--libavcodec/pnmenc.c7
-rw-r--r--libavcodec/targaenc.c4
-rw-r--r--libavcodec/vble.c6
4 files changed, 14 insertions, 7 deletions
diff --git a/libavcodec/pnm_parser.c b/libavcodec/pnm_parser.c
index a5eb81f5f6..a7d70b9931 100644
--- a/libavcodec/pnm_parser.c
+++ b/libavcodec/pnm_parser.c
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include "libavutil/imgutils.h"
+
#include "parser.h" //for ParseContext
#include "pnm.h"
@@ -66,7 +68,7 @@ retry:
next = END_NOT_FOUND;
} else {
next = pnmctx.bytestream - pnmctx.bytestream_start
- + avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
+ + av_image_get_buffer_size(avctx->pix_fmt, avctx->width, avctx->height, 1);
if (pnmctx.bytestream_start != buf)
next -= pc->index;
if (next > buf_size)
diff --git a/libavcodec/pnmenc.c b/libavcodec/pnmenc.c
index b3eb5d90d3..ba9478d0da 100644
--- a/libavcodec/pnmenc.c
+++ b/libavcodec/pnmenc.c
@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include "libavutil/imgutils.h"
#include "libavutil/pixdesc.h"
#include "avcodec.h"
#include "internal.h"
@@ -29,10 +30,10 @@ static int pnm_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
uint8_t *bytestream, *bytestream_start, *bytestream_end;
int i, h, h1, c, n, linesize, ret;
uint8_t *ptr, *ptr1, *ptr2;
+ int size = av_image_get_buffer_size(avctx->pix_fmt,
+ avctx->width, avctx->height, 1);
- if ((ret = ff_alloc_packet2(avctx, pkt, avpicture_get_size(avctx->pix_fmt,
- avctx->width,
- avctx->height) + 200, 0)) < 0)
+ if ((ret = ff_alloc_packet2(avctx, pkt, size + 200, 0)) < 0)
return ret;
bytestream_start =
diff --git a/libavcodec/targaenc.c b/libavcodec/targaenc.c
index de8163a5f0..ae93d48a5a 100644
--- a/libavcodec/targaenc.c
+++ b/libavcodec/targaenc.c
@@ -21,6 +21,7 @@
#include <string.h>
+#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/pixdesc.h"
@@ -84,7 +85,8 @@ static int targa_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
av_log(avctx, AV_LOG_ERROR, "image dimensions too large\n");
return AVERROR(EINVAL);
}
- picsize = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
+ picsize = av_image_get_buffer_size(avctx->pix_fmt,
+ avctx->width, avctx->height, 1);
if ((ret = ff_alloc_packet2(avctx, pkt, picsize + 45, 0)) < 0)
return ret;
diff --git a/libavcodec/vble.c b/libavcodec/vble.c
index 30b77cecf6..bb9c81c187 100644
--- a/libavcodec/vble.c
+++ b/libavcodec/vble.c
@@ -26,6 +26,8 @@
#define BITSTREAM_READER_LE
+#include "libavutil/imgutils.h"
+
#include "avcodec.h"
#include "get_bits.h"
#include "huffyuvdsp.h"
@@ -187,8 +189,8 @@ static av_cold int vble_decode_init(AVCodecContext *avctx)
avctx->pix_fmt = AV_PIX_FMT_YUV420P;
avctx->bits_per_raw_sample = 8;
- ctx->size = avpicture_get_size(avctx->pix_fmt,
- avctx->width, avctx->height);
+ ctx->size = av_image_get_buffer_size(avctx->pix_fmt,
+ avctx->width, avctx->height, 1);
ctx->val = av_malloc_array(ctx->size, sizeof(*ctx->val));