]> git.sesse.net Git - ffmpeg/blob - libavcodec/targa_y216dec.c
Merge commit 'fb722a900fc5cc9e003b9fef25b27ed7fc5547a2'
[ffmpeg] / libavcodec / targa_y216dec.c
1 /*
2  * Pinnacle TARGA CineWave YUV16 decoder
3  * Copyright (c) 2012 Carl Eugen Hoyos
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "avcodec.h"
23
24 static av_cold int y216_decode_init(AVCodecContext *avctx)
25 {
26     avctx->pix_fmt             = AV_PIX_FMT_YUV422P16;
27     avctx->bits_per_raw_sample = 14;
28
29     avctx->coded_frame = avcodec_alloc_frame();
30
31     if (!avctx->coded_frame) {
32         av_log(avctx, AV_LOG_ERROR, "Could not allocate frame.\n");
33         return AVERROR(ENOMEM);
34     }
35
36     return 0;
37 }
38
39 static int y216_decode_frame(AVCodecContext *avctx, void *data,
40                              int *data_size, AVPacket *avpkt)
41 {
42     AVFrame *pic = avctx->coded_frame;
43     const uint16_t *src = (uint16_t *)avpkt->data;
44     uint16_t *y, *u, *v, aligned_width = FFALIGN(avctx->width, 4);
45     int i, j;
46
47     if (pic->data[0])
48         avctx->release_buffer(avctx, pic);
49
50     if (avpkt->size < 4 * avctx->height * aligned_width) {
51         av_log(avctx, AV_LOG_ERROR, "Insufficient input data.\n");
52         return AVERROR(EINVAL);
53     }
54
55     pic->reference = 0;
56
57     if (avctx->get_buffer(avctx, pic) < 0) {
58         av_log(avctx, AV_LOG_ERROR, "Could not allocate buffer.\n");
59         return AVERROR(ENOMEM);
60     }
61
62     pic->key_frame = 1;
63     pic->pict_type = AV_PICTURE_TYPE_I;
64
65     y = (uint16_t *)pic->data[0];
66     u = (uint16_t *)pic->data[1];
67     v = (uint16_t *)pic->data[2];
68
69     for (i = 0; i < avctx->height; i++) {
70         for (j = 0; j < avctx->width >> 1; j++) {
71             u[    j    ] = src[4 * j    ] << 2 | src[4 * j    ] >> 14;
72             y[2 * j    ] = src[4 * j + 1] << 2 | src[4 * j + 1] >> 14;
73             v[    j    ] = src[4 * j + 2] << 2 | src[4 * j + 2] >> 14;
74             y[2 * j + 1] = src[4 * j + 3] << 2 | src[4 * j + 3] >> 14;
75         }
76
77         y += pic->linesize[0] >> 1;
78         u += pic->linesize[1] >> 1;
79         v += pic->linesize[2] >> 1;
80         src += aligned_width << 1;
81     }
82
83     *data_size = sizeof(AVFrame);
84     *(AVFrame *)data = *pic;
85
86     return avpkt->size;
87 }
88
89 static av_cold int y216_decode_close(AVCodecContext *avctx)
90 {
91     if (avctx->coded_frame->data[0])
92         avctx->release_buffer(avctx, avctx->coded_frame);
93
94     av_freep(&avctx->coded_frame);
95
96     return 0;
97 }
98
99 AVCodec ff_targa_y216_decoder = {
100     .name         = "targa_y216",
101     .type         = AVMEDIA_TYPE_VIDEO,
102     .id           = AV_CODEC_ID_TARGA_Y216,
103     .init         = y216_decode_init,
104     .decode       = y216_decode_frame,
105     .close        = y216_decode_close,
106     .capabilities = CODEC_CAP_DR1,
107     .long_name    = NULL_IF_CONFIG_SMALL("Pinnacle TARGA CineWave YUV16"),
108 };