libavcodec/vmnc.c
eb57c889
 /*
  * VMware Screen Codec (VMnc) decoder
  * Copyright (c) 2006 Konstantin Shishkov
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
eb57c889
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
eb57c889
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
eb57c889
  * 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
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
eb57c889
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
ba87f080
  * @file
eb57c889
  * VMware Screen Codec (VMnc) decoder
  * As Alex Beregszaszi discovered, this is effectively RFB data dump
  */
 
 #include <stdio.h>
 #include <stdlib.h>
 
1d9c2dc8
 #include "libavutil/common.h"
6a5d31ac
 #include "libavutil/intreadwrite.h"
eb57c889
 #include "avcodec.h"
759001c5
 #include "internal.h"
61cd19b8
 #include "bytestream.h"
eb57c889
 
805934b3
 enum EncTypes {
     MAGIC_WMVd = 0x574D5664,
     MAGIC_WMVe,
     MAGIC_WMVf,
     MAGIC_WMVg,
     MAGIC_WMVh,
     MAGIC_WMVi,
     MAGIC_WMVj
 };
eb57c889
 
 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;
3c8ea9d4
     AVFrame *pic;
eb57c889
 
     int bpp;
     int bpp2;
     int bigendian;
     uint8_t pal[768];
     int width, height;
61cd19b8
     GetByteContext gb;
54b55c8d
 
     /* cursor data */
     int cur_w, cur_h;
     int cur_x, cur_y;
     int cur_hx, cur_hy;
a66aa0da
     uint8_t *curbits, *curmask;
     uint8_t *screendta;
eb57c889
 } VmncContext;
 
 /* read pixel value from stream */
61cd19b8
 static av_always_inline int vmnc_get_pixel(GetByteContext *gb, int bpp, int be)
a66aa0da
 {
     switch (bpp * 2 + be) {
eb57c889
     case 2:
a66aa0da
     case 3:
61cd19b8
         return bytestream2_get_byte(gb);
a66aa0da
     case 4:
61cd19b8
         return bytestream2_get_le16(gb);
a66aa0da
     case 5:
61cd19b8
         return bytestream2_get_be16(gb);
a66aa0da
     case 8:
61cd19b8
         return bytestream2_get_le32(gb);
a66aa0da
     case 9:
61cd19b8
         return bytestream2_get_be32(gb);
     default: return 0;
eb57c889
     }
 }
 
61cd19b8
 static void load_cursor(VmncContext *c)
54b55c8d
 {
     int i, j, p;
a66aa0da
     const int bpp   = c->bpp2;
     uint8_t *dst8   =             c->curbits;
     uint16_t *dst16 = (uint16_t *)c->curbits;
     uint32_t *dst32 = (uint32_t *)c->curbits;
54b55c8d
 
a66aa0da
     for (j = 0; j < c->cur_h; j++) {
         for (i = 0; i < c->cur_w; i++) {
61cd19b8
             p = vmnc_get_pixel(&c->gb, bpp, c->bigendian);
a66aa0da
             if (bpp == 1)
                 *dst8++ = p;
             if (bpp == 2)
                 *dst16++ = p;
             if (bpp == 4)
                 *dst32++ = p;
54b55c8d
         }
     }
a66aa0da
     dst8  =            c->curmask;
54b55c8d
     dst16 = (uint16_t*)c->curmask;
     dst32 = (uint32_t*)c->curmask;
a66aa0da
     for (j = 0; j < c->cur_h; j++) {
         for (i = 0; i < c->cur_w; i++) {
61cd19b8
             p = vmnc_get_pixel(&c->gb, bpp, c->bigendian);
a66aa0da
             if (bpp == 1)
                 *dst8++ = p;
             if (bpp == 2)
                 *dst16++ = p;
             if (bpp == 4)
                 *dst32++ = p;
54b55c8d
         }
     }
 }
 
 static void put_cursor(uint8_t *dst, int stride, VmncContext *c, int dx, int dy)
 {
36c32bdd
     int i, j;
54b55c8d
     int w, h, x, y;
     w = c->cur_w;
a66aa0da
     if (c->width < c->cur_x + c->cur_w)
         w = c->width - c->cur_x;
54b55c8d
     h = c->cur_h;
a66aa0da
     if (c->height < c->cur_y + c->cur_h)
         h = c->height - c->cur_y;
54b55c8d
     x = c->cur_x;
     y = c->cur_y;
a66aa0da
     if (x < 0) {
54b55c8d
         w += x;
a66aa0da
         x  = 0;
54b55c8d
     }
a66aa0da
     if (y < 0) {
54b55c8d
         h += y;
a66aa0da
         y  = 0;
54b55c8d
     }
 
a66aa0da
     if ((w < 1) || (h < 1))
         return;
54b55c8d
     dst += x * c->bpp2 + y * stride;
 
a66aa0da
     if (c->bpp2 == 1) {
         uint8_t *cd = c->curbits, *msk = c->curmask;
         for (j = 0; j < h; j++) {
             for (i = 0; i < w; i++)
54b55c8d
                 dst[i] = (dst[i] & cd[i]) ^ msk[i];
             msk += c->cur_w;
a66aa0da
             cd  += c->cur_w;
54b55c8d
             dst += stride;
         }
a66aa0da
     } 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++) {
54b55c8d
             dst2 = (uint16_t*)dst;
a66aa0da
             for (i = 0; i < w; i++)
54b55c8d
                 dst2[i] = (dst2[i] & cd[i]) ^ msk[i];
             msk += c->cur_w;
a66aa0da
             cd  += c->cur_w;
54b55c8d
             dst += stride;
         }
