65 #if LIBAVCODEC_VERSION_MAJOR < 55
144 #define SCALE16(x, bits) (((x) << (16 - (bits))) | ((x) >> (2 * (bits) - 16)))
149 #define MKSCALE16(name, r16, w16) \
150 static void name(AVCodecContext *avctx, uint8_t * dst, const uint8_t *buf, int buf_size, int packed) \
154 for (i = 0; i + 1 < buf_size; i += 2) \
155 w16(dst + i, SCALE16(r16(buf + i), avctx->bits_per_coded_sample)); \
158 init_get_bits(&gb, buf, buf_size * 8); \
159 for (i = 0; i < avctx->width * avctx->height; i++) { \
160 int sample = get_bits(&gb, avctx->bits_per_coded_sample); \
161 w16(dst + i*2, SCALE16(sample, avctx->bits_per_coded_sample)); \
175 int buf_size = avpkt->size;
176 int linesize_align = 4;
193 if (context->
tff >= 0) {
213 if (avctx->bits_per_coded_sample == 4) {
214 for (i = 0; 2 * i + 1 < buf_size && i<avpkt->size; i++) {
215 dst[2 * i + 0] = buf[i] >> 4;
216 dst[2 * i + 1] = buf[i] & 15;
220 av_assert0(avctx->bits_per_coded_sample == 2);
221 for (i = 0; 4 * i + 3 < buf_size && i<avpkt->size; i++) {
222 dst[4 * i + 0] = buf[i] >> 6;
223 dst[4 * i + 1] = buf[i] >> 4 & 3;
224 dst[4 * i + 2] = buf[i] >> 2 & 3;
225 dst[4 * i + 3] = buf[i] & 3;
232 int packed = (avctx->codec_tag & 0xFFFFFF) ==
MKTAG(
'B',
'I',
'T', 0);
233 int swap = avctx->codec_tag >> 24;
235 if (packed && swap) {
249 scale16be(avctx, dst, buf, buf_size, packed);
251 scale16le(avctx, dst, buf, buf_size, packed);
254 }
else if (need_copy) {
255 memcpy(frame->
buf[0]->
data, buf, buf_size);
259 if (avctx->codec_tag ==
MKTAG(
'A',
'V',
'1',
'x') ||
260 avctx->codec_tag ==
MKTAG(
'A',
'V',
'u',
'p'))
264 if (buf_size < len && (avctx->codec_tag & 0xFFFFFF) !=
MKTAG(
'B',
'I',
'T', 0)) {
265 av_log(avctx,
AV_LOG_ERROR,
"Invalid buffer size, packet size %d < expected frame_size %d\n", buf_size, len);
271 avctx->width, avctx->height)) < 0) {
299 FFALIGN(frame->
linesize[0], linesize_align) * avctx->height <= buf_size)
304 FFALIGN(frame->
linesize[1], linesize_align) * ((avctx->height + 1) / 2) <= buf_size) {
306 frame->
data[1] += (la0 - frame->
linesize[0]) * avctx->height;
314 if (!frame->
buf[1]) {
322 ((frame->
linesize[0] + 3) & ~3) * avctx->height <= buf_size)
326 flip(avctx, picture);
328 if (avctx->codec_tag ==
MKTAG(
'Y',
'V',
'1',
'2') ||
329 avctx->codec_tag ==
MKTAG(
'Y',
'V',
'1',
'6') ||
330 avctx->codec_tag ==
MKTAG(
'Y',
'V',
'2',
'4') ||
331 avctx->codec_tag ==
MKTAG(
'Y',
'V',
'U',
'9'))
334 if (avctx->codec_tag ==
AV_RL32(
"I420") && (avctx->width+1)*(avctx->height+1) * 3/2 == buf_size) {
335 picture->
data[1] = picture->
data[1] + (avctx->width+1)*(avctx->height+1) -avctx->width*avctx->height;
336 picture->
data[2] = picture->
data[2] + ((avctx->width+1)*(avctx->height+1) -avctx->width*avctx->height)*5/4;
339 if (avctx->codec_tag ==
AV_RL32(
"yuv2") &&
343 for (y = 0; y < avctx->height; y++) {
344 for (x = 0; x < avctx->width; x++)
345 line[2 * x + 1] ^= 0x80;
377 .priv_class = &rawdec_class,