2 * Cirrus Logic AccuPak (CLJR) codec
3 * Copyright (c) 2003 Alex Beregszaszi
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 * Cirrus Logic AccuPak codec.
27 #include "mpegvideo.h"
29 typedef struct CLJRContext
{
30 AVCodecContext
*avctx
;
37 static int decode_frame(AVCodecContext
*avctx
,
38 void *data
, int *data_size
,
39 uint8_t *buf
, int buf_size
)
41 CLJRContext
* const a
= avctx
->priv_data
;
42 AVFrame
*picture
= data
;
43 AVFrame
* const p
= (AVFrame
*)&a
->picture
;
47 avctx
->release_buffer(avctx
, p
);
50 if(avctx
->get_buffer(avctx
, p
) < 0){
51 av_log(avctx
, AV_LOG_ERROR
, "get_buffer() failed\n");
57 init_get_bits(&a
->gb
, buf
, buf_size
);
59 for(y
=0; y
<avctx
->height
; y
++){
60 uint8_t *luma
= &a
->picture
.data
[0][ y
*a
->picture
.linesize
[0] ];
61 uint8_t *cb
= &a
->picture
.data
[1][ y
*a
->picture
.linesize
[1] ];
62 uint8_t *cr
= &a
->picture
.data
[2][ y
*a
->picture
.linesize
[2] ];
63 for(x
=0; x
<avctx
->width
; x
+=4){
64 luma
[3] = get_bits(&a
->gb
, 5) << 3;
65 luma
[2] = get_bits(&a
->gb
, 5) << 3;
66 luma
[1] = get_bits(&a
->gb
, 5) << 3;
67 luma
[0] = get_bits(&a
->gb
, 5) << 3;
69 *(cb
++) = get_bits(&a
->gb
, 6) << 2;
70 *(cr
++) = get_bits(&a
->gb
, 6) << 2;
74 *picture
= *(AVFrame
*)&a
->picture
;
75 *data_size
= sizeof(AVPicture
);
83 static int encode_frame(AVCodecContext
*avctx
, unsigned char *buf
, int buf_size
, void *data
){
84 CLJRContext
* const a
= avctx
->priv_data
;
86 AVFrame
* const p
= (AVFrame
*)&a
->picture
;
96 align_put_bits(&a
->pb
);
97 while(get_bit_count(&a
->pb
)&31)
98 put_bits(&a
->pb
, 8, 0);
100 size
= get_bit_count(&a
->pb
)/32;
106 static void common_init(AVCodecContext
*avctx
){
107 CLJRContext
* const a
= avctx
->priv_data
;
109 avctx
->coded_frame
= (AVFrame
*)&a
->picture
;
113 static int decode_init(AVCodecContext
*avctx
){
117 avctx
->pix_fmt
= PIX_FMT_YUV411P
;
123 static int encode_init(AVCodecContext
*avctx
){
131 AVCodec cljr_decoder
= {
143 #ifdef CONFIG_ENCODERS
145 AVCodec cljr_encoder
= {
155 #endif //CONFIG_ENCODERS