annotate truemotion1.c @ 12397:4bc3d73ae577 libavcodec

Since the 24 bit format is decoded to endian-dependant BGR32 and not BGR24, do not swap red and blue on big-endian for this format as well.
author reimar
date Sat, 21 Aug 2010 19:40:38 +0000
parents fe8005d542a4
children 31736ceab3aa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
1 /*
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
2 * Duck TrueMotion 1.0 Decoder
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
3 * Copyright (C) 2003 Alex Beregszaszi & Mike Melanson
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
4 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
5 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
6 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
11 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
15 * Lesser General Public License for more details.
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
16 *
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3036
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
3036
0b546eab515d Update licensing information: The FSF changed postal address.
diego
parents: 2979
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
20 */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
21
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
22 /**
11644
7dd2a45249a9 Remove explicit filename from Doxygen @file commands.
diego
parents: 11560
diff changeset
23 * @file
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
24 * Duck TrueMotion v1 Video Decoder by
4869
6c5198376e06 cosmetics: remove my email address
alex
parents: 4827
diff changeset
25 * Alex Beregszaszi and
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
26 * Mike Melanson (melanson@pcisys.net)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
27 *
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
28 * The TrueMotion v1 decoder presently only decodes 16-bit TM1 data and
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
29 * outputs RGB555 (or RGB565) data. 24-bit TM1 data is not supported yet.
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
30 */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
31
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
32 #include <stdio.h>
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
33 #include <stdlib.h>
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
34 #include <string.h>
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
35
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
36 #include "avcodec.h"
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
37 #include "dsputil.h"
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
38
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
39 #include "truemotion1data.h"
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
40
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
41 typedef struct TrueMotion1Context {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
42 AVCodecContext *avctx;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
43 AVFrame frame;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
44
6257
michael
parents: 5514
diff changeset
45 const uint8_t *buf;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
46 int size;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
47
6257
michael
parents: 5514
diff changeset
48 const uint8_t *mb_change_bits;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
49 int mb_change_bits_row_size;
6284
20a72aa8179b more const
michael
parents: 6257
diff changeset
50 const uint8_t *index_stream;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
51 int index_stream_size;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
52
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
53 int flags;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
54 int x, y, w, h;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
55
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
56 uint32_t y_predictor_table[1024];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
57 uint32_t c_predictor_table[1024];
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
58 uint32_t fat_y_predictor_table[1024];
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
59 uint32_t fat_c_predictor_table[1024];
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
60
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
61 int compression;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
62 int block_type;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
63 int block_width;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
64 int block_height;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
65
2073
95d303a305d2 fix initialization bug in which execution overwrites essential data
melanson
parents: 2028
diff changeset
66 int16_t ydt[8];
95d303a305d2 fix initialization bug in which execution overwrites essential data
melanson
parents: 2028
diff changeset
67 int16_t cdt[8];
95d303a305d2 fix initialization bug in which execution overwrites essential data
melanson
parents: 2028
diff changeset
68 int16_t fat_ydt[8];
95d303a305d2 fix initialization bug in which execution overwrites essential data
melanson
parents: 2028
diff changeset
69 int16_t fat_cdt[8];
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
70
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
71 int last_deltaset, last_vectable;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
72
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
73 unsigned int *vert_pred;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
74
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
75 } TrueMotion1Context;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
76
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
77 #define FLAG_SPRITE 32
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
78 #define FLAG_KEYFRAME 16
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
79 #define FLAG_INTERFRAME 8
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
80 #define FLAG_INTERPOLATED 4
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
81
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
82 struct frame_header {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
83 uint8_t header_size;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
84 uint8_t compression;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
85 uint8_t deltaset;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
86 uint8_t vectable;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
87 uint16_t ysize;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
88 uint16_t xsize;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
89 uint16_t checksum;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
90 uint8_t version;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
91 uint8_t header_type;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
92 uint8_t flags;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
93 uint8_t control;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
94 uint16_t xoffset;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
95 uint16_t yoffset;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
96 uint16_t width;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
97 uint16_t height;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
98 };
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
99
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
100 #define ALGO_NOP 0
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
101 #define ALGO_RGB16V 1
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
102 #define ALGO_RGB16H 2
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
103 #define ALGO_RGB24H 3
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
104
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
105 /* these are the various block sizes that can occupy a 4x4 block */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
106 #define BLOCK_2x2 0
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
107 #define BLOCK_2x4 1
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
108 #define BLOCK_4x2 2
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
109 #define BLOCK_4x4 3
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
110
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
111 typedef struct comp_types {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
112 int algorithm;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
113 int block_width; // vres
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
114 int block_height; // hres
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
115 int block_type;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
116 } comp_types;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
117
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
118 /* { valid for metatype }, algorithm, num of deltas, vert res, horiz res */
7129
322023e630a6 mark read-only data as const
stefang
parents: 7040
diff changeset
119 static const comp_types compression_types[17] = {
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
120 { ALGO_NOP, 0, 0, 0 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
121
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
122 { ALGO_RGB16V, 4, 4, BLOCK_4x4 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
123 { ALGO_RGB16H, 4, 4, BLOCK_4x4 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
124 { ALGO_RGB16V, 4, 2, BLOCK_4x2 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
125 { ALGO_RGB16H, 4, 2, BLOCK_4x2 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
126
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
127 { ALGO_RGB16V, 2, 4, BLOCK_2x4 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
128 { ALGO_RGB16H, 2, 4, BLOCK_2x4 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
129 { ALGO_RGB16V, 2, 2, BLOCK_2x2 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
130 { ALGO_RGB16H, 2, 2, BLOCK_2x2 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
131
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
132 { ALGO_NOP, 4, 4, BLOCK_4x4 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
133 { ALGO_RGB24H, 4, 4, BLOCK_4x4 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
134 { ALGO_NOP, 4, 2, BLOCK_4x2 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
135 { ALGO_RGB24H, 4, 2, BLOCK_4x2 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
136
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
137 { ALGO_NOP, 2, 4, BLOCK_2x4 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
138 { ALGO_RGB24H, 2, 4, BLOCK_2x4 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
139 { ALGO_NOP, 2, 2, BLOCK_2x2 },
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
140 { ALGO_RGB24H, 2, 2, BLOCK_2x2 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
141 };
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
142
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
143 static void select_delta_tables(TrueMotion1Context *s, int delta_table_index)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
144 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
145 int i;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
146
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
147 if (delta_table_index > 3)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
148 return;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
149
2073
95d303a305d2 fix initialization bug in which execution overwrites essential data
melanson
parents: 2028
diff changeset
150 memcpy(s->ydt, ydts[delta_table_index], 8 * sizeof(int16_t));
95d303a305d2 fix initialization bug in which execution overwrites essential data
melanson
parents: 2028
diff changeset
151 memcpy(s->cdt, cdts[delta_table_index], 8 * sizeof(int16_t));
95d303a305d2 fix initialization bug in which execution overwrites essential data
melanson
parents: 2028
diff changeset
152 memcpy(s->fat_ydt, fat_ydts[delta_table_index], 8 * sizeof(int16_t));
95d303a305d2 fix initialization bug in which execution overwrites essential data
melanson
parents: 2028
diff changeset
153 memcpy(s->fat_cdt, fat_cdts[delta_table_index], 8 * sizeof(int16_t));
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
154
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
155 /* Y skinny deltas need to be halved for some reason; maybe the
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
156 * skinny Y deltas should be modified */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
157 for (i = 0; i < 8; i++)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
158 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
159 /* drop the lsb before dividing by 2-- net effect: round down
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
160 * when dividing a negative number (e.g., -3/2 = -2, not -1) */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
161 s->ydt[i] &= 0xFFFE;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
162 s->ydt[i] /= 2;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
163 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
164 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
165
9985
266bf83f634d Replace WORDS_BIGENDIAN with HAVE_BIGENDIAN
mru
parents: 9981
diff changeset
166 #if HAVE_BIGENDIAN
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
167 static int make_ydt15_entry(int p2, int p1, int16_t *ydt)
1654
1c123e036890 this should make the decoder safe for big-endian platforms
melanson
parents: 1650
diff changeset
168 #else
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
169 static int make_ydt15_entry(int p1, int p2, int16_t *ydt)
1654
1c123e036890 this should make the decoder safe for big-endian platforms
melanson
parents: 1650
diff changeset
170 #endif
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
171 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
172 int lo, hi;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
173
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
174 lo = ydt[p1];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
175 lo += (lo << 5) + (lo << 10);
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
176 hi = ydt[p2];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
177 hi += (hi << 5) + (hi << 10);
6750
c93570aeb3eb Remove unnecessary parentheses from return calls.
diego
parents: 6717
diff changeset
178 return (lo + (hi << 16)) << 1;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
179 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
180
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
181 static int make_cdt15_entry(int p1, int p2, int16_t *cdt)
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
182 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
183 int r, b, lo;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
184
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
185 b = cdt[p2];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
186 r = cdt[p1] << 10;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
187 lo = b + r;
6750
c93570aeb3eb Remove unnecessary parentheses from return calls.
diego
parents: 6717
diff changeset
188 return (lo + (lo << 16)) << 1;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
189 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
190
9985
266bf83f634d Replace WORDS_BIGENDIAN with HAVE_BIGENDIAN
mru
parents: 9981
diff changeset
191 #if HAVE_BIGENDIAN
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
192 static int make_ydt16_entry(int p2, int p1, int16_t *ydt)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
193 #else
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
194 static int make_ydt16_entry(int p1, int p2, int16_t *ydt)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
195 #endif
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
196 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
197 int lo, hi;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
198
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
199 lo = ydt[p1];
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
200 lo += (lo << 6) + (lo << 11);
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
201 hi = ydt[p2];
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
202 hi += (hi << 6) + (hi << 11);
6750
c93570aeb3eb Remove unnecessary parentheses from return calls.
diego
parents: 6717
diff changeset
203 return (lo + (hi << 16)) << 1;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
204 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
205
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
206 static int make_cdt16_entry(int p1, int p2, int16_t *cdt)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
207 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
208 int r, b, lo;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
209
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
210 b = cdt[p2];
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
211 r = cdt[p1] << 11;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
212 lo = b + r;
6750
c93570aeb3eb Remove unnecessary parentheses from return calls.
diego
parents: 6717
diff changeset
213 return (lo + (lo << 16)) << 1;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
214 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
215
9985
266bf83f634d Replace WORDS_BIGENDIAN with HAVE_BIGENDIAN
mru
parents: 9981
diff changeset
216 #if HAVE_BIGENDIAN
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
217 static int make_ydt24_entry(int p2, int p1, int16_t *ydt)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
218 #else
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
219 static int make_ydt24_entry(int p1, int p2, int16_t *ydt)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
220 #endif
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
221 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
222 int lo, hi;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
223
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
224 lo = ydt[p1];
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
225 hi = ydt[p2];
6750
c93570aeb3eb Remove unnecessary parentheses from return calls.
diego
parents: 6717
diff changeset
226 return (lo + (hi << 8) + (hi << 16)) << 1;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
227 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
228
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
229 static int make_cdt24_entry(int p1, int p2, int16_t *cdt)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
230 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
231 int r, b;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
232
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
233 b = cdt[p2];
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
234 r = cdt[p1]<<16;
6750
c93570aeb3eb Remove unnecessary parentheses from return calls.
diego
parents: 6717
diff changeset
235 return (b+r) << 1;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
236 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
237
2753
ba8ecddf5598 adding a few const
michael
parents: 2453
diff changeset
238 static void gen_vector_table15(TrueMotion1Context *s, const uint8_t *sel_vector_table)
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
239 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
240 int len, i, j;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
241 unsigned char delta_pair;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
242
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
243 for (i = 0; i < 1024; i += 4)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
244 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
245 len = *sel_vector_table++ / 2;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
246 for (j = 0; j < len; j++)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
247 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
248 delta_pair = *sel_vector_table++;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
249 s->y_predictor_table[i+j] = 0xfffffffe &
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
250 make_ydt15_entry(delta_pair >> 4, delta_pair & 0xf, s->ydt);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
251 s->c_predictor_table[i+j] = 0xfffffffe &
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
252 make_cdt15_entry(delta_pair >> 4, delta_pair & 0xf, s->cdt);
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
253 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
254 s->y_predictor_table[i+(j-1)] |= 1;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
255 s->c_predictor_table[i+(j-1)] |= 1;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
256 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
257 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
258
2753
ba8ecddf5598 adding a few const
michael
parents: 2453
diff changeset
259 static void gen_vector_table16(TrueMotion1Context *s, const uint8_t *sel_vector_table)
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
260 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
261 int len, i, j;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
262 unsigned char delta_pair;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
263
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
264 for (i = 0; i < 1024; i += 4)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
265 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
266 len = *sel_vector_table++ / 2;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
267 for (j = 0; j < len; j++)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
268 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
269 delta_pair = *sel_vector_table++;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
270 s->y_predictor_table[i+j] = 0xfffffffe &
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
271 make_ydt16_entry(delta_pair >> 4, delta_pair & 0xf, s->ydt);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
272 s->c_predictor_table[i+j] = 0xfffffffe &
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
273 make_cdt16_entry(delta_pair >> 4, delta_pair & 0xf, s->cdt);
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
274 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
275 s->y_predictor_table[i+(j-1)] |= 1;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
276 s->c_predictor_table[i+(j-1)] |= 1;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
277 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
278 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
279
2753
ba8ecddf5598 adding a few const
michael
parents: 2453
diff changeset
280 static void gen_vector_table24(TrueMotion1Context *s, const uint8_t *sel_vector_table)
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
281 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
282 int len, i, j;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
283 unsigned char delta_pair;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
284
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
285 for (i = 0; i < 1024; i += 4)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
286 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
287 len = *sel_vector_table++ / 2;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
288 for (j = 0; j < len; j++)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
289 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
290 delta_pair = *sel_vector_table++;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
291 s->y_predictor_table[i+j] = 0xfffffffe &
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
292 make_ydt24_entry(delta_pair >> 4, delta_pair & 0xf, s->ydt);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
293 s->c_predictor_table[i+j] = 0xfffffffe &
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
294 make_cdt24_entry(delta_pair >> 4, delta_pair & 0xf, s->cdt);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
295 s->fat_y_predictor_table[i+j] = 0xfffffffe &
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
296 make_ydt24_entry(delta_pair >> 4, delta_pair & 0xf, s->fat_ydt);
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
297 s->fat_c_predictor_table[i+j] = 0xfffffffe &
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
298 make_cdt24_entry(delta_pair >> 4, delta_pair & 0xf, s->fat_cdt);
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
299 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
300 s->y_predictor_table[i+(j-1)] |= 1;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
301 s->c_predictor_table[i+(j-1)] |= 1;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
302 s->fat_y_predictor_table[i+(j-1)] |= 1;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
303 s->fat_c_predictor_table[i+(j-1)] |= 1;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
304 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
305 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
306
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
307 /* Returns the number of bytes consumed from the bytestream. Returns -1 if
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
308 * there was an error while decoding the header */
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
309 static int truemotion1_decode_header(TrueMotion1Context *s)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
310 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
311 int i;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
312 struct frame_header header;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
313 uint8_t header_buffer[128]; /* logical maximum size of the header */
2753
ba8ecddf5598 adding a few const
michael
parents: 2453
diff changeset
314 const uint8_t *sel_vector_table;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
315
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
316 /* There is 1 change bit per 4 pixels, so each change byte represents
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
317 * 32 pixels; divide width by 4 to obtain the number of change bits and
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
318 * then round up to the nearest byte. */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
319 s->mb_change_bits_row_size = ((s->avctx->width >> 2) + 7) >> 3;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
320
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
321 header.header_size = ((s->buf[0] >> 5) | (s->buf[0] << 3)) & 0x7f;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
322 if (s->buf[0] < 0x10)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
323 {
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
324 av_log(s->avctx, AV_LOG_ERROR, "invalid header size (%d)\n", s->buf[0]);
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
325 return -1;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
326 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
327
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
328 /* unscramble the header bytes with a XOR operation */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
329 memset(header_buffer, 0, 128);
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
330 for (i = 1; i < header.header_size; i++)
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
331 header_buffer[i - 1] = s->buf[i] ^ s->buf[i + 1];
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
332
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
333 header.compression = header_buffer[0];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
334 header.deltaset = header_buffer[1];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
335 header.vectable = header_buffer[2];
4364
05e932ddaaa9 rename BE/LE_8/16/32 to AV_RL/B_8/16/32
alex
parents: 3947
diff changeset
336 header.ysize = AV_RL16(&header_buffer[3]);
05e932ddaaa9 rename BE/LE_8/16/32 to AV_RL/B_8/16/32
alex
parents: 3947
diff changeset
337 header.xsize = AV_RL16(&header_buffer[5]);
05e932ddaaa9 rename BE/LE_8/16/32 to AV_RL/B_8/16/32
alex
parents: 3947
diff changeset
338 header.checksum = AV_RL16(&header_buffer[7]);
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
339 header.version = header_buffer[9];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
340 header.header_type = header_buffer[10];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
341 header.flags = header_buffer[11];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
342 header.control = header_buffer[12];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
343
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
344 /* Version 2 */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
345 if (header.version >= 2)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
346 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
347 if (header.header_type > 3)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
348 {
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
349 av_log(s->avctx, AV_LOG_ERROR, "invalid header type (%d)\n", header.header_type);
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
350 return -1;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
351 } else if ((header.header_type == 2) || (header.header_type == 3)) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
352 s->flags = header.flags;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
353 if (!(s->flags & FLAG_INTERFRAME))
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
354 s->flags |= FLAG_KEYFRAME;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
355 } else
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
356 s->flags = FLAG_KEYFRAME;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
357 } else /* Version 1 */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
358 s->flags = FLAG_KEYFRAME;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
359
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
360 if (s->flags & FLAG_SPRITE) {
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
361 av_log(s->avctx, AV_LOG_INFO, "SPRITE frame found, please report the sample to the developers\n");
4476
16e85254118f fix use of uninitialized variables
faust3
parents: 4364
diff changeset
362 /* FIXME header.width, height, xoffset and yoffset aren't initialized */
16e85254118f fix use of uninitialized variables
faust3
parents: 4364
diff changeset
363 #if 0
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
364 s->w = header.width;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
365 s->h = header.height;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
366 s->x = header.xoffset;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
367 s->y = header.yoffset;
4476
16e85254118f fix use of uninitialized variables
faust3
parents: 4364
diff changeset
368 #else
16e85254118f fix use of uninitialized variables
faust3
parents: 4364
diff changeset
369 return -1;
16e85254118f fix use of uninitialized variables
faust3
parents: 4364
diff changeset
370 #endif
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
371 } else {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
372 s->w = header.xsize;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
373 s->h = header.ysize;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
374 if (header.header_type < 2) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
375 if ((s->w < 213) && (s->h >= 176))
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
376 {
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
377 s->flags |= FLAG_INTERPOLATED;
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
378 av_log(s->avctx, AV_LOG_INFO, "INTERPOLATION selected, please report the sample to the developers\n");
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
379 }
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
380 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
381 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
382
7006
48cfbc65d688 Fix reading an element after the array.
michael
parents: 6750
diff changeset
383 if (header.compression >= 17) {
1927
d7505fbe66cb conversion to av_log
alex
parents: 1881
diff changeset
384 av_log(s->avctx, AV_LOG_ERROR, "invalid compression type (%d)\n", header.compression);
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
385 return -1;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
386 }
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
387
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
388 if ((header.deltaset != s->last_deltaset) ||
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
389 (header.vectable != s->last_vectable))
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
390 select_delta_tables(s, header.deltaset);
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
391
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
392 if ((header.compression & 1) && header.header_type)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
393 sel_vector_table = pc_tbl2;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
394 else {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
395 if (header.vectable < 4)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
396 sel_vector_table = tables[header.vectable - 1];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
397 else {
1927
d7505fbe66cb conversion to av_log
alex
parents: 1881
diff changeset
398 av_log(s->avctx, AV_LOG_ERROR, "invalid vector table id (%d)\n", header.vectable);
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
399 return -1;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
400 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
401 }
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
402
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
403 // FIXME: where to place this ?!?!
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
404 if (compression_types[header.compression].algorithm == ALGO_RGB24H)
4494
ce643a22f049 Replace deprecated PIX_FMT names by the newer variants.
diego
parents: 4476
diff changeset
405 s->avctx->pix_fmt = PIX_FMT_RGB32;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
406 else
4561
726deec26122 cosmetics: aswell --> as well typo fix
diego
parents: 4494
diff changeset
407 s->avctx->pix_fmt = PIX_FMT_RGB555; // RGB565 is supported as well
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
408
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
409 if ((header.deltaset != s->last_deltaset) || (header.vectable != s->last_vectable))
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
410 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
411 if (compression_types[header.compression].algorithm == ALGO_RGB24H)
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
412 gen_vector_table24(s, sel_vector_table);
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
413 else
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
414 if (s->avctx->pix_fmt == PIX_FMT_RGB555)
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
415 gen_vector_table15(s, sel_vector_table);
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
416 else
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
417 gen_vector_table16(s, sel_vector_table);
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
418 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
419
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
420 /* set up pointers to the other key data chunks */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
421 s->mb_change_bits = s->buf + header.header_size;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
422 if (s->flags & FLAG_KEYFRAME) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
423 /* no change bits specified for a keyframe; only index bytes */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
424 s->index_stream = s->mb_change_bits;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
425 } else {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
426 /* one change bit per 4x4 block */
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
427 s->index_stream = s->mb_change_bits +
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
428 (s->mb_change_bits_row_size * (s->avctx->height >> 2));
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
429 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
430 s->index_stream_size = s->size - (s->index_stream - s->buf);
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
431
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
432 s->last_deltaset = header.deltaset;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
433 s->last_vectable = header.vectable;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
434 s->compression = header.compression;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
435 s->block_width = compression_types[header.compression].block_width;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
436 s->block_height = compression_types[header.compression].block_height;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
437 s->block_type = compression_types[header.compression].block_type;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
438
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
439 if (s->avctx->debug & FF_DEBUG_PICT_INFO)
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
440 av_log(s->avctx, AV_LOG_INFO, "tables: %d / %d c:%d %dx%d t:%d %s%s%s%s\n",
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
441 s->last_deltaset, s->last_vectable, s->compression, s->block_width,
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
442 s->block_height, s->block_type,
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
443 s->flags & FLAG_KEYFRAME ? " KEY" : "",
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
444 s->flags & FLAG_INTERFRAME ? " INTER" : "",
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
445 s->flags & FLAG_SPRITE ? " SPRITE" : "",
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
446 s->flags & FLAG_INTERPOLATED ? " INTERPOL" : "");
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
447
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
448 return header.header_size;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
449 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
450
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6284
diff changeset
451 static av_cold int truemotion1_decode_init(AVCodecContext *avctx)
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
452 {
4827
b3ee9a1526b0 Get rid of unnecessary pointer casts.
diego
parents: 4801
diff changeset
453 TrueMotion1Context *s = avctx->priv_data;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
454
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
455 s->avctx = avctx;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
456
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
457 // FIXME: it may change ?
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
458 // if (avctx->bits_per_sample == 24)
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
459 // avctx->pix_fmt = PIX_FMT_RGB24;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
460 // else
2979
bfabfdf9ce55 COSMETICS: tabs --> spaces, some prettyprinting
diego
parents: 2967
diff changeset
461 // avctx->pix_fmt = PIX_FMT_RGB555;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
462
5514
e2dbd1623e1d use reget_buffer and remove internal copying of buffer - codec works again
alex
parents: 4962
diff changeset
463 s->frame.data[0] = NULL;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
464
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
465 /* there is a vertical predictor for each pixel in a line; each vertical
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
466 * predictor is 0 to start with */
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
467 s->vert_pred =
2938
363be7734674 improvements by Reimar D«Óffinger; 24-bit decoding is not perfect, only
melanson
parents: 2753
diff changeset
468 (unsigned int *)av_malloc(s->avctx->width * sizeof(unsigned int));
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
469
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
470 return 0;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
471 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
472
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
473 /*
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
474 Block decoding order:
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
475
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
476 dxi: Y-Y
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
477 dxic: Y-C-Y
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
478 dxic2: Y-C-Y-C
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
479
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
480 hres,vres,i,i%vres (0 < i < 4)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
481 2x2 0: 0 dxic2
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
482 2x2 1: 1 dxi
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
483 2x2 2: 0 dxic2
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
484 2x2 3: 1 dxi
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
485 2x4 0: 0 dxic2
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
486 2x4 1: 1 dxi
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
487 2x4 2: 2 dxi
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
488 2x4 3: 3 dxi
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
489 4x2 0: 0 dxic
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
490 4x2 1: 1 dxi
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
491 4x2 2: 0 dxic
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
492 4x2 3: 1 dxi
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
493 4x4 0: 0 dxic
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
494 4x4 1: 1 dxi
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
495 4x4 2: 2 dxi
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
496 4x4 3: 3 dxi
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
497 */
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
498
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
499 #define GET_NEXT_INDEX() \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
500 {\
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
501 if (index_stream_index >= s->index_stream_size) { \
1927
d7505fbe66cb conversion to av_log
alex
parents: 1881
diff changeset
502 av_log(s->avctx, AV_LOG_INFO, " help! truemotion1 decoder went out of bounds\n"); \
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
503 return; \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
504 } \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
505 index = s->index_stream[index_stream_index++] * 4; \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
506 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
507
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
508 #define APPLY_C_PREDICTOR() \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
509 predictor_pair = s->c_predictor_table[index]; \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
510 horiz_pred += (predictor_pair >> 1); \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
511 if (predictor_pair & 1) { \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
512 GET_NEXT_INDEX() \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
513 if (!index) { \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
514 GET_NEXT_INDEX() \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
515 predictor_pair = s->c_predictor_table[index]; \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
516 horiz_pred += ((predictor_pair >> 1) * 5); \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
517 if (predictor_pair & 1) \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
518 GET_NEXT_INDEX() \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
519 else \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
520 index++; \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
521 } \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
522 } else \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
523 index++;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
524
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
525 #define APPLY_C_PREDICTOR_24() \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
526 predictor_pair = s->c_predictor_table[index]; \
2938
363be7734674 improvements by Reimar D«Óffinger; 24-bit decoding is not perfect, only
melanson
parents: 2753
diff changeset
527 horiz_pred += (predictor_pair >> 1); \
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
528 if (predictor_pair & 1) { \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
529 GET_NEXT_INDEX() \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
530 if (!index) { \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
531 GET_NEXT_INDEX() \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
532 predictor_pair = s->fat_c_predictor_table[index]; \
2938
363be7734674 improvements by Reimar D«Óffinger; 24-bit decoding is not perfect, only
melanson
parents: 2753
diff changeset
533 horiz_pred += (predictor_pair >> 1); \
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
534 if (predictor_pair & 1) \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
535 GET_NEXT_INDEX() \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
536 else \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
537 index++; \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
538 } \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
539 } else \
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
540 index++;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
541
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
542
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
543 #define APPLY_Y_PREDICTOR() \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
544 predictor_pair = s->y_predictor_table[index]; \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
545 horiz_pred += (predictor_pair >> 1); \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
546 if (predictor_pair & 1) { \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
547 GET_NEXT_INDEX() \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
548 if (!index) { \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
549 GET_NEXT_INDEX() \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
550 predictor_pair = s->y_predictor_table[index]; \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
551 horiz_pred += ((predictor_pair >> 1) * 5); \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
552 if (predictor_pair & 1) \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
553 GET_NEXT_INDEX() \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
554 else \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
555 index++; \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
556 } \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
557 } else \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
558 index++;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
559
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
560 #define APPLY_Y_PREDICTOR_24() \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
561 predictor_pair = s->y_predictor_table[index]; \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
562 horiz_pred += (predictor_pair >> 1); \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
563 if (predictor_pair & 1) { \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
564 GET_NEXT_INDEX() \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
565 if (!index) { \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
566 GET_NEXT_INDEX() \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
567 predictor_pair = s->fat_y_predictor_table[index]; \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
568 horiz_pred += (predictor_pair >> 1); \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
569 if (predictor_pair & 1) \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
570 GET_NEXT_INDEX() \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
571 else \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
572 index++; \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
573 } \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
574 } else \
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
575 index++;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
576
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
577 #define OUTPUT_PIXEL_PAIR() \
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
578 *current_pixel_pair = *vert_pred + horiz_pred; \
5514
e2dbd1623e1d use reget_buffer and remove internal copying of buffer - codec works again
alex
parents: 4962
diff changeset
579 *vert_pred++ = *current_pixel_pair++;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
580
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
581 static void truemotion1_decode_16bit(TrueMotion1Context *s)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
582 {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
583 int y;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
584 int pixels_left; /* remaining pixels on this line */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
585 unsigned int predictor_pair;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
586 unsigned int horiz_pred;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
587 unsigned int *vert_pred;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
588 unsigned int *current_pixel_pair;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
589 unsigned char *current_line = s->frame.data[0];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
590 int keyframe = s->flags & FLAG_KEYFRAME;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
591
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
592 /* these variables are for managing the stream of macroblock change bits */
6284
20a72aa8179b more const
michael
parents: 6257
diff changeset
593 const unsigned char *mb_change_bits = s->mb_change_bits;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
594 unsigned char mb_change_byte;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
595 unsigned char mb_change_byte_mask;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
596 int mb_change_index;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
597
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
598 /* these variables are for managing the main index stream */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
599 int index_stream_index = 0; /* yes, the index into the index stream */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
600 int index;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
601
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
602 /* clean out the line buffer */
2938
363be7734674 improvements by Reimar D«Óffinger; 24-bit decoding is not perfect, only
melanson
parents: 2753
diff changeset
603 memset(s->vert_pred, 0, s->avctx->width * sizeof(unsigned int));
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
604
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
605 GET_NEXT_INDEX();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
606
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
607 for (y = 0; y < s->avctx->height; y++) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
608
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
609 /* re-init variables for the next line iteration */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
610 horiz_pred = 0;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
611 current_pixel_pair = (unsigned int *)current_line;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
612 vert_pred = s->vert_pred;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
613 mb_change_index = 0;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
614 mb_change_byte = mb_change_bits[mb_change_index++];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
615 mb_change_byte_mask = 0x01;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
616 pixels_left = s->avctx->width;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
617
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
618 while (pixels_left > 0) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
619
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
620 if (keyframe || ((mb_change_byte & mb_change_byte_mask) == 0)) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
621
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
622 switch (y & 3) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
623 case 0:
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
624 /* if macroblock width is 2, apply C-Y-C-Y; else
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
625 * apply C-Y-Y */
1654
1c123e036890 this should make the decoder safe for big-endian platforms
melanson
parents: 1650
diff changeset
626 if (s->block_width == 2) {
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
627 APPLY_C_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
628 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
629 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
630 APPLY_C_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
631 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
632 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
633 } else {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
634 APPLY_C_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
635 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
636 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
637 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
638 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
639 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
640 break;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
641
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
642 case 1:
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
643 case 3:
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
644 /* always apply 2 Y predictors on these iterations */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
645 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
646 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
647 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
648 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
649 break;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
651 case 2:
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
652 /* this iteration might be C-Y-C-Y, Y-Y, or C-Y-Y
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
653 * depending on the macroblock type */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
654 if (s->block_type == BLOCK_2x2) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
655 APPLY_C_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
656 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
657 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
658 APPLY_C_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
659 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
660 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
661 } else if (s->block_type == BLOCK_4x2) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
662 APPLY_C_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
663 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
664 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
665 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
666 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
667 } else {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
668 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
669 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
670 APPLY_Y_PREDICTOR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
671 OUTPUT_PIXEL_PAIR();
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
672 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
673 break;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
674 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
675
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
676 } else {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
677
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
678 /* skip (copy) four pixels, but reassign the horizontal
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
679 * predictor */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
680 *vert_pred++ = *current_pixel_pair++;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
681 horiz_pred = *current_pixel_pair - *vert_pred;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
682 *vert_pred++ = *current_pixel_pair++;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
683
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
684 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
685
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
686 if (!keyframe) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
687 mb_change_byte_mask <<= 1;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
688
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
689 /* next byte */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
690 if (!mb_change_byte_mask) {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
691 mb_change_byte = mb_change_bits[mb_change_index++];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
692 mb_change_byte_mask = 0x01;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
693 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
694 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
695
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
696 pixels_left -= 4;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
697 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
698
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
699 /* next change row */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
700 if (((y + 1) & 3) == 0)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
701 mb_change_bits += s->mb_change_bits_row_size;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
702
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
703 current_line += s->frame.linesize[0];
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
704 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
705 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
706
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
707 static void truemotion1_decode_24bit(TrueMotion1Context *s)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
708 {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
709 int y;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
710 int pixels_left; /* remaining pixels on this line */
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
711 unsigned int predictor_pair;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
712 unsigned int horiz_pred;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
713 unsigned int *vert_pred;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
714 unsigned int *current_pixel_pair;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
715 unsigned char *current_line = s->frame.data[0];
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
716 int keyframe = s->flags & FLAG_KEYFRAME;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
717
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
718 /* these variables are for managing the stream of macroblock change bits */
6284
20a72aa8179b more const
michael
parents: 6257
diff changeset
719 const unsigned char *mb_change_bits = s->mb_change_bits;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
720 unsigned char mb_change_byte;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
721 unsigned char mb_change_byte_mask;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
722 int mb_change_index;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
723
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
724 /* these variables are for managing the main index stream */
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
725 int index_stream_index = 0; /* yes, the index into the index stream */
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
726 int index;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
727
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
728 /* clean out the line buffer */
2939
04cf75617d00 clear the whole vert_pred buffer for 24 bit decoding.
reimar
parents: 2938
diff changeset
729 memset(s->vert_pred, 0, s->avctx->width * sizeof(unsigned int));
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
730
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
731 GET_NEXT_INDEX();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
732
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
733 for (y = 0; y < s->avctx->height; y++) {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
734
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
735 /* re-init variables for the next line iteration */
2938
363be7734674 improvements by Reimar D«Óffinger; 24-bit decoding is not perfect, only
melanson
parents: 2753
diff changeset
736 horiz_pred = 0;
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
737 current_pixel_pair = (unsigned int *)current_line;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
738 vert_pred = s->vert_pred;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
739 mb_change_index = 0;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
740 mb_change_byte = mb_change_bits[mb_change_index++];
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
741 mb_change_byte_mask = 0x01;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
742 pixels_left = s->avctx->width;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
743
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
744 while (pixels_left > 0) {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
745
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
746 if (keyframe || ((mb_change_byte & mb_change_byte_mask) == 0)) {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
747
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
748 switch (y & 3) {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
749 case 0:
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
750 /* if macroblock width is 2, apply C-Y-C-Y; else
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
751 * apply C-Y-Y */
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
752 if (s->block_width == 2) {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
753 APPLY_C_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
754 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
755 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
756 APPLY_C_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
757 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
758 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
759 } else {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
760 APPLY_C_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
761 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
762 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
763 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
764 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
765 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
766 break;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
767
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
768 case 1:
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
769 case 3:
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
770 /* always apply 2 Y predictors on these iterations */
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
771 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
772 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
773 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
774 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
775 break;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
776
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
777 case 2:
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
778 /* this iteration might be C-Y-C-Y, Y-Y, or C-Y-Y
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
779 * depending on the macroblock type */
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
780 if (s->block_type == BLOCK_2x2) {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
781 APPLY_C_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
782 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
783 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
784 APPLY_C_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
785 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
786 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
787 } else if (s->block_type == BLOCK_4x2) {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
788 APPLY_C_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
789 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
790 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
791 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
792 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
793 } else {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
794 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
795 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
796 APPLY_Y_PREDICTOR_24();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
797 OUTPUT_PIXEL_PAIR();
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
798 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
799 break;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
800 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
801
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
802 } else {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
803
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
804 /* skip (copy) four pixels, but reassign the horizontal
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
805 * predictor */
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
806 *vert_pred++ = *current_pixel_pair++;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
807 horiz_pred = *current_pixel_pair - *vert_pred;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
808 *vert_pred++ = *current_pixel_pair++;
2967
ef2149182f1c COSMETICS: Remove all trailing whitespace.
diego
parents: 2939
diff changeset
809
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
810 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
811
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
812 if (!keyframe) {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
813 mb_change_byte_mask <<= 1;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
814
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
815 /* next byte */
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
816 if (!mb_change_byte_mask) {
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
817 mb_change_byte = mb_change_bits[mb_change_index++];
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
818 mb_change_byte_mask = 0x01;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
819 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
820 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
821
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
822 pixels_left -= 4;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
823 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
824
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
825 /* next change row */
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
826 if (((y + 1) & 3) == 0)
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
827 mb_change_bits += s->mb_change_bits_row_size;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
828
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
829 current_line += s->frame.linesize[0];
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
830 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
831 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
832
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
833
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
834 static int truemotion1_decode_frame(AVCodecContext *avctx,
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
835 void *data, int *data_size,
9355
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 8718
diff changeset
836 AVPacket *avpkt)
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
837 {
9355
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 8718
diff changeset
838 const uint8_t *buf = avpkt->data;
54bc8a2727b0 Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an
rbultje
parents: 8718
diff changeset
839 int buf_size = avpkt->size;
4827
b3ee9a1526b0 Get rid of unnecessary pointer casts.
diego
parents: 4801
diff changeset
840 TrueMotion1Context *s = avctx->priv_data;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
841
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
842 s->buf = buf;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
843 s->size = buf_size;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
844
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
845 if (truemotion1_decode_header(s) == -1)
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
846 return -1;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
847
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
848 s->frame.reference = 1;
5514
e2dbd1623e1d use reget_buffer and remove internal copying of buffer - codec works again
alex
parents: 4962
diff changeset
849 s->frame.buffer_hints = FF_BUFFER_HINTS_VALID |
e2dbd1623e1d use reget_buffer and remove internal copying of buffer - codec works again
alex
parents: 4962
diff changeset
850 FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;
e2dbd1623e1d use reget_buffer and remove internal copying of buffer - codec works again
alex
parents: 4962
diff changeset
851 if (avctx->reget_buffer(avctx, &s->frame) < 0) {
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
852 av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
853 return -1;
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
854 }
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
855
5514
e2dbd1623e1d use reget_buffer and remove internal copying of buffer - codec works again
alex
parents: 4962
diff changeset
856 if (compression_types[s->compression].algorithm == ALGO_RGB24H) {
2245
81802fed5b8c Decoding to bgr15/16 from 16bit input. Decoding of 24bit input added, not yet finished, but at least the picture can be recognized
alex
parents: 2073
diff changeset
857 truemotion1_decode_24bit(s);
5514
e2dbd1623e1d use reget_buffer and remove internal copying of buffer - codec works again
alex
parents: 4962
diff changeset
858 } else if (compression_types[s->compression].algorithm != ALGO_NOP) {
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
859 truemotion1_decode_16bit(s);
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
860 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
861
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
862 *data_size = sizeof(AVFrame);
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
863 *(AVFrame*)data = s->frame;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
864
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
865 /* report that the buffer was completely consumed */
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
866 return buf_size;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
867 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
868
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6284
diff changeset
869 static av_cold int truemotion1_decode_end(AVCodecContext *avctx)
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
870 {
4827
b3ee9a1526b0 Get rid of unnecessary pointer casts.
diego
parents: 4801
diff changeset
871 TrueMotion1Context *s = avctx->priv_data;
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
872
5514
e2dbd1623e1d use reget_buffer and remove internal copying of buffer - codec works again
alex
parents: 4962
diff changeset
873 if (s->frame.data[0])
e2dbd1623e1d use reget_buffer and remove internal copying of buffer - codec works again
alex
parents: 4962
diff changeset
874 avctx->release_buffer(avctx, &s->frame);
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
875
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
876 av_free(s->vert_pred);
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
877
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
878 return 0;
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
879 }
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
880
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
881 AVCodec truemotion1_decoder = {
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
882 "truemotion1",
11560
8a4984c5cacc Define AVMediaType enum, and use it instead of enum CodecType, which
stefano
parents: 9985
diff changeset
883 AVMEDIA_TYPE_VIDEO,
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
884 CODEC_ID_TRUEMOTION1,
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
885 sizeof(TrueMotion1Context),
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
886 truemotion1_decode_init,
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
887 NULL,
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
888 truemotion1_decode_end,
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
889 truemotion1_decode_frame,
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
890 CODEC_CAP_DR1,
7040
e943e1409077 Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
stefano
parents: 7006
diff changeset
891 .long_name = NULL_IF_CONFIG_SMALL("Duck TrueMotion 1.0"),
1650
bdade3baabfc initial support for Duck TrueMotion v1 (think of it as On2 VP1); only
melanson
parents:
diff changeset
892 };