FFmpeg
Loading...
Searching...
No Matches
y41pdec.c
Go to the documentation of this file.
1/*
2 * y41p decoder
3 *
4 * Copyright (c) 2012 Paul B Mahol
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 "decode.h"
26
28{
30 avctx->bits_per_raw_sample = 12;
31
32 if (avctx->width & 7) {
33 av_log(avctx, AV_LOG_WARNING, "y41p requires width to be divisible by 8.\n");
34 }
35
36 return 0;
37}
38
40 int *got_frame, AVPacket *avpkt)
41{
42 const uint8_t *src = avpkt->data;
43 uint8_t *y, *u, *v;
44 int i, j, ret;
45
46 if (avpkt->size < 3LL * avctx->height * FFALIGN(avctx->width, 8) / 2) {
47 av_log(avctx, AV_LOG_ERROR, "Insufficient input data.\n");
48 return AVERROR(EINVAL);
49 }
50
51 if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
52 return ret;
53
54 for (i = avctx->height - 1; i >= 0 ; i--) {
55 y = &pic->data[0][i * pic->linesize[0]];
56 u = &pic->data[1][i * pic->linesize[1]];
57 v = &pic->data[2][i * pic->linesize[2]];
58 for (j = 0; j < avctx->width; j += 8) {
59 *(u++) = *src++;
60 *(y++) = *src++;
61 *(v++) = *src++;
62 *(y++) = *src++;
63
64 *(u++) = *src++;
65 *(y++) = *src++;
66 *(v++) = *src++;
67 *(y++) = *src++;
68
69 *(y++) = *src++;
70 *(y++) = *src++;
71 *(y++) = *src++;
72 *(y++) = *src++;
73 }
74 }
75
76 *got_frame = 1;
77
78 return avpkt->size;
79}
80
82 .p.name = "y41p",
83 CODEC_LONG_NAME("Uncompressed YUV 4:1:1 12-bit"),
84 .p.type = AVMEDIA_TYPE_VIDEO,
85 .p.id = AV_CODEC_ID_Y41P,
86 .init = y41p_decode_init,
88 .p.capabilities = AV_CODEC_CAP_DR1,
89};
const FFCodec ff_y41p_decoder
Definition y41pdec.c:81
Libavcodec external API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition decode.c:1777
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_Y41P
Definition codec_id.h:249
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
#define u(width, name, range_min, range_max)
Definition cbs_apv.c:68
#define av_cold
Definition attributes.h:117
#define FFALIGN(x, a)
Definition macros.h:78
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition pixfmt.h:80
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int width
picture width / height.
Definition avcodec.h:604
int bits_per_raw_sample
Bits per sample/pixel of internal libavcodec pixel/sample format.
Definition avcodec.h:1571
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition frame.h:517
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
#define av_log(a,...)
#define src
Definition vp8dsp.c:248
static int y41p_decode_frame(AVCodecContext *avctx, AVFrame *pic, int *got_frame, AVPacket *avpkt)
Definition y41pdec.c:39
static av_cold int y41p_decode_init(AVCodecContext *avctx)
Definition y41pdec.c:27