4 * Copyright (c) 2012 Carl Eugen Hoyos
6 * This file is part of FFmpeg.
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "libavutil/intreadwrite.h"
27 static av_cold int v408_encode_init(AVCodecContext *avctx)
29 avctx->coded_frame = av_frame_alloc();
31 if (!avctx->coded_frame) {
32 av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
33 return AVERROR(ENOMEM);
39 static int v408_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
40 const AVFrame *pic, int *got_packet)
43 uint8_t *y, *u, *v, *a;
46 if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width * avctx->height * 4)) < 0)
50 avctx->coded_frame->key_frame = 1;
51 avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
58 for (i = 0; i < avctx->height; i++) {
59 for (j = 0; j < avctx->width; j++) {
60 if (avctx->codec_id==AV_CODEC_ID_AYUV) {
72 y += pic->linesize[0];
73 u += pic->linesize[1];
74 v += pic->linesize[2];
75 a += pic->linesize[3];
78 pkt->flags |= AV_PKT_FLAG_KEY;
83 static av_cold int v408_encode_close(AVCodecContext *avctx)
85 av_freep(&avctx->coded_frame);
90 #if CONFIG_AYUV_ENCODER
91 AVCodec ff_ayuv_encoder = {
93 .long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed MS 4:4:4:4"),
94 .type = AVMEDIA_TYPE_VIDEO,
95 .id = AV_CODEC_ID_AYUV,
96 .init = v408_encode_init,
97 .encode2 = v408_encode_frame,
98 .close = v408_encode_close,
99 .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE },
102 #if CONFIG_V408_ENCODER
103 AVCodec ff_v408_encoder = {
105 .long_name = NULL_IF_CONFIG_SMALL("Uncompressed packed QT 4:4:4:4"),
106 .type = AVMEDIA_TYPE_VIDEO,
107 .id = AV_CODEC_ID_V408,
108 .init = v408_encode_init,
109 .encode2 = v408_encode_frame,
110 .close = v408_encode_close,
111 .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE },