]> git.sesse.net Git - ffmpeg/blob - libavcodec/cljr.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / cljr.c
1 /*
2  * Cirrus Logic AccuPak (CLJR) codec
3  * Copyright (c) 2003 Alex Beregszaszi
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 /**
23  * @file
24  * Cirrus Logic AccuPak codec.
25  */
26
27 #include "avcodec.h"
28 #include "dsputil.h"
29 #include "get_bits.h"
30
31 /* Disable the encoder. */
32 #undef CONFIG_CLJR_ENCODER
33 #define CONFIG_CLJR_ENCODER 0
34
35 typedef struct CLJRContext{
36     AVCodecContext *avctx;
37     AVFrame picture;
38     int delta[16];
39     int offset[4];
40     GetBitContext gb;
41 } CLJRContext;
42
43 static int decode_frame(AVCodecContext *avctx,
44                         void *data, int *data_size,
45                         AVPacket *avpkt)
46 {
47     const uint8_t *buf = avpkt->data;
48     int buf_size = avpkt->size;
49     CLJRContext * const a = avctx->priv_data;
50     AVFrame *picture = data;
51     AVFrame * const p= (AVFrame*)&a->picture;
52     int x, y;
53
54     if(p->data[0])
55         avctx->release_buffer(avctx, p);
56
57     if(buf_size/avctx->height < avctx->width) {
58         av_log(avctx, AV_LOG_ERROR, "Resolution larger than buffer size. Invalid header?\n");
59         return -1;
60     }
61
62     p->reference= 0;
63     if(avctx->get_buffer(avctx, p) < 0){
64         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
65         return -1;
66     }
67     p->pict_type= AV_PICTURE_TYPE_I;
68     p->key_frame= 1;
69
70     init_get_bits(&a->gb, buf, buf_size * 8);
71
72     for(y=0; y<avctx->height; y++){
73         uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ];
74         uint8_t *cb= &a->picture.data[1][ y*a->picture.linesize[1] ];
75         uint8_t *cr= &a->picture.data[2][ y*a->picture.linesize[2] ];
76         for(x=0; x<avctx->width; x+=4){
77                 luma[3] = get_bits(&a->gb, 5) << 3;
78             luma[2] = get_bits(&a->gb, 5) << 3;
79             luma[1] = get_bits(&a->gb, 5) << 3;
80             luma[0] = get_bits(&a->gb, 5) << 3;
81             luma+= 4;
82             *(cb++) = get_bits(&a->gb, 6) << 2;
83             *(cr++) = get_bits(&a->gb, 6) << 2;
84         }
85     }
86
87     *picture= *(AVFrame*)&a->picture;
88     *data_size = sizeof(AVPicture);
89
90     emms_c();
91
92     return buf_size;
93 }
94
95 #if CONFIG_CLJR_ENCODER
96 static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
97     CLJRContext * const a = avctx->priv_data;
98     AVFrame *pict = data;
99     AVFrame * const p= (AVFrame*)&a->picture;
100     int size;
101
102     *p = *pict;
103     p->pict_type= AV_PICTURE_TYPE_I;
104     p->key_frame= 1;
105
106     emms_c();
107
108     align_put_bits(&a->pb);
109     while(get_bit_count(&a->pb)&31)
110         put_bits(&a->pb, 8, 0);
111
112     size= get_bit_count(&a->pb)/32;
113
114     return size*4;
115 }
116 #endif
117
118 static av_cold void common_init(AVCodecContext *avctx){
119     CLJRContext * const a = avctx->priv_data;
120
121     avcodec_get_frame_defaults(&a->picture);
122     avctx->coded_frame= (AVFrame*)&a->picture;
123     a->avctx= avctx;
124 }
125
126 static av_cold int decode_init(AVCodecContext *avctx){
127
128     common_init(avctx);
129
130     avctx->pix_fmt= PIX_FMT_YUV411P;
131
132     return 0;
133 }
134
135 #if CONFIG_CLJR_ENCODER
136 static av_cold int encode_init(AVCodecContext *avctx){
137
138     common_init(avctx);
139
140     return 0;
141 }
142 #endif
143
144 AVCodec ff_cljr_decoder = {
145     .name           = "cljr",
146     .type           = AVMEDIA_TYPE_VIDEO,
147     .id             = CODEC_ID_CLJR,
148     .priv_data_size = sizeof(CLJRContext),
149     .init           = decode_init,
150     .decode         = decode_frame,
151     .capabilities   = CODEC_CAP_DR1,
152     .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
153 };
154
155 #if CONFIG_CLJR_ENCODER
156 AVCodec ff_cljr_encoder = {
157     .name           = "cljr",
158     .type           = AVMEDIA_TYPE_VIDEO,
159     .id             = CODEC_ID_CLJR,
160     .priv_data_size = sizeof(CLJRContext),
161     .init           = encode_init,
162     .encode         = encode_frame,
163     .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
164 };
165 #endif