4 * Copyright (c) 2012 Paul B Mahol
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
25 #include "bytestream.h"
27 static av_cold int encode_init(AVCodecContext *avctx)
29 int aligned_width = FFALIGN(avctx->width,
30 avctx->codec_id == AV_CODEC_ID_R10K ? 1 : 64);
32 avctx->bits_per_coded_sample = 32;
34 avctx->bit_rate = ff_guess_coded_bitrate(avctx) * aligned_width / avctx->width;
39 static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
40 const AVFrame *pic, int *got_packet)
43 int aligned_width = FFALIGN(avctx->width,
44 avctx->codec_id == AV_CODEC_ID_R10K ? 1 : 64);
45 int pad = (aligned_width - avctx->width) * 4;
46 uint8_t *srcr_line, *srcg_line, *srcb_line;
49 if ((ret = ff_alloc_packet2(avctx, pkt, 4 * aligned_width * avctx->height, 0)) < 0)
52 srcg_line = pic->data[0];
53 srcb_line = pic->data[1];
54 srcr_line = pic->data[2];
57 for (i = 0; i < avctx->height; i++) {
58 uint16_t *srcr = (uint16_t *)srcr_line;
59 uint16_t *srcg = (uint16_t *)srcg_line;
60 uint16_t *srcb = (uint16_t *)srcb_line;
61 for (j = 0; j < avctx->width; j++) {
66 if (avctx->codec_id == AV_CODEC_ID_R210)
67 pixel = (r << 20) | (g << 10) | b;
69 pixel = (r << 22) | (g << 12) | (b << 2);
70 if (avctx->codec_id == AV_CODEC_ID_AVRP)
71 bytestream_put_le32(&dst, pixel);
73 bytestream_put_be32(&dst, pixel);
77 srcr_line += pic->linesize[2];
78 srcg_line += pic->linesize[0];
79 srcb_line += pic->linesize[1];
82 pkt->flags |= AV_PKT_FLAG_KEY;
88 #if CONFIG_R210_ENCODER
89 AVCodec ff_r210_encoder = {
91 .long_name = NULL_IF_CONFIG_SMALL("Uncompressed RGB 10-bit"),
92 .type = AVMEDIA_TYPE_VIDEO,
93 .id = AV_CODEC_ID_R210,
95 .encode2 = encode_frame,
96 .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_GBRP10, AV_PIX_FMT_NONE },
97 .capabilities = AV_CODEC_CAP_INTRA_ONLY,
100 #if CONFIG_R10K_ENCODER
101 AVCodec ff_r10k_encoder = {
103 .long_name = NULL_IF_CONFIG_SMALL("AJA Kona 10-bit RGB Codec"),
104 .type = AVMEDIA_TYPE_VIDEO,
105 .id = AV_CODEC_ID_R10K,
107 .encode2 = encode_frame,
108 .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_GBRP10, AV_PIX_FMT_NONE },
109 .capabilities = AV_CODEC_CAP_INTRA_ONLY,
112 #if CONFIG_AVRP_ENCODER
113 AVCodec ff_avrp_encoder = {
115 .long_name = NULL_IF_CONFIG_SMALL("Avid 1:1 10-bit RGB Packer"),
116 .type = AVMEDIA_TYPE_VIDEO,
117 .id = AV_CODEC_ID_AVRP,
119 .encode2 = encode_frame,
120 .pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_GBRP10, AV_PIX_FMT_NONE },
121 .capabilities = AV_CODEC_CAP_INTRA_ONLY,