a66aa0da
     } 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++) {
54b55c8d
             dst2 = (uint32_t*)dst;
a66aa0da
             for (i = 0; i < w; i++)
54b55c8d
                 dst2[i] = (dst2[i] & cd[i]) ^ msk[i];
             msk += c->cur_w;
a66aa0da
             cd  += c->cur_w;
54b55c8d
             dst += stride;
         }
     }
 }
 
56cc85a0
 /* fill rectangle with given color */
a66aa0da
 static av_always_inline void paint_rect(uint8_t *dst, int dx, int dy,
                                         int w, int h, int color,
                                         int bpp, int stride)
eb57c889
 {
     int i, j;
     dst += dx * bpp + dy * stride;
a66aa0da
     if (bpp == 1) {
         for (j = 0; j < h; j++) {
eb57c889
             memset(dst, color, w);
             dst += stride;
         }
a66aa0da
     } else if (bpp == 2) {
         uint16_t *dst2;
         for (j = 0; j < h; j++) {
eb57c889
             dst2 = (uint16_t*)dst;
a66aa0da
             for (i = 0; i < w; i++)
eb57c889
                 *dst2++ = color;
             dst += stride;
         }
a66aa0da
     } else if (bpp == 4) {
         uint32_t *dst2;
         for (j = 0; j < h; j++) {
eb57c889
             dst2 = (uint32_t*)dst;
a66aa0da
             for (i = 0; i < w; i++)
eb57c889
                 dst2[i] = color;
             dst += stride;
         }
     }
 }
 
a66aa0da
 static av_always_inline void paint_raw(uint8_t *dst, int w, int h,
61cd19b8
                                        GetByteContext *gb, int bpp,
a66aa0da
                                        int be, int stride)
eb57c889
 {
     int i, j, p;
a66aa0da
     for (j = 0; j < h; j++) {
         for (i = 0; i < w; i++) {
61cd19b8
             p = vmnc_get_pixel(gb, bpp, be);
a66aa0da
             switch (bpp) {
c0d6fc1f
             case 1:
                 dst[i] = p;
                 break;
             case 2:
                 ((uint16_t*)dst)[i] = p;
                 break;
             case 4:
                 ((uint32_t*)dst)[i] = p;
                 break;
             }
eb57c889
         }
         dst += stride;
     }
 }
 
61cd19b8
 static int decode_hextile(VmncContext *c, uint8_t* dst, GetByteContext *gb,
                           int w, int h, int stride)
