]> git.sesse.net Git - ffmpeg/blob - libavcodec/vcr1.c
vp3: Use hpeldsp instead of dsputil for half-pel functions
[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 "internal.h"
29 #include "libavutil/internal.h"
30
31 typedef struct VCR1Context {
32     int delta[16];
33     int offset[4];
34 } VCR1Context;
35
36 static av_cold int vcr1_decode_init(AVCodecContext *avctx)
37 {
38     avctx->pix_fmt = AV_PIX_FMT_YUV410P;
39
40     return 0;
41 }
42
43 static int vcr1_decode_frame(AVCodecContext *avctx, void *data,
44                              int *got_frame, AVPacket *avpkt)
45 {
46     const uint8_t *buf        = avpkt->data;
47     int buf_size              = avpkt->size;
48     VCR1Context *const a      = avctx->priv_data;
49     AVFrame *const p          = data;
50     const uint8_t *bytestream = buf;
51     int i, x, y, ret;
52
53     if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
54         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
55         return ret;
56     }
57     p->pict_type = AV_PICTURE_TYPE_I;
58     p->key_frame = 1;
59
60     for (i = 0; i < 16; i++) {
61         a->delta[i] = *bytestream++;
62         bytestream++;
63     }
64
65     for (y = 0; y < avctx->height; y++) {
66         int offset;
67         uint8_t *luma = &p->data[0][y * p->linesize[0]];
68
69         if ((y & 3) == 0) {
70             uint8_t *cb = &p->data[1][(y >> 2) * p->linesize[1]];
71             uint8_t *cr = &p->data[2][(y >> 2) * p->linesize[2]];
72
73             for (i = 0; i < 4; i++)
74                 a->offset[i] = *bytestream++;
75
76             offset = a->offset[0] - a->delta[bytestream[2] & 0xF];
77             for (x = 0; x < avctx->width; x += 4) {
78                 luma[0]     = offset += a->delta[bytestream[2] & 0xF];
79                 luma[1]     = offset += a->delta[bytestream[2] >>  4];
80                 luma[2]     = offset += a->delta[bytestream[0] & 0xF];
81                 luma[3]     = offset += a->delta[bytestream[0] >>  4];
82                 luma       += 4;
83
84                 *cb++       = bytestream[3];
85                 *cr++       = bytestream[1];
86
87                 bytestream += 4;
88             }
89         } else {
90             offset = a->offset[y & 3] - a->delta[bytestream[2] & 0xF];
91
92             for (x = 0; x < avctx->width; x += 8) {
93                 luma[0]     = offset += a->delta[bytestream[2] & 0xF];
94                 luma[1]     = offset += a->delta[bytestream[2] >>  4];
95                 luma[2]     = offset += a->delta[bytestream[3] & 0xF];
96                 luma[3]     = offset += a->delta[bytestream[3] >>  4];
97                 luma[4]     = offset += a->delta[bytestream[0] & 0xF];
98                 luma[5]     = offset += a->delta[bytestream[0] >>  4];
99                 luma[6]     = offset += a->delta[bytestream[1] & 0xF];
100                 luma[7]     = offset += a->delta[bytestream[1] >>  4];
101                 luma       += 8;
102                 bytestream += 4;
103             }
104         }
105     }
106
107     *got_frame = 1;
108
109     return buf_size;
110 }
111
112 AVCodec ff_vcr1_decoder = {
113     .name           = "vcr1",
114     .type           = AVMEDIA_TYPE_VIDEO,
115     .id             = AV_CODEC_ID_VCR1,
116     .priv_data_size = sizeof(VCR1Context),
117     .init           = vcr1_decode_init,
118     .decode         = vcr1_decode_frame,
119     .capabilities   = CODEC_CAP_DR1,
120     .long_name      = NULL_IF_CONFIG_SMALL("ATI VCR1"),
121 };