3 * Copyright (c) 2006 Aurelien Jacobs <aurel@gnuage.org>
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
39 AVS_P_FRAME_3X3
= 0x01,
40 AVS_P_FRAME_2X2
= 0x02,
41 AVS_P_FRAME_2X3
= 0x03,
46 avs_decode_frame(AVCodecContext
* avctx
,
47 void *data
, int *data_size
, AVPacket
*avpkt
)
49 const uint8_t *buf
= avpkt
->data
;
50 int buf_size
= avpkt
->size
;
51 AvsContext
*const avs
= avctx
->priv_data
;
52 AVFrame
*picture
= data
;
53 AVFrame
*const p
= (AVFrame
*) & avs
->picture
;
54 const uint8_t *table
, *vect
;
56 int i
, j
, x
, y
, stride
, vect_w
= 3, vect_h
= 3;
57 AvsVideoSubType sub_type
;
59 GetBitContext change_map
;
61 if (avctx
->reget_buffer(avctx
, p
)) {
62 av_log(avctx
, AV_LOG_ERROR
, "reget_buffer() failed\n");
66 p
->pict_type
= FF_P_TYPE
;
69 out
= avs
->picture
.data
[0];
70 stride
= avs
->picture
.linesize
[0];
76 if (type
== AVS_PALETTE
) {
78 uint32_t *pal
= (uint32_t *) avs
->picture
.data
[1];
81 last
= first
+ AV_RL16(buf
+ 2);
83 for (i
=first
; i
<last
; i
++, buf
+=3)
84 pal
[i
] = (buf
[0] << 18) | (buf
[1] << 10) | (buf
[2] << 2);
91 if (type
!= AVS_VIDEO
)
96 p
->pict_type
= FF_I_TYPE
;
103 case AVS_P_FRAME_2X2
:
108 case AVS_P_FRAME_2X3
:
117 table
= buf
+ (256 * vect_w
* vect_h
);
118 if (sub_type
!= AVS_I_FRAME
) {
119 int map_size
= ((318 / vect_w
+ 7) / 8) * (198 / vect_h
);
120 init_get_bits(&change_map
, table
, map_size
);
124 for (y
=0; y
<198; y
+=vect_h
) {
125 for (x
=0; x
<318; x
+=vect_w
) {
126 if (sub_type
== AVS_I_FRAME
|| get_bits1(&change_map
)) {
127 vect
= &buf
[*table
++ * (vect_w
* vect_h
)];
128 for (j
=0; j
<vect_w
; j
++) {
129 out
[(y
+ 0) * stride
+ x
+ j
] = vect
[(0 * vect_w
) + j
];
130 out
[(y
+ 1) * stride
+ x
+ j
] = vect
[(1 * vect_w
) + j
];
132 out
[(y
+ 2) * stride
+ x
+ j
] =
133 vect
[(2 * vect_w
) + j
];
137 if (sub_type
!= AVS_I_FRAME
)
138 align_get_bits(&change_map
);
141 *picture
= *(AVFrame
*) & avs
->picture
;
142 *data_size
= sizeof(AVPicture
);
147 static av_cold
int avs_decode_init(AVCodecContext
* avctx
)
149 avctx
->pix_fmt
= PIX_FMT_PAL8
;
153 AVCodec avs_decoder
= {
163 .long_name
= NULL_IF_CONFIG_SMALL("AVS (Audio Video Standard) video"),