/src/ffmpeg/libavcodec/wnv1.c
Line | Count | Source |
1 | | /* |
2 | | * Winnov WNV1 codec |
3 | | * Copyright (c) 2005 Konstantin Shishkov |
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 | | * Winnov WNV1 codec. |
25 | | */ |
26 | | |
27 | | #include "libavutil/thread.h" |
28 | | |
29 | | #define BITSTREAM_READER_LE |
30 | | #include "avcodec.h" |
31 | | #include "codec_internal.h" |
32 | | #include "decode.h" |
33 | | #include "get_bits.h" |
34 | | |
35 | | static const uint8_t code_tab[16][2] = { |
36 | | { 7, 1 }, { 8, 3 }, { 6, 3 }, { 9, 4 }, { 5, 4 }, { 10, 5 }, { 4, 5 }, |
37 | | { 11, 6 }, { 3, 6 }, { 12, 7 }, { 2, 7 }, { 13, 8 }, { 1, 8 }, { 14, 9 }, |
38 | | { 0, 9 }, { 15, 8 } |
39 | | }; |
40 | | |
41 | 254M | #define CODE_VLC_BITS 9 |
42 | | static VLCElem code_vlc[1 << CODE_VLC_BITS]; |
43 | | |
44 | | /* returns modified base_value */ |
45 | | static inline int wnv1_get_code(GetBitContext *gb, int shift, int base_value) |
46 | 254M | { |
47 | 254M | int v = get_vlc2(gb, code_vlc, CODE_VLC_BITS, 1); |
48 | | |
49 | 254M | if (v == 8) |
50 | 1.71M | return get_bits(gb, 8 - shift) << shift; |
51 | 253M | else |
52 | 253M | return base_value + v * (1 << shift); |
53 | 254M | } |
54 | | |
55 | | static int decode_frame(AVCodecContext *avctx, AVFrame *p, |
56 | | int *got_frame, AVPacket *avpkt) |
57 | 699k | { |
58 | 699k | const uint8_t *buf = avpkt->data; |
59 | 699k | int buf_size = avpkt->size; |
60 | 699k | GetBitContext gb; |
61 | 699k | unsigned char *Y,*U,*V; |
62 | 699k | int i, j, ret, shift; |
63 | 699k | int prev_y = 0, prev_u = 0, prev_v = 0; |
64 | | |
65 | 699k | if (buf_size < 8 + avctx->height * (avctx->width/2)/8) { |
66 | 589k | av_log(avctx, AV_LOG_ERROR, "Packet size %d is too small\n", buf_size); |
67 | 589k | return AVERROR_INVALIDDATA; |
68 | 589k | } |
69 | | |
70 | 110k | if ((ret = ff_get_buffer(avctx, p, 0)) < 0) |
71 | 8 | return ret; |
72 | | |
73 | 110k | if ((ret = init_get_bits8(&gb, buf + 8, buf_size - 8)) < 0) |
74 | 0 | return ret; |
75 | | |
76 | 110k | if (buf[2] >> 4 == 6) |
77 | 300 | shift = 2; |
78 | 110k | else { |
79 | 110k | shift = 8 - (buf[2] >> 4); |
80 | 110k | if (shift > 4) { |
81 | 11.8k | avpriv_request_sample(avctx, |
82 | 11.8k | "Unknown WNV1 frame header value %i", |
83 | 11.8k | buf[2] >> 4); |
84 | 11.8k | shift = 4; |
85 | 11.8k | } |
86 | 110k | if (shift < 1) { |
87 | 93.2k | avpriv_request_sample(avctx, |
88 | 93.2k | "Unknown WNV1 frame header value %i", |
89 | 93.2k | buf[2] >> 4); |
90 | 93.2k | shift = 1; |
91 | 93.2k | } |
92 | 110k | } |
93 | | |
94 | 110k | Y = p->data[0]; |
95 | 110k | U = p->data[1]; |
96 | 110k | V = p->data[2]; |
97 | 1.65M | for (j = 0; j < avctx->height; j++) { |
98 | 65.2M | for (i = 0; i < avctx->width / 2; i++) { |
99 | 63.6M | Y[i * 2] = wnv1_get_code(&gb, shift, prev_y); |
100 | 63.6M | prev_u = U[i] = wnv1_get_code(&gb, shift, prev_u); |
101 | 63.6M | prev_y = Y[(i * 2) + 1] = wnv1_get_code(&gb, shift, Y[i * 2]); |
102 | 63.6M | prev_v = V[i] = wnv1_get_code(&gb, shift, prev_v); |
103 | 63.6M | } |
104 | 1.54M | Y += p->linesize[0]; |
105 | 1.54M | U += p->linesize[1]; |
106 | 1.54M | V += p->linesize[2]; |
107 | 1.54M | } |
108 | | |
109 | | |
110 | 110k | *got_frame = 1; |
111 | | |
112 | 110k | return buf_size; |
113 | 110k | } |
114 | | |
115 | | static av_cold void wnv1_init_static(void) |
116 | 1 | { |
117 | 1 | VLC_INIT_STATIC_TABLE_FROM_LENGTHS(code_vlc, CODE_VLC_BITS, 16, |
118 | 1 | &code_tab[0][1], 2, |
119 | 1 | &code_tab[0][0], 2, 1, |
120 | 1 | -7, VLC_INIT_OUTPUT_LE); |
121 | 1 | } |
122 | | |
123 | | static av_cold int decode_init(AVCodecContext *avctx) |
124 | 726 | { |
125 | 726 | static AVOnce init_static_once = AV_ONCE_INIT; |
126 | | |
127 | 726 | if (avctx->width <= 1) |
128 | 143 | return AVERROR_INVALIDDATA; |
129 | | |
130 | 583 | avctx->pix_fmt = AV_PIX_FMT_YUV422P; |
131 | | |
132 | 583 | ff_thread_once(&init_static_once, wnv1_init_static); |
133 | | |
134 | 583 | return 0; |
135 | 726 | } |
136 | | |
137 | | const FFCodec ff_wnv1_decoder = { |
138 | | .p.name = "wnv1", |
139 | | CODEC_LONG_NAME("Winnov WNV1"), |
140 | | .p.type = AVMEDIA_TYPE_VIDEO, |
141 | | .p.id = AV_CODEC_ID_WNV1, |
142 | | .init = decode_init, |
143 | | FF_CODEC_DECODE_CB(decode_frame), |
144 | | .p.capabilities = AV_CODEC_CAP_DR1, |
145 | | }; |