eb57c889
 {
     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;
 
a66aa0da
     for (j = 0; j < h; j += 16) {
eb57c889
         dst2 = dst;
a66aa0da
         bw   = 16;
         if (j + 16 > h)
             bh = h - j;
         for (i = 0; i < w; i += 16, dst2 += 16 * bpp) {
61cd19b8
             if (bytestream2_get_bytes_left(gb) <= 0) {
096bc417
                 av_log(c->avctx, AV_LOG_ERROR, "Premature end of data!\n");
071e29af
                 return AVERROR_INVALIDDATA;
096bc417
             }
a66aa0da
             if (i + 16 > w)
                 bw = w - i;
61cd19b8
             flags = bytestream2_get_byte(gb);
a66aa0da
             if (flags & HT_RAW) {
61cd19b8
                 if (bytestream2_get_bytes_left(gb) < bw * bh * bpp) {
096bc417
                     av_log(c->avctx, AV_LOG_ERROR, "Premature end of data!\n");
071e29af
                     return AVERROR_INVALIDDATA;
096bc417
                 }
61cd19b8
                 paint_raw(dst2, bw, bh, gb, bpp, c->bigendian, stride);
eb57c889
             } else {
61cd19b8
                 if (flags & HT_BKG)
                     bg = vmnc_get_pixel(gb, bpp, c->bigendian);
                 if (flags & HT_FG)
                     fg = vmnc_get_pixel(gb, bpp, c->bigendian);
eb57c889
                 rects = 0;
a66aa0da
                 if (flags & HT_SUB)
61cd19b8
                     rects = bytestream2_get_byte(gb);
096bc417
                 color = !!(flags & HT_CLR);
eb57c889
 
                 paint_rect(dst2, 0, 0, bw, bh, bg, bpp, stride);
 
61cd19b8
                 if (bytestream2_get_bytes_left(gb) < rects * (color * bpp + 2)) {
096bc417
                     av_log(c->avctx, AV_LOG_ERROR, "Premature end of data!\n");
071e29af
                     return AVERROR_INVALIDDATA;
096bc417
                 }
a66aa0da
                 for (k = 0; k < rects; k++) {
61cd19b8
                     if (color)
                         fg = vmnc_get_pixel(gb, bpp, c->bigendian);
                     xy = bytestream2_get_byte(gb);
                     wh = bytestream2_get_byte(gb);
6ba02602
                     if (   (xy >> 4) + (wh >> 4) + 1 > w - i
                         || (xy & 0xF) + (wh & 0xF)+1 > h - j) {
                         av_log(c->avctx, AV_LOG_ERROR, "Rectangle outside picture\n");
                         return AVERROR_INVALIDDATA;
                     }
61cd19b8
                     paint_rect(dst2, xy >> 4, xy & 0xF,
                                (wh>>4)+1, (wh & 0xF)+1, fg, bpp, stride);
eb57c889
                 }
             }
         }
         dst += stride * 16;
     }
61cd19b8
     return 0;
eb57c889
 }
 
5e992a46
 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;
0391f461
     c->cur_hx = c->cur_hy = 0;
 
5e992a46
 }
 
df9b9567
 static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
                         AVPacket *avpkt)
eb57c889
 {
7a00bbad
     const uint8_t *buf = avpkt->data;
a66aa0da
     int buf_size       = avpkt->size;
e4141433
     VmncContext * const c = avctx->priv_data;
61cd19b8
     GetByteContext *gb = &c->gb;
eb57c889
     uint8_t *outptr;
759001c5
     int dx, dy, w, h, depth, enc, chunks, res, size_left, ret;
eb57c889
 
8af7774c
     if ((ret = ff_reget_buffer(avctx, c->pic)) < 0)
759001c5
         return ret;
eb57c889
 
61cd19b8
     bytestream2_init(gb, buf, buf_size);
 
3c8ea9d4
     c->pic->key_frame = 0;
     c->pic->pict_type = AV_PICTURE_TYPE_P;
eb57c889
 
a66aa0da
     // restore screen after cursor
     if (c->screendta) {
54b55c8d
         int i;
         w = c->cur_w;
a66aa0da
         if (c->width < c->cur_x + w)
             w = c->width - c->cur_x;
54b55c8d
         h = c->cur_h;
a66aa0da
         if (c->height < c->cur_y + h)
             h = c->height - c->cur_y;
54b55c8d
         dx = c->cur_x;
a66aa0da
         if (dx < 0) {
54b55c8d
             w += dx;
             dx = 0;
         }
         dy = c->cur_y;
a66aa0da
         if (dy < 0) {
54b55c8d
             h += dy;
             dy = 0;
         }
a66aa0da
         if ((w > 0) && (h > 0)) {
3c8ea9d4
             outptr = c->pic->data[0] + dx * c->bpp2 + dy * c->pic->linesize[0];
a66aa0da
             for (i = 0; i < h; i++) {
                 memcpy(outptr, c->screendta + i * c->cur_w * c->bpp2,
                        w * c->bpp2);
3c8ea9d4
                 outptr += c->pic->linesize[0];
54b55c8d
             }
         }
     }
61cd19b8
     bytestream2_skip(gb, 2);
     chunks = bytestream2_get_be16(gb);
a66aa0da
     while (chunks--) {
f18db82f
         if (bytestream2_get_bytes_left(gb) < 12) {
39c5cd60
             av_log(avctx, AV_LOG_ERROR, "Premature end of data!\n");
             return -1;
         }
61cd19b8
         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);
3c8ea9d4
         outptr = c->pic->data[0] + dx * c->bpp2 + dy * c->pic->linesize[0];
61cd19b8
         size_left = bytestream2_get_bytes_left(gb);
a66aa0da
         switch (enc) {
54b55c8d
         case MAGIC_WMVd: // cursor
aae47803
             if (w*(int64_t)h*c->bpp2 > INT_MAX/2 - 2) {
                 av_log(avctx, AV_LOG_ERROR, "dimensions too large\n");
                 return AVERROR_INVALIDDATA;
             }
a66aa0da
             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);
071e29af
                 return AVERROR_INVALIDDATA;
096bc417
             }
