OSDN Git Service

avconv: extend -vf syntax
[coroid/libav_saccubus.git] / libavcodec / cljr.c
1 /*
2  * Cirrus Logic AccuPak (CLJR) codec
3  * Copyright (c) 2003 Alex Beregszaszi
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  * 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     avctx->coded_frame= (AVFrame*)&a->picture;
122     a->avctx= avctx;
123 }
124
125 static av_cold int decode_init(AVCodecContext *avctx){
126
127     common_init(avctx);
128
129     avctx->pix_fmt= PIX_FMT_YUV411P;
130
131     return 0;
132 }
133
134 #if CONFIG_CLJR_ENCODER
135 static av_cold int encode_init(AVCodecContext *avctx){
136
137     common_init(avctx);
138
139     return 0;
140 }
141 #endif
142
143 AVCodec ff_cljr_decoder = {
144     .name           = "cljr",
145     .type           = AVMEDIA_TYPE_VIDEO,
146     .id             = CODEC_ID_CLJR,
147     .priv_data_size = sizeof(CLJRContext),
148     .init           = decode_init,
149     .decode         = decode_frame,
150     .capabilities   = CODEC_CAP_DR1,
151     .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
152 };
153
154 #if CONFIG_CLJR_ENCODER
155 AVCodec ff_cljr_encoder = {
156     .name           = "cljr",
157     .type           = AVMEDIA_TYPE_VIDEO,
158     .id             = CODEC_ID_CLJR,
159     .priv_data_size = sizeof(CLJRContext),
160     .init           = encode_init,
161     .encode         = encode_frame,
162     .long_name = NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
163 };
164 #endif