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
24 * Cirrus Logic AccuPak codec.
29 #include "bitstream.h"
31 /* Disable the encoder. */
32 #undef CONFIG_CLJR_ENCODER
34 typedef struct CLJRContext
{
35 AVCodecContext
*avctx
;
42 static int decode_frame(AVCodecContext
*avctx
,
43 void *data
, int *data_size
,
44 const uint8_t *buf
, int buf_size
)
46 CLJRContext
* const a
= avctx
->priv_data
;
47 AVFrame
*picture
= data
;
48 AVFrame
* const p
= (AVFrame
*)&a
->picture
;
52 avctx
->release_buffer(avctx
, p
);
55 if(avctx
->get_buffer(avctx
, p
) < 0){
56 av_log(avctx
, AV_LOG_ERROR
, "get_buffer() failed\n");
59 p
->pict_type
= FF_I_TYPE
;
62 init_get_bits(&a
->gb
, buf
, buf_size
);
64 for(y
=0; y
<avctx
->height
; y
++){
65 uint8_t *luma
= &a
->picture
.data
[0][ y
*a
->picture
.linesize
[0] ];
66 uint8_t *cb
= &a
->picture
.data
[1][ y
*a
->picture
.linesize
[1] ];
67 uint8_t *cr
= &a
->picture
.data
[2][ y
*a
->picture
.linesize
[2] ];
68 for(x
=0; x
<avctx
->width
; x
+=4){
69 luma
[3] = get_bits(&a
->gb
, 5) << 3;
70 luma
[2] = get_bits(&a
->gb
, 5) << 3;
71 luma
[1] = get_bits(&a
->gb
, 5) << 3;
72 luma
[0] = get_bits(&a
->gb
, 5) << 3;
74 *(cb
++) = get_bits(&a
->gb
, 6) << 2;
75 *(cr
++) = get_bits(&a
->gb
, 6) << 2;
79 *picture
= *(AVFrame
*)&a
->picture
;
80 *data_size
= sizeof(AVPicture
);
87 #ifdef CONFIG_CLJR_ENCODER
88 static int encode_frame(AVCodecContext
*avctx
, unsigned char *buf
, int buf_size
, void *data
){
89 CLJRContext
* const a
= avctx
->priv_data
;
91 AVFrame
* const p
= (AVFrame
*)&a
->picture
;
96 p
->pict_type
= FF_I_TYPE
;
101 align_put_bits(&a
->pb
);
102 while(get_bit_count(&a
->pb
)&31)
103 put_bits(&a
->pb
, 8, 0);
105 size
= get_bit_count(&a
->pb
)/32;
111 static av_cold
void common_init(AVCodecContext
*avctx
){
112 CLJRContext
* const a
= avctx
->priv_data
;
114 avctx
->coded_frame
= (AVFrame
*)&a
->picture
;
118 static av_cold
int decode_init(AVCodecContext
*avctx
){
122 avctx
->pix_fmt
= PIX_FMT_YUV411P
;
127 #ifdef CONFIG_CLJR_ENCODER
128 static av_cold
int encode_init(AVCodecContext
*avctx
){
136 AVCodec cljr_decoder
= {
146 .long_name
= NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),
149 #ifdef CONFIG_CLJR_ENCODER
150 AVCodec cljr_encoder
= {
158 .long_name
= NULL_IF_CONFIG_SMALL("Cirrus Logic AccuPak"),