61cd19b8
             bytestream2_skip(gb, 2);
a66aa0da
             c->cur_w  = w;
             c->cur_h  = h;
54b55c8d
             c->cur_hx = dx;
             c->cur_hy = dy;
a66aa0da
             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);
54b55c8d
                 c->cur_hx = c->cur_hy = 0;
             }
5e992a46
             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;
                 }
             }
61cd19b8
             load_cursor(c);
805934b3
             break;
         case MAGIC_WMVe: // unknown
61cd19b8
             bytestream2_skip(gb, 2);
805934b3
             break;
54b55c8d
         case MAGIC_WMVf: // update cursor position
             c->cur_x = dx - c->cur_hx;
             c->cur_y = dy - c->cur_hy;
805934b3
             break;
7ff0b84f
         case MAGIC_WMVg: // unknown
61cd19b8
             bytestream2_skip(gb, 10);
7ff0b84f
             break;
         case MAGIC_WMVh: // unknown
61cd19b8
             bytestream2_skip(gb, 4);
7ff0b84f
             break;
805934b3
         case MAGIC_WMVi: // ServerInitialization struct
3c8ea9d4
             c->pic->key_frame = 1;
             c->pic->pict_type = AV_PICTURE_TYPE_I;
61cd19b8
             depth = bytestream2_get_byte(gb);
a66aa0da
             if (depth != c->bpp) {
                 av_log(avctx, AV_LOG_INFO,
                        "Depth mismatch. Container %i bpp, "
                        "Frame data: %i bpp\n",
                        c->bpp, depth);
805934b3
             }
61cd19b8
             bytestream2_skip(gb, 1);
             c->bigendian = bytestream2_get_byte(gb);
a66aa0da
             if (c->bigendian & (~1)) {
                 av_log(avctx, AV_LOG_INFO,
                        "Invalid header: bigendian flag = %i\n", c->bigendian);
071e29af
                 return AVERROR_INVALIDDATA;
805934b3
             }
61cd19b8
             //skip the rest of pixel format data
             bytestream2_skip(gb, 13);
805934b3
             break;
7ff0b84f
         case MAGIC_WMVj: // unknown
61cd19b8
             bytestream2_skip(gb, 2);
7ff0b84f
             break;
805934b3
         case 0x00000000: // raw rectangle data
a66aa0da
             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);
071e29af
                 return AVERROR_INVALIDDATA;
805934b3
             }
a66aa0da
             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);
071e29af
                 return AVERROR_INVALIDDATA;
096bc417
             }
61cd19b8
             paint_raw(outptr, w, h, gb, c->bpp2, c->bigendian,
3c8ea9d4
                       c->pic->linesize[0]);
805934b3
             break;
         case 0x00000005: // HexTile encoded rectangle
a66aa0da
             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);
071e29af
                 return AVERROR_INVALIDDATA;
eb57c889
             }
