2 * Cirrus Logic AccuPak (CLJR) codec
3 * Copyright (c) 2003 Alex Beregszaszi
5 * This file is part of FFmpeg.
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.
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.
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
23 * @file libavcodec/cljr.c
24 * Cirrus Logic AccuPak codec.
31 /* Disable the encoder. */
32 #undef CONFIG_CLJR_ENCODER
33 #define CONFIG_CLJR_ENCODER 0
35 typedef struct CLJRContext
{
36 AVCodecContext
*avctx
;
43 static int decode_frame(AVCodecContext
*avctx
,
44 void *data
, int *data_size
,
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
;
55 avctx
->release_buffer(avctx
, p
);
58 if(avctx
->get_buffer(avctx
, p
) < 0){
59 av_log(avctx
, AV_LOG_ERROR
, "get_buffer() failed\n");
62 p
->pict_type
= FF_I_TYPE
;
65 init_get_bits(&a
->gb
, buf
, buf_size
);
67 for(y
=0; y
<avctx
->height
; y
++){
68 uint8_t *luma
= &a
->picture
.data
[0][ y
*a
->picture
.linesize
[0] ];
69 uint8_t *cb
= &a
->picture
.data
[1][ y
*a
->picture
.linesize
[1] ];
70 uint8_t *cr
= &a
->picture
.data
[2][ y
*a
->picture
.linesize
[2] ];
71 for(x
=0; x
<avctx
->width
; x
+=4){
72 luma
[3] = get_bits(&a
->gb
, 5) << 3;
73 luma
[2] = get_bits(&a
->gb
, 5) << 3;
74 luma
[1] = get_bits(&a
->gb
, 5) << 3;
75 luma
[0] = get_bits(&a
->gb
, 5) << 3;
77 *(cb
++) = get_bits(&a
->gb
, 6) << 2;
78 *(cr
++) = get_bits(&a
->gb
, 6) << 2;
82 *picture
= *(AVFrame
*)&a
->picture
;
83 *data_size
= sizeof(AVPicture
);
90 #if CONFIG_CLJR_ENCODER
91 static int encode_frame(AVCodecContext
*avctx
, unsigned char *buf
, int buf_size
, void *data
){
92 CLJRContext
* const a
= avctx
->priv_data
;
94 AVFrame
* const p
= (AVFrame
*)&a
->picture
;
98 p
->pict_type
= FF_I_TYPE
;
103 align_put_bits(&a
->pb
);
104 while(get_bit_count(&a
->pb
)&31)
105 put_bits(&a
->pb
, 8, 0);
107 size
= get_bit_count(&a
->pb
)/32;
113 static av_cold
void common_init(AVCodecContext
*avctx
){
114 CLJRContext
* const a
= avctx
->priv_data
;
116 avctx
->coded_frame
= (AVFrame
*)&a
->picture
;
120 static av_cold
int decode_init(AVCodecContext
*avctx
){
124 avctx
->pix_fmt
= PIX_FMT_YUV411P
;
129 #if CONFIG_CLJR_ENCODER
130 static av_cold
int encode_init(AVCodecContext
*avctx
){
138 AVCodec cljr_decoder
= {
148 .long_name
= NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
151 #if CONFIG_CLJR_ENCODER
152 AVCodec cljr_encoder
= {
160 .long_name
= NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),