FFmpeg
msp2dec.c
Go to the documentation of this file.
1 /*
2  * Microsoft Paint (MSP) version 2 decoder
3  * Copyright (c) 2020 Peter Ross (pross@xvid.org)
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * Microsoft Paint (MSP) version 2 decoder
25  */
26 
27 #include "avcodec.h"
28 #include "bytestream.h"
29 #include "codec_internal.h"
30 #include "decode.h"
31 
33  int *got_frame, AVPacket *avpkt)
34 {
35  const uint8_t *buf = avpkt->data;
36  int buf_size = avpkt->size;
37  int ret;
38  unsigned int x, y, width = (avctx->width + 7) / 8;
39  GetByteContext idx, gb;
40 
41  if (buf_size <= 2 * avctx->height)
42  return AVERROR_INVALIDDATA;
43 
45 
46  if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
47  return ret;
48 
51 
52  bytestream2_init(&idx, buf, 2 * avctx->height);
53  buf += 2 * avctx->height;
54  buf_size -= 2 * avctx->height;
55 
56  for (y = 0; y < avctx->height; y++) {
57  unsigned int pkt_size = bytestream2_get_le16(&idx);
58  if (!pkt_size) {
59  memset(p->data[0] + y * p->linesize[0], 0xFF, width);
60  continue;
61  }
62 
63  if (pkt_size > buf_size) {
64  av_log(avctx, AV_LOG_WARNING, "image probably corrupt\n");
65  pkt_size = buf_size;
66  }
67 
68  bytestream2_init(&gb, buf, pkt_size);
69  x = 0;
70  while (bytestream2_get_bytes_left(&gb) && x < width) {
71  int size = bytestream2_get_byte(&gb);
72  if (size) {
74  memcpy(p->data[0] + y * p->linesize[0] + x, gb.buffer, FFMIN(size, width - x));
75  bytestream2_skip(&gb, size);
76  } else {
77  int value;
78  size = bytestream2_get_byte(&gb);
79  if (!size)
80  avpriv_request_sample(avctx, "escape value");
81  value = bytestream2_get_byte(&gb);
82  memset(p->data[0] + y * p->linesize[0] + x, value, FFMIN(size, width - x));
83  }
84  x += size;
85  }
86 
87  buf += pkt_size;
88  buf_size -= pkt_size;
89  }
90 
91  *got_frame = 1;
92  return buf_size;
93 }
94 
96  .p.name = "msp2",
97  CODEC_LONG_NAME("Microsoft Paint (MSP) version 2"),
98  .p.type = AVMEDIA_TYPE_VIDEO,
99  .p.id = AV_CODEC_ID_MSP2,
100  .p.capabilities = AV_CODEC_CAP_DR1,
102 };
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:186
GetByteContext
Definition: bytestream.h:33
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:375
AVPacket::data
uint8_t * data
Definition: packet.h:522
FFCodec
Definition: codec_internal.h:127
AVFrame::flags
int flags
Frame flags, a combination of AV_FRAME_FLAGS.
Definition: frame.h:647
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:396
ff_msp2_decoder
const FFCodec ff_msp2_decoder
Definition: msp2dec.c:95
bytestream2_skip
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition: bytestream.h:168
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
AV_FRAME_FLAG_KEY
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition: frame.h:626
width
#define width
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:287
GetByteContext::buffer
const uint8_t * buffer
Definition: bytestream.h:34
decode.h
AV_CODEC_ID_MSP2
@ AV_CODEC_ID_MSP2
Definition: codec_id.h:249
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
AV_PIX_FMT_MONOBLACK
@ AV_PIX_FMT_MONOBLACK
Y , 1bpp, 0 is black, 1 is white, in each byte pixels are ordered from the msb to the lsb.
Definition: pixfmt.h:83
AV_PICTURE_TYPE_I
@ AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:279
bytestream2_get_bytes_left
static av_always_inline int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:158
AVFrame::pict_type
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:477
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1568
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AVPacket::size
int size
Definition: packet.h:523
codec_internal.h
size
int size
Definition: twinvq_data.h:10344
msp2_decode_frame
static int msp2_decode_frame(AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *avpkt)
Definition: msp2dec.c:32
height
#define height
value
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
Definition: writing_filters.txt:86
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:194
AVCodecContext::height
int height
Definition: avcodec.h:618
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:657
avcodec.h
ret
ret
Definition: filter_design.txt:187
AVCodecContext
main external API structure.
Definition: avcodec.h:445
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:36
AVPacket
This structure stores compressed data.
Definition: packet.h:499
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:618
bytestream.h
bytestream2_init
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:137
AVFrame::linesize
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition: frame.h:420
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61