Files
FFmpeg/libavcodec/vmnc.c
T

583 lines
18 KiB
C
Raw Normal View History

2006-09-05 04:37:14 +00:00
/*
* VMware Screen Codec (VMnc) decoder
* Copyright (c) 2006 Konstantin Shishkov
*
* This file is part of FFmpeg.
*
* FFmpeg 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
* version 2.1 of the License, or (at your option) any later version.
2006-09-05 04:37:14 +00:00
*
* FFmpeg 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
* License along with FFmpeg; 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
*/
/**
* @file
2006-09-05 04:37:14 +00:00
* VMware Screen Codec (VMnc) decoder
* As Alex Beregszaszi discovered, this is effectively RFB data dump
*/
2012-08-06 16:49:32 +03:00
#include "libavutil/common.h"
2006-09-05 04:37:14 +00:00
#include "avcodec.h"
#include "codec_internal.h"
#include "decode.h"
2013-10-09 05:13:59 +02:00
#include "bytestream.h"
2006-09-05 04:37:14 +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;
2013-11-09 10:14:46 +01:00
AVFrame *pic;
2006-09-05 04:37:14 +00:00
int bpp;
int bpp2;
int bigendian;
uint8_t pal[768];
int width, height;
2013-10-09 05:13:59 +02:00
GetByteContext gb;
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 12:58:42 +02: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 05:13:59 +02:00
static av_always_inline int vmnc_get_pixel(GetByteContext *gb, int bpp, int be)
2013-10-09 12:58:42 +02:00
{
switch (bpp * 2 + be) {
2006-09-05 04:37:14 +00:00
case 2:
2013-10-09 12:58:42 +02:00
case 3:
2013-10-09 05:13:59 +02:00
return bytestream2_get_byte(gb);
2013-10-09 12:58:42 +02:00
case 4:
2013-10-09 05:13:59 +02:00
return bytestream2_get_le16(gb);
2013-10-09 12:58:42 +02:00
case 5:
2013-10-09 05:13:59 +02:00
return bytestream2_get_be16(gb);
2013-10-09 12:58:42 +02:00
case 8:
2013-10-09 05:13:59 +02:00
return bytestream2_get_le32(gb);
2013-10-09 12:58:42 +02:00
case 9:
2013-10-09 05:13:59 +02:00
return bytestream2_get_be32(gb);
default: return 0;
2006-09-05 04:37:14 +00:00
}
}
2013-10-09 05:13:59 +02:00
static void load_cursor(VmncContext *c)
2006-09-07 04:01:42 +00:00
{
int i, j, p;
2013-10-09 12:58:42 +02: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 12:58:42 +02:00
for (j = 0; j < c->cur_h; j++) {
for (i = 0; i < c->cur_w; i++) {
2013-10-09 05:13:59 +02:00
p = vmnc_get_pixel(&c->gb, bpp, c->bigendian);
2013-10-09 12:58:42 +02: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 12:58:42 +02: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 12:58:42 +02:00
for (j = 0; j < c->cur_h; j++) {
for (i = 0; i < c->cur_w; i++) {
2013-10-09 05:13:59 +02:00
p = vmnc_get_pixel(&c->gb, bpp, c->bigendian);
2013-10-09 12:58:42 +02: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)
{
int i, j;
2006-09-07 04:01:42 +00:00
int w, h, x, y;
w = c->cur_w;
2013-10-09 12:58:42 +02: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 12:58:42 +02: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 12:58:42 +02:00
if (x < 0) {
2006-09-07 04:01:42 +00:00
w += x;
2013-10-09 12:58:42 +02:00
x = 0;
2006-09-07 04:01:42 +00:00
}
2013-10-09 12:58:42 +02:00
if (y < 0) {
2006-09-07 04:01:42 +00:00
h += y;
2013-10-09 12:58:42 +02:00
y = 0;
2006-09-07 04:01:42 +00:00
}
2013-10-09 12:58:42 +02:00
if ((w < 1) || (h < 1))
return;
2006-09-07 04:01:42 +00:00
dst += x * c->bpp2 + y * stride;
2013-10-09 12:58:42 +02: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 12:58:42 +02:00
cd += c->cur_w;
2006-09-07 04:01:42 +00:00
dst += stride;
}
2013-10-09 12:58:42 +02: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 12:58:42 +02: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 12:58:42 +02:00
cd += c->cur_w;
2006-09-07 04:01:42 +00:00
dst += stride;
}
2013-10-09 12:58:42 +02: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 12:58:42 +02: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 12:58:42 +02:00
cd += c->cur_w;
2006-09-07 04:01:42 +00:00
dst += stride;
}
}
}
/* fill rectangle with given color */
2013-10-09 12:58:42 +02: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 12:58:42 +02: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 12:58:42 +02: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 12:58:42 +02:00
for (i = 0; i < w; i++)
2006-09-05 04:37:14 +00:00
*dst2++ = color;
dst += stride;
}
2013-10-09 12:58:42 +02: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 12:58:42 +02:00
for (i = 0; i < w; i++)
2006-09-05 04:37:14 +00:00
dst2[i] = color;
dst += stride;
}
}
}
2013-10-09 12:58:42 +02:00
static av_always_inline void paint_raw(uint8_t *dst, int w, int h,
2013-10-09 05:13:59 +02:00
GetByteContext *gb, int bpp,
2013-10-09 12:58:42 +02:00
int be, int stride)
2006-09-05 04:37:14 +00:00
{
int i, j, p;
2013-10-09 12:58:42 +02:00
for (j = 0; j < h; j++) {
for (i = 0; i < w; i++) {
2013-10-09 05:13:59 +02:00
p = vmnc_get_pixel(gb, bpp, be);
2013-10-09 12:58:42 +02:00
switch (bpp) {
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 05:13:59 +02:00
static int decode_hextile(VmncContext *c, uint8_t* dst, GetByteContext *gb,
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 12:58:42 +02:00
for (j = 0; j < h; j += 16) {
2006-09-05 04:37:14 +00:00
dst2 = dst;
2013-10-09 12:58:42 +02:00
bw = 16;
if (j + 16 > h)
bh = h - j;
for (i = 0; i < w; i += 16, dst2 += 16 * bpp) {
2013-10-09 05:13:59 +02:00
if (bytestream2_get_bytes_left(gb) <= 0) {
2006-09-07 04:05:04 +00:00
av_log(c->avctx, AV_LOG_ERROR, "Premature end of data!\n");
2013-10-09 05:58:59 +02:00
return AVERROR_INVALIDDATA;
2006-09-07 04:05:04 +00:00
}
2013-10-09 12:58:42 +02:00
if (i + 16 > w)
bw = w - i;
2013-10-09 05:13:59 +02:00
flags = bytestream2_get_byte(gb);
2013-10-09 12:58:42 +02:00
if (flags & HT_RAW) {
2013-10-09 05:13:59 +02:00
if (bytestream2_get_bytes_left(gb) < bw * bh * bpp) {
2006-09-07 04:05:04 +00:00
av_log(c->avctx, AV_LOG_ERROR, "Premature end of data!\n");
2013-10-09 05:58:59 +02:00
return AVERROR_INVALIDDATA;
2006-09-07 04:05:04 +00:00
}
2013-10-09 05:13:59 +02:00
paint_raw(dst2, bw, bh, gb, bpp, c->bigendian, stride);
2006-09-05 04:37:14 +00:00
} else {
2013-10-09 05:13:59 +02:00
if (flags & HT_BKG)
bg = vmnc_get_pixel(gb, bpp, c->bigendian);
if (flags & HT_FG)
fg = vmnc_get_pixel(gb, bpp, c->bigendian);
2006-09-05 04:37:14 +00:00
rects = 0;
2013-10-09 12:58:42 +02:00
if (flags & HT_SUB)
2013-10-09 05:13:59 +02:00
rects = bytestream2_get_byte(gb);
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 05:13:59 +02:00
if (bytestream2_get_bytes_left(gb) < rects * (color * bpp + 2)) {
2006-09-07 04:05:04 +00:00
av_log(c->avctx, AV_LOG_ERROR, "Premature end of data!\n");
2013-10-09 05:58:59 +02:00
return AVERROR_INVALIDDATA;
2006-09-07 04:05:04 +00:00
}
2013-10-09 12:58:42 +02:00
for (k = 0; k < rects; k++) {
int rect_x, rect_y, rect_w, rect_h;
2013-10-09 05:13:59 +02:00
if (color)
fg = vmnc_get_pixel(gb, bpp, c->bigendian);
xy = bytestream2_get_byte(gb);
wh = bytestream2_get_byte(gb);
rect_x = xy >> 4;
rect_y = xy & 0xF;
rect_w = (wh >> 4) + 1;
rect_h = (wh & 0xF) + 1;
if (rect_x + rect_w > w - i || rect_y + rect_h > h - j) {
av_log(c->avctx, AV_LOG_ERROR, "Rectangle outside picture\n");
return AVERROR_INVALIDDATA;
}
paint_rect(dst2, rect_x, rect_y,
rect_w, rect_h, fg, bpp, stride);
2006-09-05 04:37:14 +00:00
}
}
}
dst += stride * 16;
}
2013-10-09 05:13:59 +02:00
return 0;
2006-09-05 04:37:14 +00:00
}
2013-10-09 05:51:20 +02:00
static void reset_buffers(VmncContext *c)
{
av_freep(&c->curbits);
av_freep(&c->curmask);
av_freep(&c->screendta);
c->cur_w = c->cur_h = 0;
c->cur_hx = c->cur_hy = 0;
2013-10-09 05:51:20 +02:00
}
static int decode_frame(AVCodecContext *avctx, AVFrame *rframe,
int *got_frame, AVPacket *avpkt)
2006-09-05 04:37:14 +00:00
{
const uint8_t *buf = avpkt->data;
2013-10-09 12:58:42 +02:00
int buf_size = avpkt->size;
2007-04-08 20:24:16 +00:00
VmncContext * const c = avctx->priv_data;
2013-10-09 05:13:59 +02:00
GetByteContext *gb = &c->gb;
2006-09-05 04:37:14 +00:00
uint8_t *outptr;
2012-11-21 21:34:46 +01:00
int dx, dy, w, h, depth, enc, chunks, res, size_left, ret;
2006-09-05 04:37:14 +00:00
bytestream2_init(gb, buf, buf_size);
bytestream2_skip(gb, 2);
chunks = bytestream2_get_be16(gb);
if (12LL * chunks > bytestream2_get_bytes_left(gb))
return AVERROR_INVALIDDATA;
if ((ret = ff_reget_buffer(avctx, c->pic, 0)) < 0)
2012-11-21 21:34:46 +01:00
return ret;
2006-09-05 04:37:14 +00:00
2013-11-09 10:14:46 +01:00
c->pic->key_frame = 0;
c->pic->pict_type = AV_PICTURE_TYPE_P;
2006-09-05 04:37:14 +00:00
2013-10-09 12:58:42 +02: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 12:58:42 +02: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 12:58:42 +02: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 12:58:42 +02:00
if (dx < 0) {
2006-09-07 04:01:42 +00:00
w += dx;
dx = 0;
}
dy = c->cur_y;
2013-10-09 12:58:42 +02:00
if (dy < 0) {
2006-09-07 04:01:42 +00:00
h += dy;
dy = 0;
}
2013-10-09 12:58:42 +02:00
if ((w > 0) && (h > 0)) {
2013-11-09 10:14:46 +01:00
outptr = c->pic->data[0] + dx * c->bpp2 + dy * c->pic->linesize[0];
2013-10-09 12:58:42 +02:00
for (i = 0; i < h; i++) {
memcpy(outptr, c->screendta + i * c->cur_w * c->bpp2,
w * c->bpp2);
2013-11-09 10:14:46 +01:00
outptr += c->pic->linesize[0];
2006-09-07 04:01:42 +00:00
}
}
}
2013-10-09 12:58:42 +02:00
while (chunks--) {
if (bytestream2_get_bytes_left(gb) < 12) {
av_log(avctx, AV_LOG_ERROR, "Premature end of data!\n");
return -1;
}
2013-10-09 05:13:59 +02:00
dx = bytestream2_get_be16(gb);
dy = bytestream2_get_be16(gb);
w = bytestream2_get_be16(gb);
h = bytestream2_get_be16(gb);
enc = bytestream2_get_be32(gb);
2017-05-21 13:22:16 +02: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);
return AVERROR_INVALIDDATA;
}
2013-11-09 10:14:46 +01:00
outptr = c->pic->data[0] + dx * c->bpp2 + dy * c->pic->linesize[0];
2013-10-09 05:13:59 +02:00
size_left = bytestream2_get_bytes_left(gb);
2013-10-09 12:58:42 +02:00
switch (enc) {
2006-09-07 04:01:42 +00:00
case MAGIC_WMVd: // cursor
2012-12-01 22:09:14 +01:00
if (w*(int64_t)h*c->bpp2 > INT_MAX/2 - 2) {
av_log(avctx, AV_LOG_ERROR, "dimensions too large\n");
return AVERROR_INVALIDDATA;
}
2013-10-09 12:58:42 +02: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);
2013-10-09 05:58:59 +02:00
return AVERROR_INVALIDDATA;
2006-09-07 04:05:04 +00:00
}
2013-10-09 05:13:59 +02:00
bytestream2_skip(gb, 2);
2013-10-09 12:58:42 +02: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 12:58:42 +02: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 05:51:20 +02:00
if (c->cur_w * c->cur_h >= INT_MAX / c->bpp2) {
reset_buffers(c);
return AVERROR(EINVAL);
} else {
int screen_size = c->cur_w * c->cur_h * c->bpp2;
if ((ret = av_reallocp(&c->curbits, screen_size)) < 0 ||
(ret = av_reallocp(&c->curmask, screen_size)) < 0 ||
(ret = av_reallocp(&c->screendta, screen_size)) < 0) {
reset_buffers(c);
return ret;
}
}
2013-10-09 05:13:59 +02:00
load_cursor(c);
break;
case MAGIC_WMVe: // unknown
2013-10-09 05:13:59 +02:00
bytestream2_skip(gb, 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;
break;
case MAGIC_WMVg: // unknown
2013-10-09 05:13:59 +02:00
bytestream2_skip(gb, 10);
break;
case MAGIC_WMVh: // unknown
2013-10-09 05:13:59 +02:00
bytestream2_skip(gb, 4);
break;
case MAGIC_WMVi: // ServerInitialization struct
2013-11-09 10:14:46 +01:00
c->pic->key_frame = 1;
c->pic->pict_type = AV_PICTURE_TYPE_I;
2013-10-09 05:13:59 +02:00
depth = bytestream2_get_byte(gb);
2013-10-09 12:58:42 +02:00
if (depth != c->bpp) {
2015-05-20 18:50:38 +02:00
av_log(avctx, AV_LOG_INFO,
"Depth mismatch. Container %i bpp, "
"Frame data: %i bpp\n",
c->bpp, depth);
}
2013-10-09 05:13:59 +02:00
bytestream2_skip(gb, 1);
c->bigendian = bytestream2_get_byte(gb);
2013-10-09 12:58:42 +02:00
if (c->bigendian & (~1)) {
av_log(avctx, AV_LOG_INFO,
"Invalid header: bigendian flag = %i\n", c->bigendian);
2013-10-09 05:58:59 +02:00
return AVERROR_INVALIDDATA;
}
2013-10-09 05:13:59 +02:00
//skip the rest of pixel format data
bytestream2_skip(gb, 13);
break;
case MAGIC_WMVj: // unknown
2013-10-09 05:13:59 +02:00
bytestream2_skip(gb, 2);
break;
case 0x00000000: // raw rectangle data
2013-10-09 12:58:42 +02: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);
2013-10-09 05:58:59 +02:00
return AVERROR_INVALIDDATA;
2006-09-07 04:05:04 +00:00
}
2013-10-09 05:13:59 +02:00
paint_raw(outptr, w, h, gb, c->bpp2, c->bigendian,
2013-11-09 10:14:46 +01:00
c->pic->linesize[0]);
break;
case 0x00000005: // HexTile encoded rectangle
2013-11-09 10:14:46 +01:00
res = decode_hextile(c, outptr, gb, w, h, c->pic->linesize[0]);
2013-10-09 12:58:42 +02:00
if (res < 0)
2013-10-09 05:58:59 +02:00
return 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 12:58:42 +02:00
if (c->screendta) {
2006-09-07 04:01:42 +00:00
int i;
2013-10-09 12:58:42 +02:00
// save screen data before painting cursor
2006-09-07 04:01:42 +00:00
w = c->cur_w;
2013-10-09 12:58:42 +02: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 12:58:42 +02: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 12:58:42 +02:00
if (dx < 0) {
2006-09-07 04:01:42 +00:00
w += dx;
dx = 0;
}
dy = c->cur_y;
2013-10-09 12:58:42 +02:00
if (dy < 0) {
2006-09-07 04:01:42 +00:00
h += dy;
dy = 0;
}
2013-10-09 12:58:42 +02:00
if ((w > 0) && (h > 0)) {
2013-11-09 10:14:46 +01:00
outptr = c->pic->data[0] + dx * c->bpp2 + dy * c->pic->linesize[0];
2013-10-09 12:58:42 +02:00
for (i = 0; i < h; i++) {
memcpy(c->screendta + i * c->cur_w * c->bpp2, outptr,
w * c->bpp2);
2013-11-09 10:14:46 +01:00
outptr += c->pic->linesize[0];
2006-09-07 04:01:42 +00:00
}
2013-11-09 10:14:46 +01:00
outptr = c->pic->data[0];
put_cursor(outptr, c->pic->linesize[0], c, c->cur_x, c->cur_y);
2006-09-07 04:01:42 +00:00
}
}
2013-10-09 12:58:42 +02:00
*got_frame = 1;
if ((ret = av_frame_ref(rframe, c->pic)) < 0)
2012-11-21 21:34:46 +01:00
return ret;
2006-09-05 04:37:14 +00:00
/* always report that the buffer was completely consumed */
return buf_size;
}
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 12:58:42 +02:00
c->avctx = avctx;
c->width = avctx->width;
2006-09-05 04:37:14 +00:00
c->height = avctx->height;
2013-10-09 12:58:42 +02:00
c->bpp = avctx->bits_per_coded_sample;
2006-09-05 04:37:14 +00:00
2013-10-09 12:58:42 +02:00
switch (c->bpp) {
2006-09-05 04:37:14 +00:00
case 8:
avctx->pix_fmt = AV_PIX_FMT_PAL8;
2006-09-05 04:37:14 +00:00
break;
case 16:
avctx->pix_fmt = AV_PIX_FMT_RGB555;
2006-09-05 04:37:14 +00:00
break;
2015-05-19 16:57:46 +01:00
case 24:
/* 24 bits is not technically supported, but some clients might
* mistakenly set it, so let's assume they actually meant 32 bits */
2015-05-20 18:50:38 +02:00
c->bpp = 32;
2006-09-05 04:37:14 +00:00
case 32:
avctx->pix_fmt = AV_PIX_FMT_0RGB32;
2006-09-05 04:37:14 +00:00
break;
default:
av_log(avctx, AV_LOG_ERROR, "Unsupported bitdepth %i\n", c->bpp);
return AVERROR_INVALIDDATA;
2006-09-05 04:37:14 +00:00
}
2015-05-20 18:50:38 +02:00
c->bpp2 = c->bpp / 8;
2006-09-05 04:37:14 +00:00
2013-11-09 10:14:46 +01:00
c->pic = av_frame_alloc();
if (!c->pic)
return AVERROR(ENOMEM);
2013-02-13 08:50:04 +01:00
2006-09-05 04:37:14 +00:00
return 0;
}
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
2013-11-09 10:14:46 +01:00
av_frame_free(&c->pic);
2006-09-05 04:37:14 +00:00
2013-10-09 12:21:14 +00:00
av_freep(&c->curbits);
av_freep(&c->curmask);
av_freep(&c->screendta);
2006-09-05 04:37:14 +00:00
return 0;
}
const FFCodec ff_vmnc_decoder = {
.p.name = "vmnc",
CODEC_LONG_NAME("VMware Screen Codec / VMware Video"),
.p.type = AVMEDIA_TYPE_VIDEO,
.p.id = AV_CODEC_ID_VMNC,
.priv_data_size = sizeof(VmncContext),
.init = decode_init,
.close = decode_end,
FF_CODEC_DECODE_CB(decode_frame),
.p.capabilities = AV_CODEC_CAP_DR1,
2006-09-05 04:37:14 +00:00
};