124 #define SCALE16(x, bits) (((x) << (16 - (bits))) | ((x) >> (2 * (bits) - 16)))
129 #define MKSCALE16(name, r16, w16) \
130 static void name(AVCodecContext *avctx, uint8_t * dst, const uint8_t *buf, int buf_size, int packed) \
134 for (i = 0; i + 1 < buf_size; i += 2) \
135 w16(dst + i, SCALE16(r16(buf + i), avctx->bits_per_coded_sample)); \
138 init_get_bits(&gb, buf, buf_size * 8); \
139 for (i = 0; i < avctx->width * avctx->height; i++) { \
140 int sample = get_bits(&gb, avctx->bits_per_coded_sample); \
141 w16(dst + i*2, SCALE16(sample, avctx->bits_per_coded_sample)); \
155 int buf_size = avpkt->size;
156 int linesize_align = 4;
163 if ((avctx->bits_per_coded_sample == 4 || avctx->bits_per_coded_sample == 2) &&
165 (!avctx->codec_tag || avctx->codec_tag ==
MKTAG(
'r',
'a',
'w',
' '))) {
187 if (context->
tff >= 0) {
207 if (avctx->bits_per_coded_sample == 4) {
208 for (i = 0; 2 * i + 1 < buf_size && i<avpkt->size; i++) {
209 dst[2 * i + 0] = buf[i] >> 4;
210 dst[2 * i + 1] = buf[i] & 15;
214 av_assert0(avctx->bits_per_coded_sample == 2);
215 for (i = 0; 4 * i + 3 < buf_size && i<avpkt->size; i++) {
216 dst[4 * i + 0] = buf[i] >> 6;
217 dst[4 * i + 1] = buf[i] >> 4 & 3;
218 dst[4 * i + 2] = buf[i] >> 2 & 3;
219 dst[4 * i + 3] = buf[i] & 3;
226 int packed = (avctx->codec_tag & 0xFFFFFF) ==
MKTAG(
'B',
'I',
'T', 0);
227 int swap = avctx->codec_tag >> 24;
229 if (packed && swap) {
243 scale16be(avctx, dst, buf, buf_size, packed);
245 scale16le(avctx, dst, buf, buf_size, packed);
248 }
else if (need_copy) {
249 memcpy(frame->
buf[0]->
data, buf, buf_size);
253 if (avctx->codec_tag ==
MKTAG(
'A',
'V',
'1',
'x') ||
254 avctx->codec_tag ==
MKTAG(
'A',
'V',
'u',
'p'))
258 if (buf_size < len && (avctx->codec_tag & 0xFFFFFF) !=
MKTAG(
'B',
'I',
'T', 0)) {
259 av_log(avctx,
AV_LOG_ERROR,
"Invalid buffer size, packet size %d < expected frame_size %d\n", buf_size, len);
265 avctx->width, avctx->height)) < 0) {
293 FFALIGN(frame->
linesize[0], linesize_align) * avctx->height <= buf_size)
298 FFALIGN(frame->
linesize[1], linesize_align) * ((avctx->height + 1) / 2) <= buf_size) {
300 frame->
data[1] += (la0 - frame->
linesize[0]) * avctx->height;
308 if (!frame->
buf[1]) {
316 ((frame->
linesize[0] + 3) & ~3) * avctx->height <= buf_size)
320 flip(avctx, picture);
322 if (avctx->codec_tag ==
MKTAG(
'Y',
'V',
'1',
'2') ||
323 avctx->codec_tag ==
MKTAG(
'Y',
'V',
'1',
'6') ||
324 avctx->codec_tag ==
MKTAG(
'Y',
'V',
'2',
'4') ||
325 avctx->codec_tag ==
MKTAG(
'Y',
'V',
'U',
'9'))
328 if (avctx->codec_tag ==
AV_RL32(
"I420") && (avctx->width+1)*(avctx->height+1) * 3/2 == buf_size) {
329 picture->
data[1] = picture->
data[1] + (avctx->width+1)*(avctx->height+1) -avctx->width*avctx->height;
330 picture->
data[2] = picture->
data[2] + ((avctx->width+1)*(avctx->height+1) -avctx->width*avctx->height)*5/4;
333 if (avctx->codec_tag ==
AV_RL32(
"yuv2") &&
337 for (y = 0; y < avctx->height; y++) {
338 for (x = 0; x < avctx->width; x++)
339 line[2 * x + 1] ^= 0x80;
371 .priv_class = &rawdec_class,