]> git.sesse.net Git - ffmpeg/blob - libavcodec/aura.c
Merge commit '69f086e0f90f23d89e5739b099a4f984fa6a7885'
[ffmpeg] / libavcodec / aura.c
1 /*
2  * Aura 2 decoder
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * Aura 2 decoder
24  */
25
26 #include "avcodec.h"
27 #include "internal.h"
28 #include "libavutil/internal.h"
29
30 typedef struct AuraDecodeContext {
31     AVCodecContext *avctx;
32     AVFrame frame;
33 } AuraDecodeContext;
34
35 static av_cold int aura_decode_init(AVCodecContext *avctx)
36 {
37     AuraDecodeContext *s = avctx->priv_data;
38
39     s->avctx = avctx;
40     /* width needs to be divisible by 4 for this codec to work */
41     if (avctx->width & 0x3)
42         return -1;
43     avctx->pix_fmt = AV_PIX_FMT_YUV422P;
44     avcodec_get_frame_defaults(&s->frame);
45
46     return 0;
47 }
48
49 static int aura_decode_frame(AVCodecContext *avctx,
50                              void *data, int *got_frame,
51                              AVPacket *pkt)
52 {
53     AuraDecodeContext *s=avctx->priv_data;
54
55     uint8_t *Y, *U, *V;
56     uint8_t val;
57     int x, y;
58     const uint8_t *buf = pkt->data;
59
60     /* prediction error tables (make it clear that they are signed values) */
61     const int8_t *delta_table = (const int8_t*)buf + 16;
62
63     if (pkt->size != 48 + avctx->height * avctx->width) {
64         av_log(avctx, AV_LOG_ERROR, "got a buffer with %d bytes when %d were expected\n",
65                pkt->size, 48 + avctx->height * avctx->width);
66         return -1;
67     }
68
69     /* pixel data starts 48 bytes in, after 3x16-byte tables */
70     buf += 48;
71
72     if(s->frame.data[0])
73         avctx->release_buffer(avctx, &s->frame);
74
75     s->frame.buffer_hints = FF_BUFFER_HINTS_VALID;
76     s->frame.reference = 0;
77     if(ff_get_buffer(avctx, &s->frame) < 0) {
78         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
79         return -1;
80     }
81
82     Y = s->frame.data[0];
83     U = s->frame.data[1];
84     V = s->frame.data[2];
85
86     /* iterate through each line in the height */
87     for (y = 0; y < avctx->height; y++) {
88         /* reset predictors */
89         val = *buf++;
90         U[0] = val & 0xF0;
91         Y[0] = val << 4;
92         val = *buf++;
93         V[0] = val & 0xF0;
94         Y[1] = Y[0] + delta_table[val & 0xF];
95         Y += 2; U++; V++;
96
97         /* iterate through the remaining pixel groups (4 pixels/group) */
98         for (x = 1; x < (avctx->width >> 1); x++) {
99             val = *buf++;
100             U[0] = U[-1] + delta_table[val >> 4];
101             Y[0] = Y[-1] + delta_table[val & 0xF];
102             val = *buf++;
103             V[0] = V[-1] + delta_table[val >> 4];
104             Y[1] = Y[ 0] + delta_table[val & 0xF];
105             Y += 2; U++; V++;
106         }
107         Y += s->frame.linesize[0] -  avctx->width;
108         U += s->frame.linesize[1] - (avctx->width >> 1);
109         V += s->frame.linesize[2] - (avctx->width >> 1);
110     }
111
112     *got_frame = 1;
113     *(AVFrame*)data= s->frame;
114
115     return pkt->size;
116 }
117
118 static av_cold int aura_decode_end(AVCodecContext *avctx)
119 {
120     AuraDecodeContext *s = avctx->priv_data;
121
122     if (s->frame.data[0])
123         avctx->release_buffer(avctx, &s->frame);
124
125     return 0;
126 }
127
128 AVCodec ff_aura2_decoder = {
129     .name           = "aura2",
130     .type           = AVMEDIA_TYPE_VIDEO,
131     .id             = AV_CODEC_ID_AURA2,
132     .priv_data_size = sizeof(AuraDecodeContext),
133     .init           = aura_decode_init,
134     .close          = aura_decode_end,
135     .decode         = aura_decode_frame,
136     .capabilities   = CODEC_CAP_DR1,
137     .long_name      = NULL_IF_CONFIG_SMALL("Auravision Aura 2"),
138 };