2006-09-05 04:37:14 +00:00
|
|
|
/*
|
|
|
|
* VMware Screen Codec (VMnc) decoder
|
|
|
|
* Copyright (c) 2006 Konstantin Shishkov
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2006-10-07 15:30:46 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2006-09-05 04:37:14 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-05 04:37:14 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2006-09-05 04:37:14 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-09-05 04:37:14 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2006-09-05 04:37:14 +00:00
|
|
|
* VMware Screen Codec (VMnc) decoder
|
|
|
|
* As Alex Beregszaszi discovered, this is effectively RFB data dump
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/common.h"
|
2009-01-11 22:19:48 +00:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2006-09-05 04:37:14 +00:00
|
|
|
#include "avcodec.h"
|
2012-11-21 20:34:46 +00:00
|
|
|
#include "internal.h"
|
2006-09-05 04:37:14 +00:00
|
|
|
|
2006-09-05 07:31:53 +00:00
|
|
|
enum EncTypes {
|
|
|
|
MAGIC_WMVd = 0x574D5664,
|
|
|
|
MAGIC_WMVe,
|
|
|
|
MAGIC_WMVf,
|
|
|
|
MAGIC_WMVg,
|
|
|
|
MAGIC_WMVh,
|
|
|
|
MAGIC_WMVi,
|
|
|
|
MAGIC_WMVj
|
|
|
|
};
|
2006-09-05 04:37:14 +00:00
|
|
|
|
|
|
|
enum HexTile_Flags {
|
|
|
|
HT_RAW = 1, // tile is raw
|
|
|
|
HT_BKG = 2, // background color is present
|
|
|
|
HT_FG = 4, // foreground color is present
|
|
|
|
HT_SUB = 8, // subrects are present
|
|
|
|
HT_CLR = 16 // each subrect has own color
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Decoder context
|
|
|
|
*/
|
|
|
|
typedef struct VmncContext {
|
|
|
|
AVCodecContext *avctx;
|
|
|
|
AVFrame pic;
|
|
|
|
|
|
|
|
int bpp;
|
|
|
|
int bpp2;
|
|
|
|
int bigendian;
|
|
|
|
uint8_t pal[768];
|
|
|
|
int width, height;
|
2006-09-07 04:01:42 +00:00
|
|
|
|
|
|
|
/* cursor data */
|
|
|
|
int cur_w, cur_h;
|
|
|
|
int cur_x, cur_y;
|
|
|
|
int cur_hx, cur_hy;
|
2013-10-09 10:58:42 +00:00
|
|
|
uint8_t *curbits, *curmask;
|
|
|
|
uint8_t *screendta;
|
2006-09-05 04:37:14 +00:00
|
|
|
} VmncContext;
|
|
|
|
|
|
|
|
/* read pixel value from stream */
|
2013-10-09 10:58:42 +00:00
|
|
|
static av_always_inline int vmnc_get_pixel(const uint8_t *buf, int bpp, int be)
|
|
|
|
{
|
|
|
|
switch (bpp * 2 + be) {
|
2006-09-05 04:37:14 +00:00
|
|
|
case 2:
|
2013-10-09 10:58:42 +00:00
|
|
|
case 3:
|
|
|
|
return *buf;
|
|
|
|
case 4:
|
|
|
|
return AV_RL16(buf);
|
|
|
|
case 5:
|
|
|
|
return AV_RB16(buf);
|
|
|
|
case 8:
|
|
|
|
return AV_RL32(buf);
|
|
|
|
case 9:
|
|
|
|
return AV_RB32(buf);
|
|
|
|
default:
|
|
|
|
return 0;
|
2006-09-05 04:37:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-01 16:08:39 +00:00
|
|
|
static void load_cursor(VmncContext *c, const uint8_t *src)
|
2006-09-07 04:01:42 +00:00
|
|
|
{
|
|
|
|
int i, j, p;
|
2013-10-09 10:58:42 +00:00
|
|
|
const int bpp = c->bpp2;
|
|
|
|
uint8_t *dst8 = c->curbits;
|
|
|
|
uint16_t *dst16 = (uint16_t *)c->curbits;
|
|
|
|
uint32_t *dst32 = (uint32_t *)c->curbits;
|
2006-09-07 04:01:42 +00:00
|
|
|
|
2013-10-09 10:58:42 +00:00
|
|
|
for (j = 0; j < c->cur_h; j++) {
|
|
|
|
for (i = 0; i < c->cur_w; i++) {
|
2006-09-07 04:01:42 +00:00
|
|
|
p = vmnc_get_pixel(src, bpp, c->bigendian);
|
|
|
|
src += bpp;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (bpp == 1)
|
|
|
|
*dst8++ = p;
|
|
|
|
if (bpp == 2)
|
|
|
|
*dst16++ = p;
|
|
|
|
if (bpp == 4)
|
|
|
|
*dst32++ = p;
|
2006-09-07 04:01:42 +00:00
|
|
|
}
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
dst8 = c->curmask;
|
2006-09-07 04:01:42 +00:00
|
|
|
dst16 = (uint16_t*)c->curmask;
|
|
|
|
dst32 = (uint32_t*)c->curmask;
|
2013-10-09 10:58:42 +00:00
|
|
|
for (j = 0; j < c->cur_h; j++) {
|
|
|
|
for (i = 0; i < c->cur_w; i++) {
|
2006-09-07 04:01:42 +00:00
|
|
|
p = vmnc_get_pixel(src, bpp, c->bigendian);
|
|
|
|
src += bpp;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (bpp == 1)
|
|
|
|
*dst8++ = p;
|
|
|
|
if (bpp == 2)
|
|
|
|
*dst16++ = p;
|
|
|
|
if (bpp == 4)
|
|
|
|
*dst32++ = p;
|
2006-09-07 04:01:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put_cursor(uint8_t *dst, int stride, VmncContext *c, int dx, int dy)
|
|
|
|
{
|
2006-10-03 17:12:48 +00:00
|
|
|
int i, j;
|
2006-09-07 04:01:42 +00:00
|
|
|
int w, h, x, y;
|
|
|
|
w = c->cur_w;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (c->width < c->cur_x + c->cur_w)
|
|
|
|
w = c->width - c->cur_x;
|
2006-09-07 04:01:42 +00:00
|
|
|
h = c->cur_h;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (c->height < c->cur_y + c->cur_h)
|
|
|
|
h = c->height - c->cur_y;
|
2006-09-07 04:01:42 +00:00
|
|
|
x = c->cur_x;
|
|
|
|
y = c->cur_y;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (x < 0) {
|
2006-09-07 04:01:42 +00:00
|
|
|
w += x;
|
2013-10-09 10:58:42 +00:00
|
|
|
x = 0;
|
2006-09-07 04:01:42 +00:00
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
if (y < 0) {
|
2006-09-07 04:01:42 +00:00
|
|
|
h += y;
|
2013-10-09 10:58:42 +00:00
|
|
|
y = 0;
|
2006-09-07 04:01:42 +00:00
|
|
|
}
|
|
|
|
|
2013-10-09 10:58:42 +00:00
|
|
|
if ((w < 1) || (h < 1))
|
|
|
|
return;
|
2006-09-07 04:01:42 +00:00
|
|
|
dst += x * c->bpp2 + y * stride;
|
|
|
|
|
2013-10-09 10:58:42 +00:00
|
|
|
if (c->bpp2 == 1) {
|
|
|
|
uint8_t *cd = c->curbits, *msk = c->curmask;
|
|
|
|
for (j = 0; j < h; j++) {
|
|
|
|
for (i = 0; i < w; i++)
|
2006-09-07 04:01:42 +00:00
|
|
|
dst[i] = (dst[i] & cd[i]) ^ msk[i];
|
|
|
|
msk += c->cur_w;
|
2013-10-09 10:58:42 +00:00
|
|
|
cd += c->cur_w;
|
2006-09-07 04:01:42 +00:00
|
|
|
dst += stride;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
} else if (c->bpp2 == 2) {
|
|
|
|
uint16_t *cd = (uint16_t*)c->curbits, *msk = (uint16_t*)c->curmask;
|
|
|
|
uint16_t *dst2;
|
|
|
|
for (j = 0; j < h; j++) {
|
2006-09-07 04:01:42 +00:00
|
|
|
dst2 = (uint16_t*)dst;
|
2013-10-09 10:58:42 +00:00
|
|
|
for (i = 0; i < w; i++)
|
2006-09-07 04:01:42 +00:00
|
|
|
dst2[i] = (dst2[i] & cd[i]) ^ msk[i];
|
|
|
|
msk += c->cur_w;
|
2013-10-09 10:58:42 +00:00
|
|
|
cd += c->cur_w;
|
2006-09-07 04:01:42 +00:00
|
|
|
dst += stride;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
} else if (c->bpp2 == 4) {
|
|
|
|
uint32_t *cd = (uint32_t*)c->curbits, *msk = (uint32_t*)c->curmask;
|
|
|
|
uint32_t *dst2;
|
|
|
|
for (j = 0; j < h; j++) {
|
2006-09-07 04:01:42 +00:00
|
|
|
dst2 = (uint32_t*)dst;
|
2013-10-09 10:58:42 +00:00
|
|
|
for (i = 0; i < w; i++)
|
2006-09-07 04:01:42 +00:00
|
|
|
dst2[i] = (dst2[i] & cd[i]) ^ msk[i];
|
|
|
|
msk += c->cur_w;
|
2013-10-09 10:58:42 +00:00
|
|
|
cd += c->cur_w;
|
2006-09-07 04:01:42 +00:00
|
|
|
dst += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-02 15:43:08 +00:00
|
|
|
/* fill rectangle with given color */
|
2013-10-09 10:58:42 +00:00
|
|
|
static av_always_inline void paint_rect(uint8_t *dst, int dx, int dy,
|
|
|
|
int w, int h, int color,
|
|
|
|
int bpp, int stride)
|
2006-09-05 04:37:14 +00:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
dst += dx * bpp + dy * stride;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (bpp == 1) {
|
|
|
|
for (j = 0; j < h; j++) {
|
2006-09-05 04:37:14 +00:00
|
|
|
memset(dst, color, w);
|
|
|
|
dst += stride;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
} else if (bpp == 2) {
|
|
|
|
uint16_t *dst2;
|
|
|
|
for (j = 0; j < h; j++) {
|
2006-09-05 04:37:14 +00:00
|
|
|
dst2 = (uint16_t*)dst;
|
2013-10-09 10:58:42 +00:00
|
|
|
for (i = 0; i < w; i++)
|
2006-09-05 04:37:14 +00:00
|
|
|
*dst2++ = color;
|
|
|
|
dst += stride;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
} else if (bpp == 4) {
|
|
|
|
uint32_t *dst2;
|
|
|
|
for (j = 0; j < h; j++) {
|
2006-09-05 04:37:14 +00:00
|
|
|
dst2 = (uint32_t*)dst;
|
2013-10-09 10:58:42 +00:00
|
|
|
for (i = 0; i < w; i++)
|
2006-09-05 04:37:14 +00:00
|
|
|
dst2[i] = color;
|
|
|
|
dst += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-09 10:58:42 +00:00
|
|
|
static av_always_inline void paint_raw(uint8_t *dst, int w, int h,
|
|
|
|
const uint8_t *src, int bpp,
|
|
|
|
int be, int stride)
|
2006-09-05 04:37:14 +00:00
|
|
|
{
|
|
|
|
int i, j, p;
|
2013-10-09 10:58:42 +00:00
|
|
|
for (j = 0; j < h; j++) {
|
|
|
|
for (i = 0; i < w; i++) {
|
2006-09-05 04:37:14 +00:00
|
|
|
p = vmnc_get_pixel(src, bpp, be);
|
|
|
|
src += bpp;
|
2013-10-09 10:58:42 +00:00
|
|
|
switch (bpp) {
|
2006-09-05 07:29:26 +00:00
|
|
|
case 1:
|
|
|
|
dst[i] = p;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
((uint16_t*)dst)[i] = p;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
((uint32_t*)dst)[i] = p;
|
|
|
|
break;
|
|
|
|
}
|
2006-09-05 04:37:14 +00:00
|
|
|
}
|
|
|
|
dst += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-09 10:58:42 +00:00
|
|
|
static int decode_hextile(VmncContext *c, uint8_t *dst, const uint8_t *src,
|
|
|
|
int ssize, int w, int h, int stride)
|
2006-09-05 04:37:14 +00:00
|
|
|
{
|
|
|
|
int i, j, k;
|
|
|
|
int bg = 0, fg = 0, rects, color, flags, xy, wh;
|
|
|
|
const int bpp = c->bpp2;
|
|
|
|
uint8_t *dst2;
|
|
|
|
int bw = 16, bh = 16;
|
2013-10-09 10:58:42 +00:00
|
|
|
const uint8_t *ssrc = src;
|
2006-09-05 04:37:14 +00:00
|
|
|
|
2013-10-09 10:58:42 +00:00
|
|
|
for (j = 0; j < h; j += 16) {
|
2006-09-05 04:37:14 +00:00
|
|
|
dst2 = dst;
|
2013-10-09 10:58:42 +00:00
|
|
|
bw = 16;
|
|
|
|
if (j + 16 > h)
|
|
|
|
bh = h - j;
|
|
|
|
for (i = 0; i < w; i += 16, dst2 += 16 * bpp) {
|
|
|
|
if (src - ssrc >= ssize) {
|
2006-09-07 04:05:04 +00:00
|
|
|
av_log(c->avctx, AV_LOG_ERROR, "Premature end of data!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
if (i + 16 > w)
|
|
|
|
bw = w - i;
|
2006-09-05 04:37:14 +00:00
|
|
|
flags = *src++;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (flags & HT_RAW) {
|
|
|
|
if (src - ssrc > ssize - bw * bh * bpp) {
|
2006-09-07 04:05:04 +00:00
|
|
|
av_log(c->avctx, AV_LOG_ERROR, "Premature end of data!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2006-09-05 04:37:14 +00:00
|
|
|
paint_raw(dst2, bw, bh, src, bpp, c->bigendian, stride);
|
2006-09-05 07:29:26 +00:00
|
|
|
src += bw * bh * bpp;
|
2006-09-05 04:37:14 +00:00
|
|
|
} else {
|
2013-10-09 10:58:42 +00:00
|
|
|
if (flags & HT_BKG) {
|
|
|
|
bg = vmnc_get_pixel(src, bpp, c->bigendian);
|
|
|
|
src += bpp;
|
2006-09-05 04:37:14 +00:00
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
if (flags & HT_FG) {
|
|
|
|
fg = vmnc_get_pixel(src, bpp, c->bigendian);
|
|
|
|
src += bpp;
|
2006-09-05 04:37:14 +00:00
|
|
|
}
|
|
|
|
rects = 0;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (flags & HT_SUB)
|
2006-09-05 04:37:14 +00:00
|
|
|
rects = *src++;
|
2006-09-07 04:05:04 +00:00
|
|
|
color = !!(flags & HT_CLR);
|
2006-09-05 04:37:14 +00:00
|
|
|
|
|
|
|
paint_rect(dst2, 0, 0, bw, bh, bg, bpp, stride);
|
|
|
|
|
2013-10-09 10:58:42 +00:00
|
|
|
if (src - ssrc > ssize - rects * (color * bpp + 2)) {
|
2006-09-07 04:05:04 +00:00
|
|
|
av_log(c->avctx, AV_LOG_ERROR, "Premature end of data!\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
for (k = 0; k < rects; k++) {
|
|
|
|
if (color) {
|
|
|
|
fg = vmnc_get_pixel(src, bpp, c->bigendian);
|
|
|
|
src += bpp;
|
2006-09-05 04:37:14 +00:00
|
|
|
}
|
|
|
|
xy = *src++;
|
|
|
|
wh = *src++;
|
2013-10-09 10:58:42 +00:00
|
|
|
paint_rect(dst2, xy >> 4, xy & 0xF, (wh >> 4) + 1,
|
|
|
|
(wh & 0xF) + 1, fg, bpp, stride);
|
2006-09-05 04:37:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dst += stride * 16;
|
|
|
|
}
|
|
|
|
return src - ssrc;
|
|
|
|
}
|
|
|
|
|
2012-11-13 18:35:22 +00:00
|
|
|
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
|
|
|
|
AVPacket *avpkt)
|
2006-09-05 04:37:14 +00:00
|
|
|
{
|
2009-04-07 15:59:50 +00:00
|
|
|
const uint8_t *buf = avpkt->data;
|
2013-10-09 10:58:42 +00:00
|
|
|
int buf_size = avpkt->size;
|
2007-04-08 20:24:16 +00:00
|
|
|
VmncContext * const c = avctx->priv_data;
|
2006-09-05 04:37:14 +00:00
|
|
|
uint8_t *outptr;
|
2008-02-01 16:08:39 +00:00
|
|
|
const uint8_t *src = buf;
|
2012-11-21 20:34:46 +00:00
|
|
|
int dx, dy, w, h, depth, enc, chunks, res, size_left, ret;
|
2006-09-05 04:37:14 +00:00
|
|
|
|
2012-11-21 20:34:46 +00:00
|
|
|
if ((ret = ff_reget_buffer(avctx, &c->pic)) < 0) {
|
2006-09-05 04:37:14 +00:00
|
|
|
av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
|
2012-11-21 20:34:46 +00:00
|
|
|
return ret;
|
2006-09-05 04:37:14 +00:00
|
|
|
}
|
|
|
|
|
2006-09-05 07:31:53 +00:00
|
|
|
c->pic.key_frame = 0;
|
2011-04-29 16:53:57 +00:00
|
|
|
c->pic.pict_type = AV_PICTURE_TYPE_P;
|
2006-09-05 04:37:14 +00:00
|
|
|
|
2013-10-09 10:58:42 +00:00
|
|
|
// restore screen after cursor
|
|
|
|
if (c->screendta) {
|
2006-09-07 04:01:42 +00:00
|
|
|
int i;
|
|
|
|
w = c->cur_w;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (c->width < c->cur_x + w)
|
|
|
|
w = c->width - c->cur_x;
|
2006-09-07 04:01:42 +00:00
|
|
|
h = c->cur_h;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (c->height < c->cur_y + h)
|
|
|
|
h = c->height - c->cur_y;
|
2006-09-07 04:01:42 +00:00
|
|
|
dx = c->cur_x;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (dx < 0) {
|
2006-09-07 04:01:42 +00:00
|
|
|
w += dx;
|
|
|
|
dx = 0;
|
|
|
|
}
|
|
|
|
dy = c->cur_y;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (dy < 0) {
|
2006-09-07 04:01:42 +00:00
|
|
|
h += dy;
|
|
|
|
dy = 0;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
if ((w > 0) && (h > 0)) {
|
2006-09-07 04:01:42 +00:00
|
|
|
outptr = c->pic.data[0] + dx * c->bpp2 + dy * c->pic.linesize[0];
|
2013-10-09 10:58:42 +00:00
|
|
|
for (i = 0; i < h; i++) {
|
|
|
|
memcpy(outptr, c->screendta + i * c->cur_w * c->bpp2,
|
|
|
|
w * c->bpp2);
|
2006-09-07 04:01:42 +00:00
|
|
|
outptr += c->pic.linesize[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-09-05 07:31:53 +00:00
|
|
|
src += 2;
|
2013-10-09 10:58:42 +00:00
|
|
|
chunks = AV_RB16(src);
|
|
|
|
src += 2;
|
|
|
|
while (chunks--) {
|
|
|
|
dx = AV_RB16(src);
|
|
|
|
src += 2;
|
|
|
|
dy = AV_RB16(src);
|
|
|
|
src += 2;
|
|
|
|
w = AV_RB16(src);
|
|
|
|
src += 2;
|
|
|
|
h = AV_RB16(src);
|
|
|
|
src += 2;
|
|
|
|
enc = AV_RB32(src);
|
|
|
|
src += 4;
|
2006-09-07 04:01:42 +00:00
|
|
|
outptr = c->pic.data[0] + dx * c->bpp2 + dy * c->pic.linesize[0];
|
2006-09-07 04:05:04 +00:00
|
|
|
size_left = buf_size - (src - buf);
|
2013-10-09 10:58:42 +00:00
|
|
|
switch (enc) {
|
2006-09-07 04:01:42 +00:00
|
|
|
case MAGIC_WMVd: // cursor
|
2013-10-09 10:58:42 +00:00
|
|
|
if (size_left < 2 + w * h * c->bpp2 * 2) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR,
|
|
|
|
"Premature end of data! (need %i got %i)\n",
|
|
|
|
2 + w * h * c->bpp2 * 2, size_left);
|
2006-09-07 04:05:04 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2006-09-05 07:31:53 +00:00
|
|
|
src += 2;
|
2013-10-09 10:58:42 +00:00
|
|
|
c->cur_w = w;
|
|
|
|
c->cur_h = h;
|
2006-09-07 04:01:42 +00:00
|
|
|
c->cur_hx = dx;
|
|
|
|
c->cur_hy = dy;
|
2013-10-09 10:58:42 +00:00
|
|
|
if ((c->cur_hx > c->cur_w) || (c->cur_hy > c->cur_h)) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR,
|
|
|
|
"Cursor hot spot is not in image: "
|
|
|
|
"%ix%i of %ix%i cursor size\n",
|
|
|
|
c->cur_hx, c->cur_hy, c->cur_w, c->cur_h);
|
2006-09-07 04:01:42 +00:00
|
|
|
c->cur_hx = c->cur_hy = 0;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
c->curbits = av_realloc(c->curbits, c->cur_w * c->cur_h * c->bpp2);
|
|
|
|
c->curmask = av_realloc(c->curmask, c->cur_w * c->cur_h * c->bpp2);
|
2006-09-07 04:01:42 +00:00
|
|
|
c->screendta = av_realloc(c->screendta, c->cur_w * c->cur_h * c->bpp2);
|
|
|
|
load_cursor(c, src);
|
|
|
|
src += w * h * c->bpp2 * 2;
|
2006-09-05 07:31:53 +00:00
|
|
|
break;
|
|
|
|
case MAGIC_WMVe: // unknown
|
|
|
|
src += 2;
|
|
|
|
break;
|
2006-09-07 04:01:42 +00:00
|
|
|
case MAGIC_WMVf: // update cursor position
|
|
|
|
c->cur_x = dx - c->cur_hx;
|
|
|
|
c->cur_y = dy - c->cur_hy;
|
2006-09-05 07:31:53 +00:00
|
|
|
break;
|
2006-09-07 04:08:34 +00:00
|
|
|
case MAGIC_WMVg: // unknown
|
|
|
|
src += 10;
|
|
|
|
break;
|
|
|
|
case MAGIC_WMVh: // unknown
|
|
|
|
src += 4;
|
|
|
|
break;
|
2006-09-05 07:31:53 +00:00
|
|
|
case MAGIC_WMVi: // ServerInitialization struct
|
|
|
|
c->pic.key_frame = 1;
|
2011-04-29 16:53:57 +00:00
|
|
|
c->pic.pict_type = AV_PICTURE_TYPE_I;
|
2006-09-05 07:31:53 +00:00
|
|
|
depth = *src++;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (depth != c->bpp) {
|
|
|
|
av_log(avctx, AV_LOG_INFO,
|
|
|
|
"Depth mismatch. Container %i bpp, "
|
|
|
|
"Frame data: %i bpp\n",
|
|
|
|
c->bpp, depth);
|
2006-09-05 07:31:53 +00:00
|
|
|
}
|
|
|
|
src++;
|
|
|
|
c->bigendian = *src++;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (c->bigendian & (~1)) {
|
|
|
|
av_log(avctx, AV_LOG_INFO,
|
|
|
|
"Invalid header: bigendian flag = %i\n", c->bigendian);
|
2006-09-05 07:31:53 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
// skip the rest of pixel format data
|
2006-09-05 07:31:53 +00:00
|
|
|
src += 13;
|
|
|
|
break;
|
2006-09-07 04:08:34 +00:00
|
|
|
case MAGIC_WMVj: // unknown
|
|
|
|
src += 2;
|
|
|
|
break;
|
2006-09-05 07:31:53 +00:00
|
|
|
case 0x00000000: // raw rectangle data
|
2013-10-09 10:58:42 +00:00
|
|
|
if ((dx + w > c->width) || (dy + h > c->height)) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR,
|
|
|
|
"Incorrect frame size: %ix%i+%ix%i of %ix%i\n",
|
|
|
|
w, h, dx, dy, c->width, c->height);
|
2006-09-05 07:31:53 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
if (size_left < w * h * c->bpp2) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR,
|
|
|
|
"Premature end of data! (need %i got %i)\n",
|
|
|
|
w * h * c->bpp2, size_left);
|
2006-09-07 04:05:04 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
paint_raw(outptr, w, h, src, c->bpp2, c->bigendian,
|
|
|
|
c->pic.linesize[0]);
|
2006-09-05 07:31:53 +00:00
|
|
|
src += w * h * c->bpp2;
|
|
|
|
break;
|
|
|
|
case 0x00000005: // HexTile encoded rectangle
|
2013-10-09 10:58:42 +00:00
|
|
|
if ((dx + w > c->width) || (dy + h > c->height)) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR,
|
|
|
|
"Incorrect frame size: %ix%i+%ix%i of %ix%i\n",
|
|
|
|
w, h, dx, dy, c->width, c->height);
|
2006-09-05 07:31:53 +00:00
|
|
|
return -1;
|
2006-09-05 04:37:14 +00:00
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
res = decode_hextile(c, outptr, src, size_left, w, h,
|
|
|
|
c->pic.linesize[0]);
|
|
|
|
if (res < 0)
|
2006-09-05 07:31:53 +00:00
|
|
|
return -1;
|
|
|
|
src += res;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Unsupported block type 0x%08X\n", enc);
|
|
|
|
chunks = 0; // leave chunks decoding loop
|
2006-09-05 04:37:14 +00:00
|
|
|
}
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
if (c->screendta) {
|
2006-09-07 04:01:42 +00:00
|
|
|
int i;
|
2013-10-09 10:58:42 +00:00
|
|
|
// save screen data before painting cursor
|
2006-09-07 04:01:42 +00:00
|
|
|
w = c->cur_w;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (c->width < c->cur_x + w)
|
|
|
|
w = c->width - c->cur_x;
|
2006-09-07 04:01:42 +00:00
|
|
|
h = c->cur_h;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (c->height < c->cur_y + h)
|
|
|
|
h = c->height - c->cur_y;
|
2006-09-07 04:01:42 +00:00
|
|
|
dx = c->cur_x;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (dx < 0) {
|
2006-09-07 04:01:42 +00:00
|
|
|
w += dx;
|
|
|
|
dx = 0;
|
|
|
|
}
|
|
|
|
dy = c->cur_y;
|
2013-10-09 10:58:42 +00:00
|
|
|
if (dy < 0) {
|
2006-09-07 04:01:42 +00:00
|
|
|
h += dy;
|
|
|
|
dy = 0;
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
if ((w > 0) && (h > 0)) {
|
2006-09-07 04:01:42 +00:00
|
|
|
outptr = c->pic.data[0] + dx * c->bpp2 + dy * c->pic.linesize[0];
|
2013-10-09 10:58:42 +00:00
|
|
|
for (i = 0; i < h; i++) {
|
|
|
|
memcpy(c->screendta + i * c->cur_w * c->bpp2, outptr,
|
|
|
|
w * c->bpp2);
|
2006-09-07 04:01:42 +00:00
|
|
|
outptr += c->pic.linesize[0];
|
|
|
|
}
|
|
|
|
outptr = c->pic.data[0];
|
|
|
|
put_cursor(outptr, c->pic.linesize[0], c, c->cur_x, c->cur_y);
|
|
|
|
}
|
|
|
|
}
|
2013-10-09 10:58:42 +00:00
|
|
|
*got_frame = 1;
|
2012-11-21 20:34:46 +00:00
|
|
|
if ((ret = av_frame_ref(data, &c->pic)) < 0)
|
|
|
|
return ret;
|
2006-09-05 04:37:14 +00:00
|
|
|
|
|
|
|
/* always report that the buffer was completely consumed */
|
|
|
|
return buf_size;
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int decode_init(AVCodecContext *avctx)
|
2006-09-05 04:37:14 +00:00
|
|
|
{
|
2007-04-08 20:24:16 +00:00
|
|
|
VmncContext * const c = avctx->priv_data;
|
2006-09-05 04:37:14 +00:00
|
|
|
|
2013-10-09 10:58:42 +00:00
|
|
|
c->avctx = avctx;
|
|
|
|
c->width = avctx->width;
|
2006-09-05 04:37:14 +00:00
|
|
|
c->height = avctx->height;
|
2013-10-09 10:58:42 +00:00
|
|
|
c->bpp = avctx->bits_per_coded_sample;
|
|
|
|
c->bpp2 = c->bpp / 8;
|
2006-09-05 04:37:14 +00:00
|
|
|
|
2013-10-09 10:58:42 +00:00
|
|
|
switch (c->bpp) {
|
2006-09-05 04:37:14 +00:00
|
|
|
case 8:
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_PAL8;
|
2006-09-05 04:37:14 +00:00
|
|
|
break;
|
|
|
|
case 16:
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGB555;
|
2006-09-05 04:37:14 +00:00
|
|
|
break;
|
|
|
|
case 32:
|
2012-10-06 10:10:34 +00:00
|
|
|
avctx->pix_fmt = AV_PIX_FMT_RGB32;
|
2006-09-05 04:37:14 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Unsupported bitdepth %i\n", c->bpp);
|
2012-02-29 03:00:48 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2006-09-05 04:37:14 +00:00
|
|
|
}
|
|
|
|
|
2013-02-13 07:50:04 +00:00
|
|
|
avcodec_get_frame_defaults(&c->pic);
|
|
|
|
|
2006-09-05 04:37:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-21 03:11:20 +00:00
|
|
|
static av_cold int decode_end(AVCodecContext *avctx)
|
2006-09-05 04:37:14 +00:00
|
|
|
{
|
2007-04-08 20:24:16 +00:00
|
|
|
VmncContext * const c = avctx->priv_data;
|
2006-09-05 04:37:14 +00:00
|
|
|
|
2012-11-21 20:34:46 +00:00
|
|
|
av_frame_unref(&c->pic);
|
2006-09-05 04:37:14 +00:00
|
|
|
|
2006-09-07 04:01:42 +00:00
|
|
|
av_free(c->curbits);
|
|
|
|
av_free(c->curmask);
|
|
|
|
av_free(c->screendta);
|
2006-09-05 04:37:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 21:40:11 +00:00
|
|
|
AVCodec ff_vmnc_decoder = {
|
2011-07-17 10:54:31 +00:00
|
|
|
.name = "vmnc",
|
2013-10-03 20:57:53 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("VMware Screen Codec / VMware Video"),
|
2011-07-17 10:54:31 +00:00
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_VMNC,
|
2011-07-17 10:54:31 +00:00
|
|
|
.priv_data_size = sizeof(VmncContext),
|
|
|
|
.init = decode_init,
|
|
|
|
.close = decode_end,
|
|
|
|
.decode = decode_frame,
|
|
|
|
.capabilities = CODEC_CAP_DR1,
|
2006-09-05 04:37:14 +00:00
|
|
|
};
|