/src/ffmpeg/libavcodec/v410enc.c
Line | Count | Source |
1 | | /* |
2 | | * v410 encoder |
3 | | * |
4 | | * Copyright (c) 2011 Derek Buitenhuis |
5 | | * |
6 | | * This file is part of FFmpeg. |
7 | | * |
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. |
12 | | * |
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. |
17 | | * |
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 |
21 | | */ |
22 | | |
23 | | #include "libavutil/common.h" |
24 | | #include "libavutil/intreadwrite.h" |
25 | | #include "avcodec.h" |
26 | | #include "codec_internal.h" |
27 | | #include "encode.h" |
28 | | #include "internal.h" |
29 | | |
30 | | static av_cold int v410_encode_init(AVCodecContext *avctx) |
31 | 183 | { |
32 | 183 | if (avctx->width & 1) { |
33 | 11 | av_log(avctx, AV_LOG_ERROR, "v410 requires width to be even.\n"); |
34 | 11 | return AVERROR_INVALIDDATA; |
35 | 11 | } |
36 | | |
37 | 172 | avctx->bits_per_coded_sample = 32; |
38 | 172 | avctx->bit_rate = ff_guess_coded_bitrate(avctx); |
39 | | |
40 | 172 | av_log(avctx, AV_LOG_WARNING, "This encoder is deprecated and will be removed.\n"); |
41 | | |
42 | 172 | return 0; |
43 | 183 | } |
44 | | |
45 | | static int v410_encode_frame(AVCodecContext *avctx, AVPacket *pkt, |
46 | | const AVFrame *pic, int *got_packet) |
47 | 5.64k | { |
48 | 5.64k | uint8_t *dst; |
49 | 5.64k | const uint16_t *y, *u, *v; |
50 | 5.64k | uint32_t val; |
51 | 5.64k | int i, j, ret; |
52 | | |
53 | 5.64k | ret = ff_get_encode_buffer(avctx, pkt, avctx->width * avctx->height * 4, 0); |
54 | 5.64k | if (ret < 0) |
55 | 0 | return ret; |
56 | 5.64k | dst = pkt->data; |
57 | | |
58 | 5.64k | y = (uint16_t *)pic->data[0]; |
59 | 5.64k | u = (uint16_t *)pic->data[1]; |
60 | 5.64k | v = (uint16_t *)pic->data[2]; |
61 | | |
62 | 931k | for (i = 0; i < avctx->height; i++) { |
63 | 6.61M | for (j = 0; j < avctx->width; j++) { |
64 | 5.68M | val = u[j] << 2; |
65 | 5.68M | val |= y[j] << 12; |
66 | 5.68M | val |= (uint32_t) v[j] << 22; |
67 | 5.68M | AV_WL32(dst, val); |
68 | 5.68M | dst += 4; |
69 | 5.68M | } |
70 | 926k | y += pic->linesize[0] >> 1; |
71 | 926k | u += pic->linesize[1] >> 1; |
72 | 926k | v += pic->linesize[2] >> 1; |
73 | 926k | } |
74 | | |
75 | 5.64k | *got_packet = 1; |
76 | 5.64k | return 0; |
77 | 5.64k | } |
78 | | |
79 | | const FFCodec ff_v410_encoder = { |
80 | | .p.name = "v410", |
81 | | CODEC_LONG_NAME("Uncompressed 4:4:4 10-bit"), |
82 | | .p.type = AVMEDIA_TYPE_VIDEO, |
83 | | .p.id = AV_CODEC_ID_V410, |
84 | | .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE, |
85 | | .init = v410_encode_init, |
86 | | FF_CODEC_ENCODE_CB(v410_encode_frame), |
87 | | CODEC_PIXFMTS(AV_PIX_FMT_YUV444P10), |
88 | | }; |