]> git.sesse.net Git - ffmpeg/blob - libavcodec/v210enc.c
avfilter/vf_identity: fix typo
[ffmpeg] / libavcodec / v210enc.c
1 /*
2  * V210 encoder
3  *
4  * Copyright (C) 2009 Michael Niedermayer <michaelni@gmx.at>
5  * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23
24 #include "avcodec.h"
25 #include "bytestream.h"
26 #include "internal.h"
27 #include "v210enc.h"
28
29 #define TYPE uint8_t
30 #define DEPTH 8
31 #define BYTES_PER_PIXEL 1
32 #define RENAME(a) a ## _ ## 8
33 #include "v210_template.c"
34 #undef RENAME
35 #undef DEPTH
36 #undef BYTES_PER_PIXEL
37 #undef TYPE
38
39 #define TYPE uint16_t
40 #define DEPTH 10
41 #define BYTES_PER_PIXEL 2
42 #define RENAME(a) a ## _ ## 10
43 #include "v210_template.c"
44 #undef RENAME
45 #undef DEPTH
46 #undef BYTES_PER_PIXEL
47 #undef TYPE
48
49 static void v210_planar_pack_8_c(const uint8_t *y, const uint8_t *u,
50                                  const uint8_t *v, uint8_t *dst,
51                                  ptrdiff_t width)
52 {
53     uint32_t val;
54     int i;
55
56     /* unroll this to match the assembly */
57     for (i = 0; i < width - 11; i += 12) {
58         WRITE_PIXELS(u, y, v, 8);
59         WRITE_PIXELS(y, u, y, 8);
60         WRITE_PIXELS(v, y, u, 8);
61         WRITE_PIXELS(y, v, y, 8);
62         WRITE_PIXELS(u, y, v, 8);
63         WRITE_PIXELS(y, u, y, 8);
64         WRITE_PIXELS(v, y, u, 8);
65         WRITE_PIXELS(y, v, y, 8);
66     }
67 }
68
69 static void v210_planar_pack_10_c(const uint16_t *y, const uint16_t *u,
70                                   const uint16_t *v, uint8_t *dst,
71                                   ptrdiff_t width)
72 {
73     uint32_t val;
74     int i;
75
76     for (i = 0; i < width - 5; i += 6) {
77         WRITE_PIXELS(u, y, v, 10);
78         WRITE_PIXELS(y, u, y, 10);
79         WRITE_PIXELS(v, y, u, 10);
80         WRITE_PIXELS(y, v, y, 10);
81     }
82 }
83
84 av_cold void ff_v210enc_init(V210EncContext *s)
85 {
86     s->pack_line_8  = v210_planar_pack_8_c;
87     s->pack_line_10 = v210_planar_pack_10_c;
88     s->sample_factor_8  = 2;
89     s->sample_factor_10 = 1;
90
91     if (ARCH_X86)
92         ff_v210enc_init_x86(s);
93 }
94
95 static av_cold int encode_init(AVCodecContext *avctx)
96 {
97     V210EncContext *s = avctx->priv_data;
98
99     if (avctx->width & 1) {
100         av_log(avctx, AV_LOG_ERROR, "v210 needs even width\n");
101         return AVERROR(EINVAL);
102     }
103
104     ff_v210enc_init(s);
105
106     avctx->bits_per_coded_sample = 20;
107     avctx->bit_rate = ff_guess_coded_bitrate(avctx) * 16 / 15;
108
109     return 0;
110 }
111
112 static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
113                         const AVFrame *pic, int *got_packet)
114 {
115     int aligned_width = ((avctx->width + 47) / 48) * 48;
116     int stride = aligned_width * 8 / 3;
117     AVFrameSideData *side_data;
118     int ret;
119     uint8_t *dst;
120
121     ret = ff_alloc_packet2(avctx, pkt, avctx->height * stride, avctx->height * stride);
122     if (ret < 0) {
123         av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
124         return ret;
125     }
126     dst = pkt->data;
127
128     if (pic->format == AV_PIX_FMT_YUV422P10)
129         v210_enc_10(avctx, dst, pic);
130     else if(pic->format == AV_PIX_FMT_YUV422P)
131         v210_enc_8(avctx, dst, pic);
132
133     side_data = av_frame_get_side_data(pic, AV_FRAME_DATA_A53_CC);
134     if (side_data && side_data->size) {
135         uint8_t *buf = av_packet_new_side_data(pkt, AV_PKT_DATA_A53_CC, side_data->size);
136         if (!buf)
137             return AVERROR(ENOMEM);
138         memcpy(buf, side_data->data, side_data->size);
139     }
140
141     side_data = av_frame_get_side_data(pic, AV_FRAME_DATA_AFD);
142     if (side_data && side_data->size) {
143         uint8_t *buf = av_packet_new_side_data(pkt, AV_PKT_DATA_AFD, side_data->size);
144         if (!buf)
145             return AVERROR(ENOMEM);
146         memcpy(buf, side_data->data, side_data->size);
147     }
148
149     pkt->flags |= AV_PKT_FLAG_KEY;
150     *got_packet = 1;
151     return 0;
152 }
153
154 const AVCodec ff_v210_encoder = {
155     .name           = "v210",
156     .long_name      = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
157     .type           = AVMEDIA_TYPE_VIDEO,
158     .id             = AV_CODEC_ID_V210,
159     .priv_data_size = sizeof(V210EncContext),
160     .init           = encode_init,
161     .encode2        = encode_frame,
162     .pix_fmts       = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV422P10, AV_PIX_FMT_YUV422P, AV_PIX_FMT_NONE },
163 };