3 * Copyright (c) 2003 Michael Niedermayer
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
33 /* Disable the encoder. */
34 #undef CONFIG_VCR1_ENCODER
36 typedef struct VCR1Context
{
37 AVCodecContext
*avctx
;
43 static int decode_frame(AVCodecContext
*avctx
,
44 void *data
, int *data_size
,
45 const uint8_t *buf
, int buf_size
)
47 VCR1Context
* const a
= avctx
->priv_data
;
48 AVFrame
*picture
= data
;
49 AVFrame
* const p
= (AVFrame
*)&a
->picture
;
50 const uint8_t *bytestream
= buf
;
54 avctx
->release_buffer(avctx
, p
);
57 if(avctx
->get_buffer(avctx
, p
) < 0){
58 av_log(avctx
, AV_LOG_ERROR
, "get_buffer() failed\n");
61 p
->pict_type
= FF_I_TYPE
;
65 a
->delta
[i
]= *(bytestream
++);
69 for(y
=0; y
<avctx
->height
; y
++){
71 uint8_t *luma
= &a
->picture
.data
[0][ y
*a
->picture
.linesize
[0] ];
74 uint8_t *cb
= &a
->picture
.data
[1][ (y
>>2)*a
->picture
.linesize
[1] ];
75 uint8_t *cr
= &a
->picture
.data
[2][ (y
>>2)*a
->picture
.linesize
[2] ];
78 a
->offset
[i
]= *(bytestream
++);
80 offset
= a
->offset
[0] - a
->delta
[ bytestream
[2]&0xF ];
81 for(x
=0; x
<avctx
->width
; x
+=4){
82 luma
[0]=( offset
+= a
->delta
[ bytestream
[2]&0xF ]);
83 luma
[1]=( offset
+= a
->delta
[ bytestream
[2]>>4 ]);
84 luma
[2]=( offset
+= a
->delta
[ bytestream
[0]&0xF ]);
85 luma
[3]=( offset
+= a
->delta
[ bytestream
[0]>>4 ]);
88 *(cb
++) = bytestream
[3];
89 *(cr
++) = bytestream
[1];
94 offset
= a
->offset
[y
&3] - a
->delta
[ bytestream
[2]&0xF ];
96 for(x
=0; x
<avctx
->width
; x
+=8){
97 luma
[0]=( offset
+= a
->delta
[ bytestream
[2]&0xF ]);
98 luma
[1]=( offset
+= a
->delta
[ bytestream
[2]>>4 ]);
99 luma
[2]=( offset
+= a
->delta
[ bytestream
[3]&0xF ]);
100 luma
[3]=( offset
+= a
->delta
[ bytestream
[3]>>4 ]);
101 luma
[4]=( offset
+= a
->delta
[ bytestream
[0]&0xF ]);
102 luma
[5]=( offset
+= a
->delta
[ bytestream
[0]>>4 ]);
103 luma
[6]=( offset
+= a
->delta
[ bytestream
[1]&0xF ]);
104 luma
[7]=( offset
+= a
->delta
[ bytestream
[1]>>4 ]);
111 *picture
= *(AVFrame
*)&a
->picture
;
112 *data_size
= sizeof(AVPicture
);
119 #ifdef CONFIG_VCR1_ENCODER
120 static int encode_frame(AVCodecContext
*avctx
, unsigned char *buf
, int buf_size
, void *data
){
121 VCR1Context
* const a
= avctx
->priv_data
;
122 AVFrame
*pict
= data
;
123 AVFrame
* const p
= (AVFrame
*)&a
->picture
;
128 p
->pict_type
= FF_I_TYPE
;
133 align_put_bits(&a
->pb
);
134 while(get_bit_count(&a
->pb
)&31)
135 put_bits(&a
->pb
, 8, 0);
137 size
= get_bit_count(&a
->pb
)/32;
143 static av_cold
void common_init(AVCodecContext
*avctx
){
144 VCR1Context
* const a
= avctx
->priv_data
;
146 avctx
->coded_frame
= (AVFrame
*)&a
->picture
;
150 static av_cold
int decode_init(AVCodecContext
*avctx
){
154 avctx
->pix_fmt
= PIX_FMT_YUV410P
;
159 #ifdef CONFIG_VCR1_ENCODER
160 static av_cold
int encode_init(AVCodecContext
*avctx
){
168 AVCodec vcr1_decoder
= {
178 .long_name
= NULL_IF_CONFIG_SMALL("ATI VCR1"),
181 #ifdef CONFIG_VCR1_ENCODER
182 AVCodec vcr1_encoder
= {
190 .long_name
= NULL_IF_CONFIG_SMALL("ATI VCR1"),