3c8ea9d4
             res = decode_hextile(c, outptr, gb, w, h, c->pic->linesize[0]);
a66aa0da
             if (res < 0)
071e29af
                 return res;
805934b3
             break;
         default:
             av_log(avctx, AV_LOG_ERROR, "Unsupported block type 0x%08X\n", enc);
             chunks = 0; // leave chunks decoding loop
eb57c889
         }
     }
a66aa0da
     if (c->screendta) {
54b55c8d
         int i;
a66aa0da
         // save screen data before painting cursor
54b55c8d
         w = c->cur_w;
a66aa0da
         if (c->width < c->cur_x + w)
             w = c->width - c->cur_x;
54b55c8d
         h = c->cur_h;
a66aa0da
         if (c->height < c->cur_y + h)
             h = c->height - c->cur_y;
54b55c8d
         dx = c->cur_x;
a66aa0da
         if (dx < 0) {
54b55c8d
             w += dx;
             dx = 0;
         }
         dy = c->cur_y;
a66aa0da
         if (dy < 0) {
54b55c8d
             h += dy;
             dy = 0;
         }
a66aa0da
         if ((w > 0) && (h > 0)) {
3c8ea9d4
             outptr = c->pic->data[0] + dx * c->bpp2 + dy * c->pic->linesize[0];
a66aa0da
             for (i = 0; i < h; i++) {
                 memcpy(c->screendta + i * c->cur_w * c->bpp2, outptr,
                        w * c->bpp2);
3c8ea9d4
                 outptr += c->pic->linesize[0];
54b55c8d
             }
3c8ea9d4
             outptr = c->pic->data[0];
             put_cursor(outptr, c->pic->linesize[0], c, c->cur_x, c->cur_y);
54b55c8d
         }
     }
a66aa0da
     *got_frame = 1;
3c8ea9d4
     if ((ret = av_frame_ref(data, c->pic)) < 0)
759001c5
         return ret;
eb57c889
 
     /* always report that the buffer was completely consumed */
     return buf_size;
 }
 
98a6fff9
 static av_cold int decode_init(AVCodecContext *avctx)
eb57c889
 {
e4141433
     VmncContext * const c = avctx->priv_data;
eb57c889
 
a66aa0da
     c->avctx  = avctx;
     c->width  = avctx->width;
eb57c889
     c->height = avctx->height;
a66aa0da
     c->bpp    = avctx->bits_per_coded_sample;
     c->bpp2   = c->bpp / 8;
eb57c889
 
a66aa0da
     switch (c->bpp) {
eb57c889
     case 8:
716d413c
         avctx->pix_fmt = AV_PIX_FMT_PAL8;
eb57c889
         break;
     case 16:
716d413c
         avctx->pix_fmt = AV_PIX_FMT_RGB555;
eb57c889
         break;
     case 32:
716d413c
         avctx->pix_fmt = AV_PIX_FMT_RGB32;
eb57c889
         break;
     default:
         av_log(avctx, AV_LOG_ERROR, "Unsupported bitdepth %i\n", c->bpp);
07a18097
         return AVERROR_INVALIDDATA;
eb57c889
     }
 
3c8ea9d4
     c->pic = av_frame_alloc();
     if (!c->pic)
cf5ab8b6
         return AVERROR(ENOMEM);
3b199d29
 
eb57c889
     return 0;
 }
 
98a6fff9
 static av_cold int decode_end(AVCodecContext *avctx)
eb57c889
 {
e4141433
     VmncContext * const c = avctx->priv_data;
eb57c889
 
3c8ea9d4
     av_frame_free(&c->pic);
eb57c889
 
19fda0a1
     av_freep(&c->curbits);
     av_freep(&c->curmask);
     av_freep(&c->screendta);
eb57c889
     return 0;
 }
 
e7e2df27
 AVCodec ff_vmnc_decoder = {
ec6402b7
     .name           = "vmnc",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("VMware Screen Codec / VMware Video"),
ec6402b7
     .type           = AVMEDIA_TYPE_VIDEO,
36ef5369
     .id             = AV_CODEC_ID_VMNC,
ec6402b7
     .priv_data_size = sizeof(VmncContext),
     .init           = decode_init,
     .close          = decode_end,
     .decode         = decode_frame,
     .capabilities   = CODEC_CAP_DR1,
eb57c889
 };