FFmpeg
Loading...
Searching...
No Matches
wbmpdec.c
Go to the documentation of this file.
1/*
2 * WBMP (Wireless Application Protocol Bitmap) image
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include "avcodec.h"
22#include "bytestream.h"
23#include "codec_internal.h"
24#include "decode.h"
25#include "thread.h"
26
27static unsigned int getv(GetByteContext * gb)
28{
29 int i;
30 unsigned int v = 0;
31
32 do {
33 i = bytestream2_get_byte(gb);
34 v = (v << 7) | (i & 0x7F);
35 } while (i & 0x80);
36 return v;
37}
38
39static void readbits(uint8_t * dst, int width, int height, int linesize, const uint8_t * src, int size)
40{
41 int wpad = (width + 7) / 8;
42 for (int j = 0; j < height && size > 0; j++) {
43 memcpy(dst, src, FFMIN(wpad, size));
44 src += wpad;
45 size -= wpad;
46 dst += linesize;
47 }
48}
49
51 int *got_frame, AVPacket *avpkt)
52{
53 const uint8_t *buf = avpkt->data;
54 int buf_size = avpkt->size, width, height, ret;
56
57 bytestream2_init(&gb, buf, buf_size);
58
59 if (getv(&gb))
61 bytestream2_skip(&gb, 1);
62 width = getv(&gb);
63 height = getv(&gb);
64
65 if ((ret = ff_set_dimensions(avctx, width, height)) < 0)
66 return ret;
67
69 if ((ret = ff_thread_get_buffer(avctx, p, 0)) < 0)
70 return ret;
71
72 if (p->linesize[0] == (width + 7) / 8)
73 bytestream2_get_buffer(&gb, p->data[0], height * ((width + 7) / 8));
74 else
75 readbits(p->data[0], width, height, p->linesize[0],
77
78 *got_frame = 1;
79
80 return buf_size;
81}
82
84 .p.name = "wbmp",
85 CODEC_LONG_NAME("WBMP (Wireless Application Protocol Bitmap) image"),
86 .p.type = AVMEDIA_TYPE_VIDEO,
87 .p.id = AV_CODEC_ID_WBMP,
90};
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
const FFCodec ff_wbmp_decoder
Definition wbmpdec.c:83
Libavcodec external API header.
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
Definition bytestream.h:267
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
Definition bytestream.h:158
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition bytestream.h:137
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition bytestream.h:168
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Definition utils.c:91
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition codec.h:98
@ AV_CODEC_ID_WBMP
Definition codec_id.h:312
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
Multithreading API for decoders.
#define FFMIN(a, b)
Definition macros.h:49
@ 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
int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
const uint8_t * buffer
Definition bytestream.h:34
#define src
Definition vp8dsp.c:248
#define height
Definition dsp.h:89
#define width
Definition dsp.h:89
int size
static unsigned int getv(GetByteContext *gb)
Definition wbmpdec.c:27
static void readbits(uint8_t *dst, int width, int height, int linesize, const uint8_t *src, int size)
Definition wbmpdec.c:39
static int wbmp_decode_frame(AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *avpkt)
Definition wbmpdec.c:50