summaryrefslogtreecommitdiff
path: root/libavcodec/y41penc.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-02-17 21:27:45 +0000
committerMichael Niedermayer <michaelni@gmx.at>2012-02-17 22:39:23 +0100
commit545e8879021a7026789158055d3b28133eafa91e (patch)
treef4e0d056c835d8cd86bbc3d1bef731b45711f776 /libavcodec/y41penc.c
parent48ad7f822d8fdaf99aeeec67552e32fe8a83a687 (diff)
y41penc: switch to encode2()
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/y41penc.c')
-rw-r--r--libavcodec/y41penc.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/libavcodec/y41penc.c b/libavcodec/y41penc.c
index e5905cf6e9..1b81a5243a 100644
--- a/libavcodec/y41penc.c
+++ b/libavcodec/y41penc.c
@@ -21,6 +21,7 @@
*/
#include "avcodec.h"
+#include "internal.h"
static av_cold int y41p_encode_init(AVCodecContext *avctx)
{
@@ -40,22 +41,22 @@ static av_cold int y41p_encode_init(AVCodecContext *avctx)
return 0;
}
-static int y41p_encode_frame(AVCodecContext *avctx, uint8_t *buf,
- int buf_size, void *data)
+static int y41p_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
+ const AVFrame *pic, int *got_packet)
{
- AVFrame *pic = data;
- uint8_t *dst = buf;
+ uint8_t *dst;
uint8_t *y, *u, *v;
- int i, j;
+ int i, j, ret;
- if (buf_size < avctx->width * avctx->height * 1.5) {
+ if ((ret = ff_alloc_packet(pkt, avctx->width * avctx->height * 1.5)) < 0) {
av_log(avctx, AV_LOG_ERROR, "Out buffer is too small.\n");
- return AVERROR(ENOMEM);
+ return ret;
}
avctx->coded_frame->reference = 0;
avctx->coded_frame->key_frame = 1;
avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
+ dst = pkt->data;
for (i = avctx->height - 1; i >= 0; i--) {
y = &pic->data[0][i * pic->linesize[0]];
@@ -79,7 +80,10 @@ static int y41p_encode_frame(AVCodecContext *avctx, uint8_t *buf,
}
}
- return avctx->width * avctx->height * 1.5;
+ pkt->size = 1.5 * avctx->width * avctx->height;
+ pkt->flags |= AV_PKT_FLAG_KEY;
+ *got_packet = 1;
+ return 0;
}
static av_cold int y41p_encode_close(AVCodecContext *avctx)
@@ -94,7 +98,7 @@ AVCodec ff_y41p_encoder = {
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_Y41P,
.init = y41p_encode_init,
- .encode = y41p_encode_frame,
+ .encode2 = y41p_encode_frame,
.close = y41p_encode_close,
.pix_fmts = (const enum PixelFormat[]) { PIX_FMT_YUV411P,
PIX_FMT_NONE },