FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/v408enc.c
Date: 2024-07-26 21:54:09
Exec Total Coverage
Lines: 24 25 96.0%
Functions: 2 2 100.0%
Branches: 5 6 83.3%

Line Branch Exec Source
1 /*
2 * v408 encoder
3 *
4 * Copyright (c) 2012 Carl Eugen Hoyos
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 "avcodec.h"
24 #include "codec_internal.h"
25 #include "encode.h"
26 #include "internal.h"
27
28 4 static av_cold int v408_encode_init(AVCodecContext *avctx)
29 {
30 4 avctx->bits_per_coded_sample = 32;
31 4 avctx->bit_rate = ff_guess_coded_bitrate(avctx);
32
33 4 return 0;
34 }
35
36 200 static int v408_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
37 const AVFrame *pic, int *got_packet)
38 {
39 uint8_t *dst;
40 const uint8_t *y, *u, *v, *a;
41 int i, j, ret;
42
43 200 ret = ff_get_encode_buffer(avctx, pkt, avctx->width * avctx->height * 4, 0);
44
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 200 times.
200 if (ret < 0)
45 return ret;
46 200 dst = pkt->data;
47
48 200 y = pic->data[0];
49 200 u = pic->data[1];
50 200 v = pic->data[2];
51 200 a = pic->data[3];
52
53
2/2
✓ Branch 0 taken 44900 times.
✓ Branch 1 taken 200 times.
45100 for (i = 0; i < avctx->height; i++) {
54
2/2
✓ Branch 0 taken 15264200 times.
✓ Branch 1 taken 44900 times.
15309100 for (j = 0; j < avctx->width; j++) {
55 15264200 *dst++ = u[j];
56 15264200 *dst++ = y[j];
57 15264200 *dst++ = v[j];
58 15264200 *dst++ = a[j];
59 }
60 44900 y += pic->linesize[0];
61 44900 u += pic->linesize[1];
62 44900 v += pic->linesize[2];
63 44900 a += pic->linesize[3];
64 }
65
66 200 *got_packet = 1;
67 200 return 0;
68 }
69
70 static const enum AVPixelFormat pix_fmt[] = { AV_PIX_FMT_YUVA444P, AV_PIX_FMT_NONE };
71
72 const FFCodec ff_v408_encoder = {
73 .p.name = "v408",
74 CODEC_LONG_NAME("Uncompressed packed QT 4:4:4:4"),
75 .p.type = AVMEDIA_TYPE_VIDEO,
76 .p.id = AV_CODEC_ID_V408,
77 .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
78 .init = v408_encode_init,
79 FF_CODEC_ENCODE_CB(v408_encode_frame),
80 .p.pix_fmts = pix_fmt,
81 };
82