]> git.sesse.net Git - ffmpeg/blob - libavcodec/vcr1.c
x86: ff_get_cpu_flags_x86(): Avoid a pointless variable indirection
[ffmpeg] / libavcodec / vcr1.c
1 /*
2  * ATI VCR1 codec
3  * Copyright (c) 2003 Michael Niedermayer
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * ATI VCR1 codec
25  */
26
27 #include "avcodec.h"
28 #include "dsputil.h"
29 #include "libavutil/internal.h"
30
31 typedef struct VCR1Context {
32     AVFrame picture;
33     int delta[16];
34     int offset[4];
35 } VCR1Context;
36
37 static av_cold int vcr1_common_init(AVCodecContext *avctx)
38 {
39     VCR1Context *const a = avctx->priv_data;
40
41     avctx->coded_frame = &a->picture;
42
43     return 0;
44 }
45
46 static av_cold int vcr1_decode_init(AVCodecContext *avctx)
47 {
48     vcr1_common_init(avctx);
49
50     avctx->pix_fmt = PIX_FMT_YUV410P;
51
52     return 0;
53 }
54
55 static av_cold int vcr1_decode_end(AVCodecContext *avctx)
56 {
57     VCR1Context *s = avctx->priv_data;
58
59     if (s->picture.data[0])
60         avctx->release_buffer(avctx, &s->picture);
61
62     return 0;
63 }
64
65 static int vcr1_decode_frame(AVCodecContext *avctx, void *data,
66                              int *data_size, AVPacket *avpkt)
67 {
68     const uint8_t *buf        = avpkt->data;
69     int buf_size              = avpkt->size;
70     VCR1Context *const a      = avctx->priv_data;
71     AVFrame *picture          = data;
72     AVFrame *const p          = &a->picture;
73     const uint8_t *bytestream = buf;
74     int i, x, y;
75
76     if (p->data[0])
77         avctx->release_buffer(avctx, p);
78
79     p->reference = 0;
80     if (avctx->get_buffer(avctx, p) < 0) {
81         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
82         return -1;
83     }
84     p->pict_type = AV_PICTURE_TYPE_I;
85     p->key_frame = 1;
86
87     for (i = 0; i < 16; i++) {
88         a->delta[i] = *bytestream++;
89         bytestream++;
90     }
91
92     for (y = 0; y < avctx->height; y++) {
93         int offset;
94         uint8_t *luma = &a->picture.data[0][y * a->picture.linesize[0]];
95
96         if ((y & 3) == 0) {
97             uint8_t *cb = &a->picture.data[1][(y >> 2) * a->picture.linesize[1]];
98             uint8_t *cr = &a->picture.data[2][(y >> 2) * a->picture.linesize[2]];
99
100             for (i = 0; i < 4; i++)
101                 a->offset[i] = *bytestream++;
102
103             offset = a->offset[0] - a->delta[bytestream[2] & 0xF];
104             for (x = 0; x < avctx->width; x += 4) {
105                 luma[0]     = offset += a->delta[bytestream[2] & 0xF];
106                 luma[1]     = offset += a->delta[bytestream[2] >>  4];
107                 luma[2]     = offset += a->delta[bytestream[0] & 0xF];
108                 luma[3]     = offset += a->delta[bytestream[0] >>  4];
109                 luma       += 4;
110
111                 *cb++       = bytestream[3];
112                 *cr++       = bytestream[1];
113
114                 bytestream += 4;
115             }
116         } else {
117             offset = a->offset[y & 3] - a->delta[bytestream[2] & 0xF];
118
119             for (x = 0; x < avctx->width; x += 8) {
120                 luma[0]     = offset += a->delta[bytestream[2] & 0xF];
121                 luma[1]     = offset += a->delta[bytestream[2] >>  4];
122                 luma[2]     = offset += a->delta[bytestream[3] & 0xF];
123                 luma[3]     = offset += a->delta[bytestream[3] >>  4];
124                 luma[4]     = offset += a->delta[bytestream[0] & 0xF];
125                 luma[5]     = offset += a->delta[bytestream[0] >>  4];
126                 luma[6]     = offset += a->delta[bytestream[1] & 0xF];
127                 luma[7]     = offset += a->delta[bytestream[1] >>  4];
128                 luma       += 8;
129                 bytestream += 4;
130             }
131         }
132     }
133
134     *picture   = a->picture;
135     *data_size = sizeof(AVPicture);
136
137     return buf_size;
138 }
139
140 AVCodec ff_vcr1_decoder = {
141     .name           = "vcr1",
142     .type           = AVMEDIA_TYPE_VIDEO,
143     .id             = AV_CODEC_ID_VCR1,
144     .priv_data_size = sizeof(VCR1Context),
145     .init           = vcr1_decode_init,
146     .close          = vcr1_decode_end,
147     .decode         = vcr1_decode_frame,
148     .capabilities   = CODEC_CAP_DR1,
149     .long_name      = NULL_IF_CONFIG_SMALL("ATI VCR1"),
150 };
151
152 /* Disable the encoder. */
153 #undef CONFIG_VCR1_ENCODER
154 #define CONFIG_VCR1_ENCODER 0
155
156 #if CONFIG_VCR1_ENCODER
157
158 #include "put_bits.h"
159
160 static int vcr1_encode_frame(AVCodecContext *avctx, unsigned char *buf,
161                              int buf_size, void *data)
162 {
163     VCR1Context *const a = avctx->priv_data;
164     AVFrame *pict        = data;
165     AVFrame *const p     = &a->picture;
166     int size;
167
168     *p           = *pict;
169     p->pict_type = AV_PICTURE_TYPE_I;
170     p->key_frame = 1;
171
172     avpriv_align_put_bits(&a->pb);
173     flush_put_bits(&a->pb);
174
175     size = put_bits_count(&a->pb) / 32;
176
177     return size * 4;
178 }
179
180 AVCodec ff_vcr1_encoder = {
181     .name           = "vcr1",
182     .type           = AVMEDIA_TYPE_VIDEO,
183     .id             = AV_CODEC_ID_VCR1,
184     .priv_data_size = sizeof(VCR1Context),
185     .init           = vcr1_common_init,
186     .encode         = vcr1_encode_frame,
187     .long_name      = NULL_IF_CONFIG_SMALL("ATI VCR1"),
188 };
189 #endif /* CONFIG_VCR1_ENCODER */