Mercurial > libavcodec.hg
annotate h263.c @ 327:d359db02fc90 libavcodec
much better ME for b frames (a bit slow though)
fixed MC rounding for b frames
fixed hq mode with b-frames
author | michaelni |
---|---|
date | Fri, 19 Apr 2002 03:25:20 +0000 |
parents | 15efd80cf51e |
children | 853e1eb30468 |
rev | line source |
---|---|
0 | 1 /* |
2 * H263/MPEG4 backend for ffmpeg encoder and decoder | |
3 * Copyright (c) 2000,2001 Gerard Lantau. | |
78 | 4 * H263+ support. |
0 | 5 * Copyright (c) 2001 Juan J. Sierralta P. |
6 * | |
7 * This program is free software; you can redistribute it and/or modify | |
8 * it under the terms of the GNU General Public License as published by | |
9 * the Free Software Foundation; either version 2 of the License, or | |
10 * (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, | |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 * GNU General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU General Public License | |
18 * along with this program; if not, write to the Free Software | |
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
20 * |
327 | 21 * ac prediction encoding & b-frame support by Michael Niedermayer <michaelni@gmx.at> |
0 | 22 */ |
23 #include "common.h" | |
24 #include "dsputil.h" | |
25 #include "avcodec.h" | |
26 #include "mpegvideo.h" | |
27 #include "h263data.h" | |
28 #include "mpeg4data.h" | |
29 | |
255 | 30 //rounded divison & shift |
31 #define RDIV(a,b) ((a) > 0 ? ((a)+((b)>>1))/(b) : ((a)-((b)>>1))/(b)) | |
32 #define RSHIFT(a,b) ((a) > 0 ? ((a) + (1<<((b)-1)))>>(b) : ((a) + (1<<((b)-1))-1)>>(b)) | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
33 #define ABS(a) (((a)>=0)?(a):(-(a))) |
290 | 34 #define MAX(a,b) ((a) > (b) ? (a) : (b)) |
35 #define MIN(a,b) ((a) < (b) ? (a) : (b)) | |
255 | 36 |
0 | 37 static void h263_encode_block(MpegEncContext * s, DCTELEM * block, |
38 int n); | |
324 | 39 static void h263_encode_motion(MpegEncContext * s, int val, int fcode); |
78 | 40 static void h263p_encode_umotion(MpegEncContext * s, int val); |
0 | 41 static void mpeg4_encode_block(MpegEncContext * s, DCTELEM * block, |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
42 int n, int dc, UINT8 *scan_table); |
262 | 43 static int h263_decode_motion(MpegEncContext * s, int pred, int fcode); |
78 | 44 static int h263p_decode_umotion(MpegEncContext * s, int pred); |
0 | 45 static int h263_decode_block(MpegEncContext * s, DCTELEM * block, |
46 int n, int coded); | |
47 static int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block, | |
48 int n, int coded); | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
49 static inline int mpeg4_pred_dc(MpegEncContext * s, int n, UINT16 **dc_val_ptr, int *dir_ptr); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
50 static void mpeg4_inv_pred_ac(MpegEncContext * s, INT16 *block, int n, |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
51 int dir); |
290 | 52 static void mpeg4_decode_sprite_trajectory(MpegEncContext * s); |
53 | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
54 extern UINT32 inverse[256]; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
55 |
292
73a9ce3d9715
fcode_tables where too small, found by Klaas-Pieter Vlieg <vlieg@eurescom.de>
michaelni
parents:
291
diff
changeset
|
56 static UINT16 mv_penalty[MAX_FCODE+1][MAX_MV*2+1]; |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
57 static UINT8 fcode_tab[MAX_MV*2+1]; |
287 | 58 static UINT8 umv_fcode_tab[MAX_MV*2+1]; |
0 | 59 |
293 | 60 static UINT16 uni_DCtab_lum [512][2]; |
61 static UINT16 uni_DCtab_chrom[512][2]; | |
62 | |
0 | 63 int h263_get_picture_format(int width, int height) |
64 { | |
65 int format; | |
66 | |
67 if (width == 128 && height == 96) | |
68 format = 1; | |
69 else if (width == 176 && height == 144) | |
70 format = 2; | |
71 else if (width == 352 && height == 288) | |
72 format = 3; | |
73 else if (width == 704 && height == 576) | |
74 format = 4; | |
75 else if (width == 1408 && height == 1152) | |
76 format = 5; | |
77 else | |
78 format = 7; | |
79 return format; | |
80 } | |
81 | |
82 void h263_encode_picture_header(MpegEncContext * s, int picture_number) | |
83 { | |
78 | 84 int format; |
0 | 85 |
86 align_put_bits(&s->pb); | |
231 | 87 |
88 /* Update the pointer to last GOB */ | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
89 s->ptr_lastgob = pbBufPtr(&s->pb); |
231 | 90 s->gob_number = 0; |
91 | |
92 put_bits(&s->pb, 22, 0x20); /* PSC */ | |
241 | 93 put_bits(&s->pb, 8, (((INT64)s->picture_number * 30 * FRAME_RATE_BASE) / |
0 | 94 s->frame_rate) & 0xff); |
95 | |
96 put_bits(&s->pb, 1, 1); /* marker */ | |
97 put_bits(&s->pb, 1, 0); /* h263 id */ | |
98 put_bits(&s->pb, 1, 0); /* split screen off */ | |
99 put_bits(&s->pb, 1, 0); /* camera off */ | |
100 put_bits(&s->pb, 1, 0); /* freeze picture release off */ | |
78 | 101 |
102 format = h263_get_picture_format(s->width, s->height); | |
0 | 103 if (!s->h263_plus) { |
104 /* H.263v1 */ | |
105 put_bits(&s->pb, 3, format); | |
106 put_bits(&s->pb, 1, (s->pict_type == P_TYPE)); | |
107 /* By now UMV IS DISABLED ON H.263v1, since the restrictions | |
108 of H.263v1 UMV implies to check the predicted MV after | |
109 calculation of the current MB to see if we're on the limits */ | |
110 put_bits(&s->pb, 1, 0); /* unrestricted motion vector: off */ | |
111 put_bits(&s->pb, 1, 0); /* SAC: off */ | |
112 put_bits(&s->pb, 1, 0); /* advanced prediction mode: off */ | |
113 put_bits(&s->pb, 1, 0); /* not PB frame */ | |
114 put_bits(&s->pb, 5, s->qscale); | |
115 put_bits(&s->pb, 1, 0); /* Continuous Presence Multipoint mode: off */ | |
116 } else { | |
117 /* H.263v2 */ | |
118 /* H.263 Plus PTYPE */ | |
119 put_bits(&s->pb, 3, 7); | |
120 put_bits(&s->pb,3,1); /* Update Full Extended PTYPE */ | |
78 | 121 if (format == 7) |
122 put_bits(&s->pb,3,6); /* Custom Source Format */ | |
123 else | |
124 put_bits(&s->pb, 3, format); | |
125 | |
0 | 126 put_bits(&s->pb,1,0); /* Custom PCF: off */ |
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
127 s->umvplus = (s->pict_type == P_TYPE) && s->unrestricted_mv; |
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
128 put_bits(&s->pb, 1, s->umvplus); /* Unrestricted Motion Vector */ |
0 | 129 put_bits(&s->pb,1,0); /* SAC: off */ |
130 put_bits(&s->pb,1,0); /* Advanced Prediction Mode: off */ | |
131 put_bits(&s->pb,1,0); /* Advanced Intra Coding: off */ | |
132 put_bits(&s->pb,1,0); /* Deblocking Filter: off */ | |
133 put_bits(&s->pb,1,0); /* Slice Structured: off */ | |
134 put_bits(&s->pb,1,0); /* Reference Picture Selection: off */ | |
135 put_bits(&s->pb,1,0); /* Independent Segment Decoding: off */ | |
136 put_bits(&s->pb,1,0); /* Alternative Inter VLC: off */ | |
137 put_bits(&s->pb,1,0); /* Modified Quantization: off */ | |
138 put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */ | |
139 put_bits(&s->pb,3,0); /* Reserved */ | |
140 | |
141 put_bits(&s->pb, 3, s->pict_type == P_TYPE); | |
142 | |
143 put_bits(&s->pb,1,0); /* Reference Picture Resampling: off */ | |
144 put_bits(&s->pb,1,0); /* Reduced-Resolution Update: off */ | |
145 put_bits(&s->pb,1,0); /* Rounding Type */ | |
146 put_bits(&s->pb,2,0); /* Reserved */ | |
147 put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */ | |
148 | |
149 /* This should be here if PLUSPTYPE */ | |
150 put_bits(&s->pb, 1, 0); /* Continuous Presence Multipoint mode: off */ | |
151 | |
78 | 152 if (format == 7) { |
153 /* Custom Picture Format (CPFMT) */ | |
0 | 154 |
78 | 155 put_bits(&s->pb,4,2); /* Aspect ratio: CIF 12:11 (4:3) picture */ |
156 put_bits(&s->pb,9,(s->width >> 2) - 1); | |
157 put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */ | |
158 put_bits(&s->pb,9,(s->height >> 2)); | |
159 } | |
160 | |
0 | 161 /* Unlimited Unrestricted Motion Vectors Indicator (UUI) */ |
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
162 if (s->umvplus) |
0 | 163 put_bits(&s->pb,1,1); /* Limited according tables of Annex D */ |
164 put_bits(&s->pb, 5, s->qscale); | |
165 } | |
166 | |
167 put_bits(&s->pb, 1, 0); /* no PEI */ | |
168 } | |
169 | |
162 | 170 int h263_encode_gob_header(MpegEncContext * s, int mb_line) |
171 { | |
172 int pdif=0; | |
173 | |
174 /* Check to see if we need to put a new GBSC */ | |
175 /* for RTP packetization */ | |
176 if (s->rtp_mode) { | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
177 pdif = pbBufPtr(&s->pb) - s->ptr_lastgob; |
162 | 178 if (pdif >= s->rtp_payload_size) { |
179 /* Bad luck, packet must be cut before */ | |
180 align_put_bits(&s->pb); | |
231 | 181 flush_put_bits(&s->pb); |
182 /* Call the RTP callback to send the last GOB */ | |
183 if (s->rtp_callback) { | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
184 pdif = pbBufPtr(&s->pb) - s->ptr_lastgob; |
231 | 185 s->rtp_callback(s->ptr_lastgob, pdif, s->gob_number); |
186 } | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
187 s->ptr_lastgob = pbBufPtr(&s->pb); |
162 | 188 put_bits(&s->pb, 17, 1); /* GBSC */ |
231 | 189 s->gob_number = mb_line / s->gob_index; |
162 | 190 put_bits(&s->pb, 5, s->gob_number); /* GN */ |
231 | 191 put_bits(&s->pb, 2, s->pict_type == I_TYPE); /* GFID */ |
162 | 192 put_bits(&s->pb, 5, s->qscale); /* GQUANT */ |
231 | 193 //fprintf(stderr,"\nGOB: %2d size: %d", s->gob_number - 1, pdif); |
162 | 194 return pdif; |
195 } else if (pdif + s->mb_line_avgsize >= s->rtp_payload_size) { | |
196 /* Cut the packet before we can't */ | |
197 align_put_bits(&s->pb); | |
231 | 198 flush_put_bits(&s->pb); |
199 /* Call the RTP callback to send the last GOB */ | |
200 if (s->rtp_callback) { | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
201 pdif = pbBufPtr(&s->pb) - s->ptr_lastgob; |
231 | 202 s->rtp_callback(s->ptr_lastgob, pdif, s->gob_number); |
203 } | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
204 s->ptr_lastgob = pbBufPtr(&s->pb); |
162 | 205 put_bits(&s->pb, 17, 1); /* GBSC */ |
231 | 206 s->gob_number = mb_line / s->gob_index; |
162 | 207 put_bits(&s->pb, 5, s->gob_number); /* GN */ |
231 | 208 put_bits(&s->pb, 2, s->pict_type == I_TYPE); /* GFID */ |
162 | 209 put_bits(&s->pb, 5, s->qscale); /* GQUANT */ |
231 | 210 //fprintf(stderr,"\nGOB: %2d size: %d", s->gob_number - 1, pdif); |
162 | 211 return pdif; |
212 } | |
213 } | |
214 return 0; | |
215 } | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
216 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
217 static inline int decide_ac_pred(MpegEncContext * s, DCTELEM block[6][64], int dir[6]) |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
218 { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
219 int score0=0, score1=0; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
220 int i, n; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
221 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
222 for(n=0; n<6; n++){ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
223 INT16 *ac_val, *ac_val1; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
224 |
266 | 225 ac_val = s->ac_val[0][0] + s->block_index[n] * 16; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
226 ac_val1= ac_val; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
227 if(dir[n]){ |
266 | 228 ac_val-= s->block_wrap[n]*16; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
229 for(i=1; i<8; i++){ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
230 const int level= block[n][block_permute_op(i )]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
231 score0+= ABS(level); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
232 score1+= ABS(level - ac_val[i+8]); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
233 ac_val1[i ]= block[n][block_permute_op(i<<3)]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
234 ac_val1[i+8]= level; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
235 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
236 }else{ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
237 ac_val-= 16; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
238 for(i=1; i<8; i++){ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
239 const int level= block[n][block_permute_op(i<<3)]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
240 score0+= ABS(level); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
241 score1+= ABS(level - ac_val[i]); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
242 ac_val1[i ]= level; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
243 ac_val1[i+8]= block[n][block_permute_op(i )]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
244 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
245 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
246 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
247 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
248 return score0 > score1 ? 1 : 0; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
249 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
250 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
251 void mpeg4_encode_mb(MpegEncContext * s, |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
252 DCTELEM block[6][64], |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
253 int motion_x, int motion_y) |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
254 { |
324 | 255 int cbpc, cbpy, i, pred_x, pred_y; |
286 | 256 int bits; |
162 | 257 |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
258 // printf("**mb x=%d y=%d\n", s->mb_x, s->mb_y); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
259 if (!s->mb_intra) { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
260 /* compute cbp */ |
324 | 261 int cbp = 0; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
262 for (i = 0; i < 6; i++) { |
324 | 263 if (s->block_last_index[i] >= 0) |
264 cbp |= 1 << (5 - i); | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
265 } |
324 | 266 |
267 if(s->pict_type==B_TYPE){ | |
268 static const int mb_type_table[8]= {-1, 2, 3, 1,-1,-1,-1, 0}; /* convert from mv_dir to type */ | |
269 int mb_type= mb_type_table[s->mv_dir]; | |
270 | |
271 if(s->mb_x==0){ | |
272 s->last_mv[0][0][0]= | |
273 s->last_mv[0][0][1]= | |
274 s->last_mv[1][0][0]= | |
275 s->last_mv[1][0][1]= 0; | |
276 } | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
277 |
324 | 278 /* nothing to do if this MB was skiped in the next P Frame */ |
279 if(s->mbskip_table[s->mb_y * s->mb_width + s->mb_x]){ | |
280 s->skip_count++; | |
281 s->mv[0][0][0]= | |
282 s->mv[0][0][1]= | |
283 s->mv[1][0][0]= | |
284 s->mv[1][0][1]= 0; | |
327 | 285 s->mv_dir= MV_DIR_FORWARD; //doesnt matter |
324 | 286 return; |
287 } | |
288 | |
289 if ((cbp | motion_x | motion_y | mb_type) ==0) { | |
290 /* direct MB with MV={0,0} */ | |
291 put_bits(&s->pb, 1, 1); /* mb not coded modb1=1 */ | |
292 s->misc_bits++; | |
293 s->last_bits++; | |
294 s->skip_count++; | |
295 return; | |
296 } | |
297 put_bits(&s->pb, 1, 0); /* mb coded modb1=0 */ | |
298 put_bits(&s->pb, 1, cbp ? 0 : 1); /* modb2 */ //FIXME merge | |
299 put_bits(&s->pb, mb_type+1, 1); // this table is so simple that we dont need it :) | |
300 if(cbp) put_bits(&s->pb, 6, cbp); | |
301 | |
302 if(cbp && mb_type) | |
303 put_bits(&s->pb, 1, 0); /* no q-scale change */ | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
304 |
295 | 305 bits= get_bit_count(&s->pb); |
306 s->misc_bits+= bits - s->last_bits; | |
307 s->last_bits=bits; | |
308 | |
324 | 309 switch(mb_type) |
310 { | |
311 case 0: /* direct */ | |
312 h263_encode_motion(s, motion_x, 1); | |
313 h263_encode_motion(s, motion_y, 1); | |
314 break; | |
315 case 1: /* bidir */ | |
316 h263_encode_motion(s, s->mv[0][0][0] - s->last_mv[0][0][0], s->f_code); | |
317 h263_encode_motion(s, s->mv[0][0][1] - s->last_mv[0][0][1], s->f_code); | |
318 h263_encode_motion(s, s->mv[1][0][0] - s->last_mv[1][0][0], s->b_code); | |
319 h263_encode_motion(s, s->mv[1][0][1] - s->last_mv[1][0][1], s->b_code); | |
320 s->last_mv[0][0][0]= s->mv[0][0][0]; | |
321 s->last_mv[0][0][1]= s->mv[0][0][1]; | |
322 s->last_mv[1][0][0]= s->mv[1][0][0]; | |
323 s->last_mv[1][0][1]= s->mv[1][0][1]; | |
324 break; | |
325 case 2: /* backward */ | |
326 h263_encode_motion(s, motion_x - s->last_mv[1][0][0], s->b_code); | |
327 h263_encode_motion(s, motion_y - s->last_mv[1][0][1], s->b_code); | |
328 s->last_mv[1][0][0]= motion_x; | |
329 s->last_mv[1][0][1]= motion_y; | |
330 break; | |
331 case 3: /* forward */ | |
332 h263_encode_motion(s, motion_x - s->last_mv[0][0][0], s->f_code); | |
333 h263_encode_motion(s, motion_y - s->last_mv[0][0][1], s->f_code); | |
334 s->last_mv[0][0][0]= motion_x; | |
335 s->last_mv[0][0][1]= motion_y; | |
336 break; | |
327 | 337 default: |
338 printf("unknown mb type\n"); | |
324 | 339 return; |
340 } | |
341 bits= get_bit_count(&s->pb); | |
342 s->mv_bits+= bits - s->last_bits; | |
343 s->last_bits=bits; | |
295 | 344 |
324 | 345 /* encode each block */ |
346 for (i = 0; i < 6; i++) { | |
347 mpeg4_encode_block(s, block[i], i, 0, zigzag_direct); | |
348 } | |
349 bits= get_bit_count(&s->pb); | |
350 s->p_tex_bits+= bits - s->last_bits; | |
351 s->last_bits=bits; | |
352 }else{ /* s->pict_type==B_TYPE */ | |
353 if ((cbp | motion_x | motion_y) == 0 && s->mv_type==MV_TYPE_16X16) { | |
354 /* skip macroblock */ | |
355 put_bits(&s->pb, 1, 1); | |
356 s->misc_bits++; | |
357 s->last_bits++; | |
358 s->skip_count++; | |
359 s->mb_skiped=1; // we need that for b-frames | |
360 return; | |
295 | 361 } |
324 | 362 put_bits(&s->pb, 1, 0); /* mb coded */ |
363 if(s->mv_type==MV_TYPE_16X16){ | |
364 cbpc = cbp & 3; | |
365 put_bits(&s->pb, | |
366 inter_MCBPC_bits[cbpc], | |
367 inter_MCBPC_code[cbpc]); | |
368 cbpy = cbp >> 2; | |
369 cbpy ^= 0xf; | |
370 put_bits(&s->pb, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); | |
371 | |
372 bits= get_bit_count(&s->pb); | |
373 s->misc_bits+= bits - s->last_bits; | |
374 s->last_bits=bits; | |
375 | |
376 /* motion vectors: 16x16 mode */ | |
377 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
378 | |
379 h263_encode_motion(s, motion_x - pred_x, s->f_code); | |
380 h263_encode_motion(s, motion_y - pred_y, s->f_code); | |
381 }else{ | |
382 cbpc = (cbp & 3)+16; | |
383 put_bits(&s->pb, | |
384 inter_MCBPC_bits[cbpc], | |
385 inter_MCBPC_code[cbpc]); | |
386 cbpy = cbp >> 2; | |
387 cbpy ^= 0xf; | |
388 put_bits(&s->pb, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); | |
389 | |
390 bits= get_bit_count(&s->pb); | |
391 s->misc_bits+= bits - s->last_bits; | |
392 s->last_bits=bits; | |
393 | |
394 for(i=0; i<4; i++){ | |
395 /* motion vectors: 8x8 mode*/ | |
396 h263_pred_motion(s, i, &pred_x, &pred_y); | |
397 | |
398 h263_encode_motion(s, s->motion_val[ s->block_index[i] ][0] - pred_x, s->f_code); | |
399 h263_encode_motion(s, s->motion_val[ s->block_index[i] ][1] - pred_y, s->f_code); | |
400 } | |
401 } | |
402 bits= get_bit_count(&s->pb); | |
403 s->mv_bits+= bits - s->last_bits; | |
404 s->last_bits=bits; | |
405 | |
406 /* encode each block */ | |
407 for (i = 0; i < 6; i++) { | |
408 mpeg4_encode_block(s, block[i], i, 0, zigzag_direct); | |
409 } | |
410 bits= get_bit_count(&s->pb); | |
411 s->p_tex_bits+= bits - s->last_bits; | |
412 s->last_bits=bits; | |
413 s->p_count++; | |
295 | 414 } |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
415 } else { |
324 | 416 int cbp; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
417 int dc_diff[6]; //dc values with the dc prediction subtracted |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
418 int dir[6]; //prediction direction |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
419 int zigzag_last_index[6]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
420 UINT8 *scan_table[6]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
421 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
422 for(i=0; i<6; i++){ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
423 const int level= block[i][0]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
424 UINT16 *dc_ptr; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
425 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
426 dc_diff[i]= level - mpeg4_pred_dc(s, i, &dc_ptr, &dir[i]); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
427 if (i < 4) { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
428 *dc_ptr = level * s->y_dc_scale; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
429 } else { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
430 *dc_ptr = level * s->c_dc_scale; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
431 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
432 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
433 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
434 s->ac_pred= decide_ac_pred(s, block, dir); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
435 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
436 if(s->ac_pred){ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
437 for(i=0; i<6; i++){ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
438 UINT8 *st; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
439 int last_index; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
440 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
441 mpeg4_inv_pred_ac(s, block[i], i, dir[i]); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
442 if (dir[i]==0) st = ff_alternate_vertical_scan; /* left */ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
443 else st = ff_alternate_horizontal_scan; /* top */ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
444 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
445 for(last_index=63; last_index>=0; last_index--) //FIXME optimize |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
446 if(block[i][st[last_index]]) break; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
447 zigzag_last_index[i]= s->block_last_index[i]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
448 s->block_last_index[i]= last_index; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
449 scan_table[i]= st; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
450 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
451 }else{ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
452 for(i=0; i<6; i++) |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
453 scan_table[i]= zigzag_direct; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
454 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
455 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
456 /* compute cbp */ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
457 cbp = 0; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
458 for (i = 0; i < 6; i++) { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
459 if (s->block_last_index[i] >= 1) |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
460 cbp |= 1 << (5 - i); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
461 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
462 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
463 cbpc = cbp & 3; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
464 if (s->pict_type == I_TYPE) { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
465 put_bits(&s->pb, |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
466 intra_MCBPC_bits[cbpc], |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
467 intra_MCBPC_code[cbpc]); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
468 } else { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
469 put_bits(&s->pb, 1, 0); /* mb coded */ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
470 put_bits(&s->pb, |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
471 inter_MCBPC_bits[cbpc + 4], |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
472 inter_MCBPC_code[cbpc + 4]); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
473 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
474 put_bits(&s->pb, 1, s->ac_pred); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
475 cbpy = cbp >> 2; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
476 put_bits(&s->pb, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
477 |
286 | 478 bits= get_bit_count(&s->pb); |
479 s->misc_bits+= bits - s->last_bits; | |
480 s->last_bits=bits; | |
481 | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
482 /* encode each block */ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
483 for (i = 0; i < 6; i++) { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
484 mpeg4_encode_block(s, block[i], i, dc_diff[i], scan_table[i]); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
485 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
486 |
286 | 487 bits= get_bit_count(&s->pb); |
488 s->i_tex_bits+= bits - s->last_bits; | |
489 s->last_bits=bits; | |
490 s->i_count++; | |
491 | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
492 /* restore ac coeffs & last_index stuff if we messed them up with the prediction */ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
493 if(s->ac_pred){ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
494 for(i=0; i<6; i++){ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
495 int j; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
496 INT16 *ac_val; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
497 |
266 | 498 ac_val = s->ac_val[0][0] + s->block_index[i] * 16; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
499 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
500 if(dir[i]){ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
501 for(j=1; j<8; j++) |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
502 block[i][block_permute_op(j )]= ac_val[j+8]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
503 }else{ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
504 for(j=1; j<8; j++) |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
505 block[i][block_permute_op(j<<3)]= ac_val[j ]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
506 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
507 s->block_last_index[i]= zigzag_last_index[i]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
508 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
509 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
510 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
511 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
512 |
0 | 513 void h263_encode_mb(MpegEncContext * s, |
514 DCTELEM block[6][64], | |
515 int motion_x, int motion_y) | |
516 { | |
517 int cbpc, cbpy, i, cbp, pred_x, pred_y; | |
162 | 518 |
0 | 519 // printf("**mb x=%d y=%d\n", s->mb_x, s->mb_y); |
324 | 520 if (!s->mb_intra) { |
78 | 521 /* compute cbp */ |
324 | 522 cbp = 0; |
523 for (i = 0; i < 6; i++) { | |
524 if (s->block_last_index[i] >= 0) | |
525 cbp |= 1 << (5 - i); | |
526 } | |
527 if ((cbp | motion_x | motion_y) == 0) { | |
528 /* skip macroblock */ | |
529 put_bits(&s->pb, 1, 1); | |
530 return; | |
531 } | |
532 put_bits(&s->pb, 1, 0); /* mb coded */ | |
533 cbpc = cbp & 3; | |
534 put_bits(&s->pb, | |
535 inter_MCBPC_bits[cbpc], | |
536 inter_MCBPC_code[cbpc]); | |
537 cbpy = cbp >> 2; | |
538 cbpy ^= 0xf; | |
539 put_bits(&s->pb, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); | |
0 | 540 |
324 | 541 /* motion vectors: 16x16 mode only now */ |
542 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
78 | 543 |
324 | 544 if (!s->umvplus) { |
545 h263_encode_motion(s, motion_x - pred_x, s->f_code); | |
546 h263_encode_motion(s, motion_y - pred_y, s->f_code); | |
547 } | |
548 else { | |
549 h263p_encode_umotion(s, motion_x - pred_x); | |
550 h263p_encode_umotion(s, motion_y - pred_y); | |
551 if (((motion_x - pred_x) == 1) && ((motion_y - pred_y) == 1)) | |
78 | 552 /* To prevent Start Code emulation */ |
324 | 553 put_bits(&s->pb,1,1); |
554 } | |
78 | 555 } else { |
0 | 556 /* compute cbp */ |
557 cbp = 0; | |
558 for (i = 0; i < 6; i++) { | |
559 if (s->block_last_index[i] >= 1) | |
560 cbp |= 1 << (5 - i); | |
561 } | |
562 | |
563 cbpc = cbp & 3; | |
564 if (s->pict_type == I_TYPE) { | |
565 put_bits(&s->pb, | |
566 intra_MCBPC_bits[cbpc], | |
567 intra_MCBPC_code[cbpc]); | |
568 } else { | |
569 put_bits(&s->pb, 1, 0); /* mb coded */ | |
570 put_bits(&s->pb, | |
571 inter_MCBPC_bits[cbpc + 4], | |
572 inter_MCBPC_code[cbpc + 4]); | |
573 } | |
574 if (s->h263_pred) { | |
575 /* XXX: currently, we do not try to use ac prediction */ | |
576 put_bits(&s->pb, 1, 0); /* no ac prediction */ | |
577 } | |
578 cbpy = cbp >> 2; | |
579 put_bits(&s->pb, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); | |
580 } | |
581 | |
582 /* encode each block */ | |
294 | 583 for (i = 0; i < 6; i++) { |
584 h263_encode_block(s, block[i], i); | |
0 | 585 } |
586 } | |
587 | |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
588 void h263_pred_acdc(MpegEncContext * s, INT16 *block, int n) |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
589 { |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
590 int x, y, wrap, a, c, pred_dc, scale, i; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
591 INT16 *dc_val, *ac_val, *ac_val1; |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
592 |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
593 /* find prediction */ |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
594 if (n < 4) { |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
595 x = 2 * s->mb_x + 1 + (n & 1); |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
596 y = 2 * s->mb_y + 1 + ((n & 2) >> 1); |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
597 wrap = s->mb_width * 2 + 2; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
598 dc_val = s->dc_val[0]; |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
599 ac_val = s->ac_val[0][0]; |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
600 scale = s->y_dc_scale; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
601 } else { |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
602 x = s->mb_x + 1; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
603 y = s->mb_y + 1; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
604 wrap = s->mb_width + 2; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
605 dc_val = s->dc_val[n - 4 + 1]; |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
606 ac_val = s->ac_val[n - 4 + 1][0]; |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
607 scale = s->c_dc_scale; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
608 } |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
609 |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
610 ac_val += ((y) * wrap + (x)) * 16; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
611 ac_val1 = ac_val; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
612 |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
613 /* B C |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
614 * A X |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
615 */ |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
616 a = dc_val[(x - 1) + (y) * wrap]; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
617 c = dc_val[(x) + (y - 1) * wrap]; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
618 |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
619 pred_dc = 1024; |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
620 if (s->ac_pred) { |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
621 if (s->h263_aic_dir) { |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
622 /* left prediction */ |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
623 if (a != 1024) { |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
624 ac_val -= 16; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
625 for(i=1;i<8;i++) { |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
626 block[block_permute_op(i*8)] += ac_val[i]; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
627 } |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
628 pred_dc = a; |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
629 } |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
630 } else { |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
631 /* top prediction */ |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
632 if (c != 1024) { |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
633 ac_val -= 16 * wrap; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
634 for(i=1;i<8;i++) { |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
635 block[block_permute_op(i)] += ac_val[i + 8]; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
636 } |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
637 pred_dc = c; |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
638 } |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
639 } |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
640 } else { |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
641 /* just DC prediction */ |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
642 if (a != 1024 && c != 1024) |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
643 pred_dc = (a + c) >> 1; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
644 else if (a != 1024) |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
645 pred_dc = a; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
646 else |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
647 pred_dc = c; |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
648 } |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
649 |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
650 /* we assume pred is positive */ |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
651 block[0]=block[0]*scale + pred_dc; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
652 |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
653 if (block[0] < 0) |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
654 block[0] = 0; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
655 else if (!(block[0] & 1)) |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
656 block[0]++; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
657 |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
658 /* Update AC/DC tables */ |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
659 dc_val[(x) + (y) * wrap] = block[0]; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
660 |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
661 /* left copy */ |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
662 for(i=1;i<8;i++) |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
663 ac_val1[i] = block[block_permute_op(i * 8)]; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
664 /* top copy */ |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
665 for(i=1;i<8;i++) |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
666 ac_val1[8 + i] = block[block_permute_op(i)]; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
667 } |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
668 |
0 | 669 INT16 *h263_pred_motion(MpegEncContext * s, int block, |
670 int *px, int *py) | |
671 { | |
266 | 672 int xy, wrap; |
0 | 673 INT16 *A, *B, *C, *mot_val; |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
674 static const int off[4]= {2, 1, 1, -1}; |
0 | 675 |
266 | 676 wrap = s->block_wrap[0]; |
677 xy = s->block_index[block]; | |
0 | 678 |
245 | 679 mot_val = s->motion_val[xy]; |
0 | 680 |
681 /* special case for first line */ | |
272 | 682 if ((s->mb_y == 0 || s->first_slice_line || s->first_gob_line) && block<2) { |
245 | 683 A = s->motion_val[xy - 1]; |
0 | 684 *px = A[0]; |
685 *py = A[1]; | |
686 } else { | |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
687 A = s->motion_val[xy - 1]; |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
688 B = s->motion_val[xy - wrap]; |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
689 C = s->motion_val[xy + off[block] - wrap]; |
0 | 690 *px = mid_pred(A[0], B[0], C[0]); |
691 *py = mid_pred(A[1], B[1], C[1]); | |
692 } | |
693 return mot_val; | |
694 } | |
695 | |
324 | 696 static void h263_encode_motion(MpegEncContext * s, int val, int f_code) |
0 | 697 { |
698 int range, l, m, bit_size, sign, code, bits; | |
699 | |
700 if (val == 0) { | |
701 /* zero vector */ | |
702 code = 0; | |
703 put_bits(&s->pb, mvtab[code][1], mvtab[code][0]); | |
704 } else { | |
324 | 705 bit_size = f_code - 1; |
0 | 706 range = 1 << bit_size; |
707 /* modulo encoding */ | |
708 l = range * 32; | |
709 m = 2 * l; | |
710 if (val < -l) { | |
711 val += m; | |
712 } else if (val >= l) { | |
713 val -= m; | |
714 } | |
715 | |
716 if (val >= 0) { | |
717 sign = 0; | |
718 } else { | |
719 val = -val; | |
720 sign = 1; | |
721 } | |
312 | 722 val--; |
723 code = (val >> bit_size) + 1; | |
724 bits = val & (range - 1); | |
0 | 725 |
726 put_bits(&s->pb, mvtab[code][1] + 1, (mvtab[code][0] << 1) | sign); | |
727 if (bit_size > 0) { | |
728 put_bits(&s->pb, bit_size, bits); | |
729 } | |
730 } | |
731 } | |
732 | |
78 | 733 /* Encode MV differences on H.263+ with Unrestricted MV mode */ |
734 static void h263p_encode_umotion(MpegEncContext * s, int val) | |
735 { | |
736 short sval = 0; | |
737 short i = 0; | |
738 short n_bits = 0; | |
739 short temp_val; | |
740 int code = 0; | |
741 int tcode; | |
742 | |
743 if ( val == 0) | |
744 put_bits(&s->pb, 1, 1); | |
745 else if (val == 1) | |
746 put_bits(&s->pb, 3, 0); | |
747 else if (val == -1) | |
748 put_bits(&s->pb, 3, 2); | |
749 else { | |
750 | |
751 sval = ((val < 0) ? (short)(-val):(short)val); | |
752 temp_val = sval; | |
753 | |
754 while (temp_val != 0) { | |
755 temp_val = temp_val >> 1; | |
756 n_bits++; | |
757 } | |
758 | |
759 i = n_bits - 1; | |
760 while (i > 0) { | |
761 tcode = (sval & (1 << (i-1))) >> (i-1); | |
762 tcode = (tcode << 1) | 1; | |
763 code = (code << 2) | tcode; | |
764 i--; | |
765 } | |
766 code = ((code << 1) | (val < 0)) << 1; | |
767 put_bits(&s->pb, (2*n_bits)+1, code); | |
768 //printf("\nVal = %d\tCode = %d", sval, code); | |
769 } | |
770 } | |
771 | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
772 static void init_mv_penalty_and_fcode(MpegEncContext *s) |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
773 { |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
774 int f_code; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
775 int mv; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
776 for(f_code=1; f_code<=MAX_FCODE; f_code++){ |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
777 for(mv=-MAX_MV; mv<=MAX_MV; mv++){ |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
778 int len; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
779 |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
780 if(mv==0) len= mvtab[0][1]; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
781 else{ |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
782 int val, bit_size, range, code; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
783 |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
784 bit_size = s->f_code - 1; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
785 range = 1 << bit_size; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
786 |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
787 val=mv; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
788 if (val < 0) |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
789 val = -val; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
790 val--; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
791 code = (val >> bit_size) + 1; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
792 if(code<33){ |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
793 len= mvtab[code][1] + 1 + bit_size; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
794 }else{ |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
795 len= mvtab[32][1] + 2 + bit_size; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
796 } |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
797 } |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
798 |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
799 mv_penalty[f_code][mv+MAX_MV]= len; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
800 } |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
801 } |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
802 |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
803 for(f_code=MAX_FCODE; f_code>0; f_code--){ |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
804 for(mv=-(16<<f_code); mv<(16<<f_code); mv++){ |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
805 fcode_tab[mv+MAX_MV]= f_code; |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
806 } |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
807 } |
287 | 808 |
809 for(mv=0; mv<MAX_MV*2+1; mv++){ | |
810 umv_fcode_tab[mv]= 1; | |
811 } | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
812 } |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
813 |
293 | 814 static void init_uni_dc_tab() |
815 { | |
816 int level, uni_code, uni_len; | |
817 | |
312 | 818 for(level=-256; level<256; level++){ |
293 | 819 int size, v, l; |
820 /* find number of bits */ | |
821 size = 0; | |
822 v = abs(level); | |
823 while (v) { | |
824 v >>= 1; | |
825 size++; | |
826 } | |
827 | |
828 if (level < 0) | |
829 l= (-level) ^ ((1 << size) - 1); | |
830 else | |
831 l= level; | |
832 | |
833 /* luminance */ | |
834 uni_code= DCtab_lum[size][0]; | |
835 uni_len = DCtab_lum[size][1]; | |
836 | |
837 if (size > 0) { | |
838 uni_code<<=size; uni_code|=l; | |
839 uni_len+=size; | |
840 if (size > 8){ | |
841 uni_code<<=1; uni_code|=1; | |
842 uni_len++; | |
843 } | |
844 } | |
845 uni_DCtab_lum[level+256][0]= uni_code; | |
846 uni_DCtab_lum[level+256][1]= uni_len; | |
847 | |
848 /* chrominance */ | |
849 uni_code= DCtab_chrom[size][0]; | |
850 uni_len = DCtab_chrom[size][1]; | |
851 | |
852 if (size > 0) { | |
853 uni_code<<=size; uni_code|=l; | |
854 uni_len+=size; | |
855 if (size > 8){ | |
856 uni_code<<=1; uni_code|=1; | |
857 uni_len++; | |
858 } | |
859 } | |
860 uni_DCtab_chrom[level+256][0]= uni_code; | |
861 uni_DCtab_chrom[level+256][1]= uni_len; | |
862 | |
863 } | |
864 } | |
865 | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
866 void h263_encode_init(MpegEncContext *s) |
0 | 867 { |
868 static int done = 0; | |
869 | |
870 if (!done) { | |
871 done = 1; | |
293 | 872 |
873 init_uni_dc_tab(); | |
874 | |
0 | 875 init_rl(&rl_inter); |
876 init_rl(&rl_intra); | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
877 |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
878 init_mv_penalty_and_fcode(s); |
0 | 879 } |
287 | 880 s->mv_penalty= mv_penalty; //FIXME exact table for msmpeg4 & h263p |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
881 |
287 | 882 // use fcodes >1 only for mpeg4 & h263 & h263p FIXME |
294 | 883 if(s->h263_plus) s->fcode_tab= umv_fcode_tab; |
884 else if(s->h263_pred && !s->h263_msmpeg4) s->fcode_tab= fcode_tab; | |
0 | 885 } |
886 | |
887 static void h263_encode_block(MpegEncContext * s, DCTELEM * block, int n) | |
888 { | |
889 int level, run, last, i, j, last_index, last_non_zero, sign, slevel; | |
890 int code; | |
891 RLTable *rl = &rl_inter; | |
892 | |
893 if (s->mb_intra) { | |
231 | 894 /* DC coef */ |
895 level = block[0]; | |
0 | 896 /* 255 cannot be represented, so we clamp */ |
897 if (level > 254) { | |
898 level = 254; | |
899 block[0] = 254; | |
900 } | |
231 | 901 /* 0 cannot be represented also */ |
902 else if (!level) { | |
903 level = 1; | |
904 block[0] = 1; | |
905 } | |
906 if (level == 128) | |
907 put_bits(&s->pb, 8, 0xff); | |
908 else | |
909 put_bits(&s->pb, 8, level & 0xff); | |
910 i = 1; | |
0 | 911 } else { |
231 | 912 i = 0; |
0 | 913 } |
914 | |
915 /* AC coefs */ | |
916 last_index = s->block_last_index[n]; | |
917 last_non_zero = i - 1; | |
918 for (; i <= last_index; i++) { | |
919 j = zigzag_direct[i]; | |
920 level = block[j]; | |
921 if (level) { | |
922 run = i - last_non_zero - 1; | |
923 last = (i == last_index); | |
924 sign = 0; | |
925 slevel = level; | |
926 if (level < 0) { | |
927 sign = 1; | |
928 level = -level; | |
929 } | |
930 code = get_rl_index(rl, last, run, level); | |
931 put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
932 if (code == rl->n) { | |
933 put_bits(&s->pb, 1, last); | |
934 put_bits(&s->pb, 6, run); | |
935 put_bits(&s->pb, 8, slevel & 0xff); | |
936 } else { | |
937 put_bits(&s->pb, 1, sign); | |
938 } | |
939 last_non_zero = i; | |
940 } | |
941 } | |
942 } | |
943 | |
944 /***************************************************/ | |
945 | |
262 | 946 static void mpeg4_stuffing(PutBitContext * pbc) |
947 { | |
948 int length; | |
949 put_bits(pbc, 1, 0); | |
950 length= (-get_bit_count(pbc))&7; | |
951 put_bits(pbc, length, (1<<length)-1); | |
952 } | |
953 | |
954 static void put_string(PutBitContext * pbc, char *s) | |
955 { | |
956 while(*s){ | |
957 put_bits(pbc, 8, *s); | |
958 s++; | |
959 } | |
960 put_bits(pbc, 8, 0); | |
961 } | |
962 | |
327 | 963 /* must be called before writing the header */ |
964 void ff_set_mpeg4_time(MpegEncContext * s, int picture_number){ | |
965 int time_div, time_mod; | |
966 | |
967 if(s->pict_type==I_TYPE){ //we will encode a vol header | |
968 s->time_increment_resolution= s->frame_rate/ff_gcd(s->frame_rate, FRAME_RATE_BASE); | |
969 if(s->time_increment_resolution>=256*256) s->time_increment_resolution= 256*128; | |
970 | |
971 s->time_increment_bits = av_log2(s->time_increment_resolution - 1) + 1; | |
972 } | |
973 | |
974 s->time= picture_number*(int64_t)FRAME_RATE_BASE*s->time_increment_resolution/s->frame_rate; | |
975 time_div= s->time/s->time_increment_resolution; | |
976 time_mod= s->time%s->time_increment_resolution; | |
977 | |
978 if(s->pict_type==B_TYPE){ | |
979 s->bp_time= s->last_non_b_time - s->time; | |
980 }else{ | |
981 s->last_time_base= s->time_base; | |
982 s->time_base= time_div; | |
983 s->pp_time= s->time - s->last_non_b_time; | |
984 s->last_non_b_time= s->time; | |
985 } | |
986 } | |
987 | |
263 | 988 static void mpeg4_encode_vol_header(MpegEncContext * s) |
0 | 989 { |
263 | 990 int vo_ver_id=1; //must be 2 if we want GMC or q-pel |
322 | 991 char buf[255]; |
992 | |
263 | 993 if(get_bit_count(&s->pb)!=0) mpeg4_stuffing(&s->pb); |
994 put_bits(&s->pb, 16, 0); | |
995 put_bits(&s->pb, 16, 0x100); /* video obj */ | |
996 put_bits(&s->pb, 16, 0); | |
997 put_bits(&s->pb, 16, 0x120); /* video obj layer */ | |
998 | |
999 put_bits(&s->pb, 1, 0); /* random access vol */ | |
1000 put_bits(&s->pb, 8, 1); /* video obj type indication= simple obj */ | |
1001 put_bits(&s->pb, 1, 1); /* is obj layer id= yes */ | |
1002 put_bits(&s->pb, 4, vo_ver_id); /* is obj layer ver id */ | |
1003 put_bits(&s->pb, 3, 1); /* is obj layer priority */ | |
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1004 if(s->aspect_ratio_info) |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1005 put_bits(&s->pb, 4, s->aspect_ratio_info);/* aspect ratio info */ |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1006 else |
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1007 put_bits(&s->pb, 4, 1); /* aspect ratio info= sqare pixel */ |
263 | 1008 put_bits(&s->pb, 1, 0); /* vol control parameters= no */ |
1009 put_bits(&s->pb, 2, RECT_SHAPE); /* vol shape= rectangle */ | |
1010 put_bits(&s->pb, 1, 1); /* marker bit */ | |
324 | 1011 |
1012 put_bits(&s->pb, 16, s->time_increment_resolution); | |
263 | 1013 if (s->time_increment_bits < 1) |
1014 s->time_increment_bits = 1; | |
1015 put_bits(&s->pb, 1, 1); /* marker bit */ | |
1016 put_bits(&s->pb, 1, 0); /* fixed vop rate=no */ | |
1017 put_bits(&s->pb, 1, 1); /* marker bit */ | |
1018 put_bits(&s->pb, 13, s->width); /* vol width */ | |
1019 put_bits(&s->pb, 1, 1); /* marker bit */ | |
1020 put_bits(&s->pb, 13, s->height); /* vol height */ | |
1021 put_bits(&s->pb, 1, 1); /* marker bit */ | |
1022 put_bits(&s->pb, 1, 0); /* interlace */ | |
1023 put_bits(&s->pb, 1, 1); /* obmc disable */ | |
1024 if (vo_ver_id == 1) { | |
1025 put_bits(&s->pb, 1, s->vol_sprite_usage=0); /* sprite enable */ | |
1026 }else{ /* vo_ver_id == 2 */ | |
1027 put_bits(&s->pb, 2, s->vol_sprite_usage=0); /* sprite enable */ | |
1028 } | |
1029 put_bits(&s->pb, 1, 0); /* not 8 bit */ | |
1030 put_bits(&s->pb, 1, 0); /* quant type= h263 style*/ | |
1031 if (vo_ver_id != 1) | |
1032 put_bits(&s->pb, 1, s->quarter_sample=0); | |
1033 put_bits(&s->pb, 1, 1); /* complexity estimation disable */ | |
1034 put_bits(&s->pb, 1, 1); /* resync marker disable */ | |
1035 put_bits(&s->pb, 1, 0); /* data partitioned */ | |
1036 if (vo_ver_id != 1){ | |
1037 put_bits(&s->pb, 1, 0); /* newpred */ | |
1038 put_bits(&s->pb, 1, 0); /* reduced res vop */ | |
1039 } | |
1040 put_bits(&s->pb, 1, 0); /* scalability */ | |
1041 | |
262 | 1042 mpeg4_stuffing(&s->pb); |
1043 put_bits(&s->pb, 16, 0); | |
1044 put_bits(&s->pb, 16, 0x1B2); /* user_data */ | |
322 | 1045 sprintf(buf, "FFmpeg v%s / libavcodec build: %s", FFMPEG_VERSION, LIBAVCODEC_BUILD_STR); |
1046 put_string(&s->pb, buf); | |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
1047 |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
1048 s->no_rounding = 0; |
263 | 1049 } |
1050 | |
1051 /* write mpeg4 VOP header */ | |
1052 void mpeg4_encode_picture_header(MpegEncContext * s, int picture_number) | |
1053 { | |
324 | 1054 int time_incr; |
1055 int time_div, time_mod; | |
1056 | |
263 | 1057 if(s->pict_type==I_TYPE) mpeg4_encode_vol_header(s); |
324 | 1058 |
1059 //printf("num:%d rate:%d base:%d\n", s->picture_number, s->frame_rate, FRAME_RATE_BASE); | |
1060 | |
263 | 1061 if(get_bit_count(&s->pb)!=0) mpeg4_stuffing(&s->pb); |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
1062 put_bits(&s->pb, 16, 0); /* vop header */ |
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
1063 put_bits(&s->pb, 16, 0x1B6); /* vop header */ |
0 | 1064 put_bits(&s->pb, 2, s->pict_type - 1); /* pict type: I = 0 , P = 1 */ |
324 | 1065 |
327 | 1066 time_div= s->time/s->time_increment_resolution; |
1067 time_mod= s->time%s->time_increment_resolution; | |
324 | 1068 time_incr= time_div - s->last_time_base; |
1069 while(time_incr--) | |
1070 put_bits(&s->pb, 1, 1); | |
1071 | |
0 | 1072 put_bits(&s->pb, 1, 0); |
1073 | |
1074 put_bits(&s->pb, 1, 1); /* marker */ | |
324 | 1075 put_bits(&s->pb, s->time_increment_bits, time_mod); /* time increment */ |
0 | 1076 put_bits(&s->pb, 1, 1); /* marker */ |
1077 put_bits(&s->pb, 1, 1); /* vop coded */ | |
263 | 1078 if ( s->pict_type == P_TYPE |
1079 || (s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE)) { | |
1080 s->no_rounding ^= 1; | |
0 | 1081 put_bits(&s->pb, 1, s->no_rounding); /* rounding type */ |
1082 } | |
1083 put_bits(&s->pb, 3, 0); /* intra dc VLC threshold */ | |
263 | 1084 //FIXME sprite stuff |
0 | 1085 |
1086 put_bits(&s->pb, 5, s->qscale); | |
1087 | |
1088 if (s->pict_type != I_TYPE) | |
1089 put_bits(&s->pb, 3, s->f_code); /* fcode_for */ | |
263 | 1090 if (s->pict_type == B_TYPE) |
1091 put_bits(&s->pb, 3, s->b_code); /* fcode_back */ | |
0 | 1092 // printf("****frame %d\n", picture_number); |
1093 } | |
1094 | |
1095 void h263_dc_scale(MpegEncContext * s) | |
1096 { | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1097 #if 1 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1098 const static UINT8 y_tab[32]={ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1099 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1100 0, 8, 8, 8, 8,10,12,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,36,38,40,42,44,46 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1101 }; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1102 const static UINT8 c_tab[32]={ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1103 // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1104 0, 8, 8, 8, 8, 9, 9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,20,21,22,23,24,25 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1105 }; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1106 s->y_dc_scale = y_tab[s->qscale]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1107 s->c_dc_scale = c_tab[s->qscale]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1108 #else |
0 | 1109 int quant; |
1110 quant = s->qscale; | |
1111 /* luminance */ | |
1112 if (quant < 5) | |
1113 s->y_dc_scale = 8; | |
1114 else if (quant > 4 && quant < 9) | |
1115 s->y_dc_scale = (2 * quant); | |
1116 else if (quant > 8 && quant < 25) | |
1117 s->y_dc_scale = (quant + 8); | |
1118 else | |
1119 s->y_dc_scale = (2 * quant - 16); | |
1120 /* chrominance */ | |
1121 if (quant < 5) | |
1122 s->c_dc_scale = 8; | |
1123 else if (quant > 4 && quant < 25) | |
1124 s->c_dc_scale = ((quant + 13) / 2); | |
1125 else | |
1126 s->c_dc_scale = (quant - 6); | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1127 #endif |
0 | 1128 } |
1129 | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1130 static inline int mpeg4_pred_dc(MpegEncContext * s, int n, UINT16 **dc_val_ptr, int *dir_ptr) |
0 | 1131 { |
266 | 1132 int a, b, c, wrap, pred, scale; |
0 | 1133 UINT16 *dc_val; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1134 int dummy; |
0 | 1135 |
1136 /* find prediction */ | |
1137 if (n < 4) { | |
1138 scale = s->y_dc_scale; | |
1139 } else { | |
1140 scale = s->c_dc_scale; | |
1141 } | |
266 | 1142 wrap= s->block_wrap[n]; |
1143 dc_val = s->dc_val[0] + s->block_index[n]; | |
0 | 1144 |
1145 /* B C | |
1146 * A X | |
1147 */ | |
266 | 1148 a = dc_val[ - 1]; |
1149 b = dc_val[ - 1 - wrap]; | |
1150 c = dc_val[ - wrap]; | |
0 | 1151 |
1152 if (abs(a - b) < abs(b - c)) { | |
1153 pred = c; | |
1154 *dir_ptr = 1; /* top */ | |
1155 } else { | |
1156 pred = a; | |
1157 *dir_ptr = 0; /* left */ | |
1158 } | |
1159 /* we assume pred is positive */ | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1160 #ifdef ARCH_X86 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1161 asm volatile ( |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1162 "xorl %%edx, %%edx \n\t" |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1163 "mul %%ecx \n\t" |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1164 : "=d" (pred), "=a"(dummy) |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1165 : "a" (pred + (scale >> 1)), "c" (inverse[scale]) |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1166 ); |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1167 #else |
0 | 1168 pred = (pred + (scale >> 1)) / scale; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1169 #endif |
0 | 1170 |
1171 /* prepare address for prediction update */ | |
266 | 1172 *dc_val_ptr = &dc_val[0]; |
0 | 1173 |
1174 return pred; | |
1175 } | |
1176 | |
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
162
diff
changeset
|
1177 void mpeg4_pred_ac(MpegEncContext * s, INT16 *block, int n, |
0 | 1178 int dir) |
1179 { | |
266 | 1180 int i; |
0 | 1181 INT16 *ac_val, *ac_val1; |
1182 | |
1183 /* find prediction */ | |
266 | 1184 ac_val = s->ac_val[0][0] + s->block_index[n] * 16; |
0 | 1185 ac_val1 = ac_val; |
1186 if (s->ac_pred) { | |
1187 if (dir == 0) { | |
1188 /* left prediction */ | |
1189 ac_val -= 16; | |
1190 for(i=1;i<8;i++) { | |
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
162
diff
changeset
|
1191 block[block_permute_op(i*8)] += ac_val[i]; |
0 | 1192 } |
1193 } else { | |
1194 /* top prediction */ | |
266 | 1195 ac_val -= 16 * s->block_wrap[n]; |
0 | 1196 for(i=1;i<8;i++) { |
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
162
diff
changeset
|
1197 block[block_permute_op(i)] += ac_val[i + 8]; |
0 | 1198 } |
1199 } | |
1200 } | |
1201 /* left copy */ | |
1202 for(i=1;i<8;i++) | |
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
162
diff
changeset
|
1203 ac_val1[i] = block[block_permute_op(i * 8)]; |
0 | 1204 /* top copy */ |
1205 for(i=1;i<8;i++) | |
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
162
diff
changeset
|
1206 ac_val1[8 + i] = block[block_permute_op(i)]; |
0 | 1207 } |
1208 | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1209 static void mpeg4_inv_pred_ac(MpegEncContext * s, INT16 *block, int n, |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1210 int dir) |
0 | 1211 { |
266 | 1212 int i; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1213 INT16 *ac_val; |
0 | 1214 |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1215 /* find prediction */ |
266 | 1216 ac_val = s->ac_val[0][0] + s->block_index[n] * 16; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1217 |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1218 if (dir == 0) { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1219 /* left prediction */ |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1220 ac_val -= 16; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1221 for(i=1;i<8;i++) { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1222 block[block_permute_op(i*8)] -= ac_val[i]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1223 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1224 } else { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1225 /* top prediction */ |
266 | 1226 ac_val -= 16 * s->block_wrap[n]; |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1227 for(i=1;i<8;i++) { |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1228 block[block_permute_op(i)] -= ac_val[i + 8]; |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1229 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1230 } |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1231 } |
0 | 1232 |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1233 static inline void mpeg4_encode_dc(MpegEncContext * s, int level, int n) |
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1234 { |
293 | 1235 #if 1 |
1236 level+=256; | |
1237 if (n < 4) { | |
1238 /* luminance */ | |
1239 put_bits(&s->pb, uni_DCtab_lum[level][1], uni_DCtab_lum[level][0]); | |
1240 } else { | |
1241 /* chrominance */ | |
1242 put_bits(&s->pb, uni_DCtab_chrom[level][1], uni_DCtab_chrom[level][0]); | |
1243 } | |
1244 #else | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1245 int size, v; |
0 | 1246 /* find number of bits */ |
1247 size = 0; | |
1248 v = abs(level); | |
1249 while (v) { | |
1250 v >>= 1; | |
1251 size++; | |
1252 } | |
1253 | |
1254 if (n < 4) { | |
1255 /* luminance */ | |
1256 put_bits(&s->pb, DCtab_lum[size][1], DCtab_lum[size][0]); | |
1257 } else { | |
1258 /* chrominance */ | |
1259 put_bits(&s->pb, DCtab_chrom[size][1], DCtab_chrom[size][0]); | |
1260 } | |
1261 | |
1262 /* encode remaining bits */ | |
1263 if (size > 0) { | |
1264 if (level < 0) | |
1265 level = (-level) ^ ((1 << size) - 1); | |
1266 put_bits(&s->pb, size, level); | |
1267 if (size > 8) | |
1268 put_bits(&s->pb, 1, 1); | |
1269 } | |
293 | 1270 #endif |
0 | 1271 } |
1272 | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1273 static void mpeg4_encode_block(MpegEncContext * s, DCTELEM * block, int n, int intra_dc, UINT8 *scan_table) |
0 | 1274 { |
1275 int level, run, last, i, j, last_index, last_non_zero, sign, slevel; | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1276 int code; |
0 | 1277 const RLTable *rl; |
1278 | |
1279 if (s->mb_intra) { | |
1280 /* mpeg4 based DC predictor */ | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1281 mpeg4_encode_dc(s, intra_dc, n); |
0 | 1282 i = 1; |
1283 rl = &rl_intra; | |
1284 } else { | |
1285 i = 0; | |
1286 rl = &rl_inter; | |
1287 } | |
1288 | |
1289 /* AC coefs */ | |
1290 last_index = s->block_last_index[n]; | |
1291 last_non_zero = i - 1; | |
1292 for (; i <= last_index; i++) { | |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1293 j = scan_table[i]; |
0 | 1294 level = block[j]; |
1295 if (level) { | |
1296 run = i - last_non_zero - 1; | |
1297 last = (i == last_index); | |
1298 sign = 0; | |
1299 slevel = level; | |
1300 if (level < 0) { | |
1301 sign = 1; | |
1302 level = -level; | |
1303 } | |
1304 code = get_rl_index(rl, last, run, level); | |
1305 put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
1306 if (code == rl->n) { | |
1307 int level1, run1; | |
1308 level1 = level - rl->max_level[last][run]; | |
1309 if (level1 < 1) | |
1310 goto esc2; | |
1311 code = get_rl_index(rl, last, run, level1); | |
1312 if (code == rl->n) { | |
1313 esc2: | |
1314 put_bits(&s->pb, 1, 1); | |
1315 if (level > MAX_LEVEL) | |
1316 goto esc3; | |
1317 run1 = run - rl->max_run[last][level] - 1; | |
1318 if (run1 < 0) | |
1319 goto esc3; | |
1320 code = get_rl_index(rl, last, run1, level); | |
1321 if (code == rl->n) { | |
1322 esc3: | |
1323 /* third escape */ | |
1324 put_bits(&s->pb, 1, 1); | |
1325 put_bits(&s->pb, 1, last); | |
1326 put_bits(&s->pb, 6, run); | |
1327 put_bits(&s->pb, 1, 1); | |
1328 put_bits(&s->pb, 12, slevel & 0xfff); | |
1329 put_bits(&s->pb, 1, 1); | |
1330 } else { | |
1331 /* second escape */ | |
1332 put_bits(&s->pb, 1, 0); | |
1333 put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
1334 put_bits(&s->pb, 1, sign); | |
1335 } | |
1336 } else { | |
1337 /* first escape */ | |
1338 put_bits(&s->pb, 1, 0); | |
1339 put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
1340 put_bits(&s->pb, 1, sign); | |
1341 } | |
1342 } else { | |
1343 put_bits(&s->pb, 1, sign); | |
1344 } | |
1345 last_non_zero = i; | |
1346 } | |
1347 } | |
1348 } | |
1349 | |
1350 | |
1351 | |
1352 /***********************************************/ | |
1353 /* decoding */ | |
1354 | |
1355 static VLC intra_MCBPC_vlc; | |
1356 static VLC inter_MCBPC_vlc; | |
1357 static VLC cbpy_vlc; | |
1358 static VLC mv_vlc; | |
1359 static VLC dc_lum, dc_chrom; | |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1360 static VLC sprite_trajectory; |
262 | 1361 static VLC mb_type_b_vlc; |
0 | 1362 |
1363 void init_rl(RLTable *rl) | |
1364 { | |
1365 INT8 max_level[MAX_RUN+1], max_run[MAX_LEVEL+1]; | |
1366 UINT8 index_run[MAX_RUN+1]; | |
1367 int last, run, level, start, end, i; | |
1368 | |
1369 /* compute max_level[], max_run[] and index_run[] */ | |
1370 for(last=0;last<2;last++) { | |
1371 if (last == 0) { | |
1372 start = 0; | |
1373 end = rl->last; | |
1374 } else { | |
1375 start = rl->last; | |
1376 end = rl->n; | |
1377 } | |
1378 | |
1379 memset(max_level, 0, MAX_RUN + 1); | |
1380 memset(max_run, 0, MAX_LEVEL + 1); | |
1381 memset(index_run, rl->n, MAX_RUN + 1); | |
1382 for(i=start;i<end;i++) { | |
1383 run = rl->table_run[i]; | |
1384 level = rl->table_level[i]; | |
1385 if (index_run[run] == rl->n) | |
1386 index_run[run] = i; | |
1387 if (level > max_level[run]) | |
1388 max_level[run] = level; | |
1389 if (run > max_run[level]) | |
1390 max_run[level] = run; | |
1391 } | |
1392 rl->max_level[last] = malloc(MAX_RUN + 1); | |
1393 memcpy(rl->max_level[last], max_level, MAX_RUN + 1); | |
1394 rl->max_run[last] = malloc(MAX_LEVEL + 1); | |
1395 memcpy(rl->max_run[last], max_run, MAX_LEVEL + 1); | |
1396 rl->index_run[last] = malloc(MAX_RUN + 1); | |
1397 memcpy(rl->index_run[last], index_run, MAX_RUN + 1); | |
1398 } | |
1399 } | |
1400 | |
1401 void init_vlc_rl(RLTable *rl) | |
1402 { | |
1403 init_vlc(&rl->vlc, 9, rl->n + 1, | |
1404 &rl->table_vlc[0][1], 4, 2, | |
1405 &rl->table_vlc[0][0], 4, 2); | |
1406 } | |
1407 | |
1408 /* init vlcs */ | |
1409 | |
1410 /* XXX: find a better solution to handle static init */ | |
1411 void h263_decode_init_vlc(MpegEncContext *s) | |
1412 { | |
1413 static int done = 0; | |
1414 | |
1415 if (!done) { | |
1416 done = 1; | |
1417 | |
1418 init_vlc(&intra_MCBPC_vlc, 6, 8, | |
1419 intra_MCBPC_bits, 1, 1, | |
1420 intra_MCBPC_code, 1, 1); | |
161 | 1421 init_vlc(&inter_MCBPC_vlc, 9, 25, |
0 | 1422 inter_MCBPC_bits, 1, 1, |
1423 inter_MCBPC_code, 1, 1); | |
1424 init_vlc(&cbpy_vlc, 6, 16, | |
1425 &cbpy_tab[0][1], 2, 1, | |
1426 &cbpy_tab[0][0], 2, 1); | |
1427 init_vlc(&mv_vlc, 9, 33, | |
1428 &mvtab[0][1], 2, 1, | |
1429 &mvtab[0][0], 2, 1); | |
1430 init_rl(&rl_inter); | |
1431 init_rl(&rl_intra); | |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1432 init_rl(&rl_intra_aic); |
0 | 1433 init_vlc_rl(&rl_inter); |
1434 init_vlc_rl(&rl_intra); | |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1435 init_vlc_rl(&rl_intra_aic); |
0 | 1436 init_vlc(&dc_lum, 9, 13, |
1437 &DCtab_lum[0][1], 2, 1, | |
1438 &DCtab_lum[0][0], 2, 1); | |
1439 init_vlc(&dc_chrom, 9, 13, | |
1440 &DCtab_chrom[0][1], 2, 1, | |
1441 &DCtab_chrom[0][0], 2, 1); | |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1442 init_vlc(&sprite_trajectory, 9, 15, |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1443 &sprite_trajectory_tab[0][1], 4, 2, |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1444 &sprite_trajectory_tab[0][0], 4, 2); |
262 | 1445 init_vlc(&mb_type_b_vlc, 4, 4, |
1446 &mb_type_b_tab[0][1], 2, 1, | |
1447 &mb_type_b_tab[0][0], 2, 1); | |
0 | 1448 } |
1449 } | |
1450 | |
162 | 1451 int h263_decode_gob_header(MpegEncContext *s) |
1452 { | |
1453 unsigned int val, gfid; | |
1454 | |
1455 /* Check for GOB Start Code */ | |
1456 val = show_bits(&s->gb, 16); | |
1457 if (val == 0) { | |
1458 /* We have a GBSC probably with GSTUFF */ | |
1459 skip_bits(&s->gb, 16); /* Drop the zeros */ | |
1460 while (get_bits1(&s->gb) == 0); /* Seek the '1' bit */ | |
1461 #ifdef DEBUG | |
1462 fprintf(stderr,"\nGOB Start Code at MB %d\n", (s->mb_y * s->mb_width) + s->mb_x); | |
1463 #endif | |
1464 s->gob_number = get_bits(&s->gb, 5); /* GN */ | |
1465 gfid = get_bits(&s->gb, 2); /* GFID */ | |
1466 s->qscale = get_bits(&s->gb, 5); /* GQUANT */ | |
1467 #ifdef DEBUG | |
234
5fc0c3af3fe4
alternative bitstream writer (disabled by default, uncomment #define ALT_BISTREAM_WRITER in common.h if u want to try it)
michaelni
parents:
231
diff
changeset
|
1468 fprintf(stderr, "\nGN: %u GFID: %u Quant: %u\n", s->gob_number, gfid, s->qscale); |
162 | 1469 #endif |
1470 return 1; | |
1471 } | |
1472 return 0; | |
1473 | |
1474 } | |
1475 | |
290 | 1476 static inline void memsetw(short *tab, int val, int n) |
1477 { | |
1478 int i; | |
1479 for(i=0;i<n;i++) | |
1480 tab[i] = val; | |
1481 } | |
1482 | |
1483 static int mpeg4_resync(MpegEncContext *s) | |
1484 { | |
1485 int state, v, bits; | |
1486 int mb_num_bits= av_log2(s->mb_num - 1) + 1; | |
1487 int header_extension=0, mb_num; | |
1488 int c_wrap, c_xy, l_wrap, l_xy; | |
324 | 1489 int time_increment; |
290 | 1490 //printf("resync at %d %d\n", s->mb_x, s->mb_y); |
1491 //printf("%X\n", show_bits(&s->gb, 24)); | |
1492 | |
1493 if( get_bits_count(&s->gb) > s->gb.size*8-32) | |
1494 return 0; | |
1495 | |
1496 align_get_bits(&s->gb); | |
1497 state = 0xff; | |
1498 for(;;) { | |
1499 v = get_bits(&s->gb, 8); | |
1500 //printf("%X ", v); | |
1501 state = ((state << 8) | v) & 0xffff; | |
1502 if (state == 0) break; | |
1503 if( get_bits_count(&s->gb) > s->gb.size*8-32){ | |
1504 printf("resync failed\n"); | |
1505 return -1; | |
1506 } | |
1507 } | |
1508 //printf("%X\n", show_bits(&s->gb, 24)); | |
1509 bits=0; | |
1510 while(!get_bits1(&s->gb) && bits<30) bits++; | |
1511 if(s->pict_type == P_TYPE && bits != s->f_code-1) | |
1512 printf("marker does not match f_code\n"); | |
1513 //FIXME check bits for B-framess | |
1514 //printf("%X\n", show_bits(&s->gb, 24)); | |
1515 | |
1516 if(s->shape != RECT_SHAPE){ | |
1517 header_extension= get_bits1(&s->gb); | |
1518 //FIXME more stuff here | |
1519 } | |
1520 | |
1521 mb_num= get_bits(&s->gb, mb_num_bits); | |
1522 if(mb_num != s->mb_x + s->mb_y*s->mb_width){ | |
1523 printf("MB-num change not supported %d %d\n", mb_num, s->mb_x + s->mb_y*s->mb_width); | |
1524 // s->mb_x= mb_num % s->mb_width; | |
1525 // s->mb_y= mb_num / s->mb_width; | |
1526 //FIXME many vars are wrong now | |
1527 } | |
1528 | |
1529 if(s->shape != BIN_ONLY_SHAPE){ | |
1530 s->qscale= get_bits(&s->gb, 5); | |
1531 h263_dc_scale(s); | |
1532 } | |
1533 | |
1534 if(s->shape == RECT_SHAPE){ | |
1535 header_extension= get_bits1(&s->gb); | |
1536 } | |
1537 if(header_extension){ | |
1538 int time_incr=0; | |
1539 printf("header extension not really supported\n"); | |
1540 while (get_bits1(&s->gb) != 0) | |
1541 time_incr++; | |
1542 | |
1543 check_marker(&s->gb, "before time_increment in video packed header"); | |
324 | 1544 time_increment= get_bits(&s->gb, s->time_increment_bits); |
290 | 1545 if(s->pict_type!=B_TYPE){ |
324 | 1546 s->last_time_base= s->time_base; |
290 | 1547 s->time_base+= time_incr; |
324 | 1548 s->time= s->time_base*s->time_increment_resolution + time_increment; |
1549 s->pp_time= s->time - s->last_non_b_time; | |
1550 s->last_non_b_time= s->time; | |
290 | 1551 }else{ |
324 | 1552 s->time= (s->last_time_base + time_incr)*s->time_increment_resolution + time_increment; |
1553 s->bp_time= s->last_non_b_time - s->time; | |
290 | 1554 } |
1555 check_marker(&s->gb, "before vop_coding_type in video packed header"); | |
1556 | |
1557 skip_bits(&s->gb, 2); /* vop coding type */ | |
1558 //FIXME not rect stuff here | |
1559 | |
1560 if(s->shape != BIN_ONLY_SHAPE){ | |
1561 skip_bits(&s->gb, 3); /* intra dc vlc threshold */ | |
1562 | |
1563 if(s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE && s->num_sprite_warping_points){ | |
1564 mpeg4_decode_sprite_trajectory(s); | |
1565 } | |
1566 | |
1567 //FIXME reduced res stuff here | |
1568 | |
1569 if (s->pict_type != I_TYPE) { | |
1570 s->f_code = get_bits(&s->gb, 3); /* fcode_for */ | |
1571 if(s->f_code==0){ | |
1572 printf("Error, video packet header damaged or not MPEG4 header (f_code=0)\n"); | |
1573 return -1; // makes no sense to continue, as the MV decoding will break very quickly | |
1574 } | |
1575 } | |
1576 if (s->pict_type == B_TYPE) { | |
1577 s->b_code = get_bits(&s->gb, 3); | |
1578 } | |
1579 } | |
1580 | |
1581 } | |
1582 //FIXME new-pred stuff | |
1583 | |
1584 l_wrap= s->block_wrap[0]; | |
1585 l_xy= s->mb_y*l_wrap*2; | |
1586 c_wrap= s->block_wrap[4]; | |
1587 c_xy= s->mb_y*c_wrap; | |
1588 | |
1589 /* clean DC */ | |
1590 memsetw(s->dc_val[0] + l_xy, 1024, l_wrap*3); | |
1591 memsetw(s->dc_val[1] + c_xy, 1024, c_wrap*2); | |
1592 memsetw(s->dc_val[2] + c_xy, 1024, c_wrap*2); | |
1593 | |
1594 /* clean AC */ | |
1595 memset(s->ac_val[0] + l_xy, 0, l_wrap*3*16*sizeof(INT16)); | |
1596 memset(s->ac_val[1] + c_xy, 0, c_wrap*2*16*sizeof(INT16)); | |
1597 memset(s->ac_val[2] + c_xy, 0, c_wrap*2*16*sizeof(INT16)); | |
1598 | |
1599 /* clean MV */ | |
1600 memset(s->motion_val + l_xy, 0, l_wrap*3*2*sizeof(INT16)); | |
1601 // memset(s->motion_val, 0, 2*sizeof(INT16)*(2 + s->mb_width*2)*(2 + s->mb_height*2)); | |
1602 s->resync_x_pos= s->mb_x; | |
1603 s->first_slice_line=1; | |
1604 | |
1605 return 0; | |
1606 } | |
1607 | |
0 | 1608 int h263_decode_mb(MpegEncContext *s, |
1609 DCTELEM block[6][64]) | |
1610 { | |
1611 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; | |
1612 INT16 *mot_val; | |
110 | 1613 static INT8 quant_tab[4] = { -1, -2, 1, 2 }; |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
1614 |
290 | 1615 if(s->resync_marker){ |
1616 if( s->resync_x_pos == s->mb_x+1 | |
1617 || s->resync_x_pos == s->mb_x){ | |
1618 /* f*ck mpeg4 | |
1619 this is here so we dont need to slowdown h263_pred_motion with it */ | |
1620 if(s->resync_x_pos == s->mb_x+1 && s->mb_x==0){ | |
1621 int xy= s->block_index[0] - s->block_wrap[0]; | |
1622 s->motion_val[xy][0]= s->motion_val[xy+2][0]; | |
1623 s->motion_val[xy][1]= s->motion_val[xy+2][1]; | |
1624 } | |
1625 | |
1626 s->first_slice_line=0; | |
1627 s->resync_x_pos=0; // isnt needed but for cleanness sake ;) | |
1628 } | |
1629 | |
1630 if(show_aligned_bits(&s->gb, 1, 16) == 0){ | |
1631 if( mpeg4_resync(s) < 0 ) return -1; | |
1632 | |
1633 } | |
1634 } | |
1635 | |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1636 if (s->pict_type == P_TYPE || s->pict_type==S_TYPE) { |
21 | 1637 if (get_bits1(&s->gb)) { |
0 | 1638 /* skip mb */ |
1639 s->mb_intra = 0; | |
1640 for(i=0;i<6;i++) | |
1641 s->block_last_index[i] = -1; | |
1642 s->mv_dir = MV_DIR_FORWARD; | |
1643 s->mv_type = MV_TYPE_16X16; | |
255 | 1644 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE){ |
1645 const int a= s->sprite_warping_accuracy; | |
1646 // int l = (1 << (s->f_code - 1)) * 32; | |
1647 | |
1648 s->mcsel=1; | |
301 | 1649 if(s->divx_version==500 && s->divx_build==413){ |
1650 s->mv[0][0][0] = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
1651 s->mv[0][0][1] = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
1652 }else{ | |
1653 s->mv[0][0][0] = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
1654 s->mv[0][0][1] = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
1655 } | |
255 | 1656 /* if (s->mv[0][0][0] < -l) s->mv[0][0][0]= -l; |
1657 else if (s->mv[0][0][0] >= l) s->mv[0][0][0]= l-1; | |
1658 if (s->mv[0][0][1] < -l) s->mv[0][0][1]= -l; | |
1659 else if (s->mv[0][0][1] >= l) s->mv[0][0][1]= l-1;*/ | |
1660 | |
1661 s->mb_skiped = 0; | |
1662 }else{ | |
1663 s->mcsel=0; | |
1664 s->mv[0][0][0] = 0; | |
1665 s->mv[0][0][1] = 0; | |
1666 s->mb_skiped = 1; | |
1667 } | |
0 | 1668 return 0; |
1669 } | |
1670 cbpc = get_vlc(&s->gb, &inter_MCBPC_vlc); | |
144 | 1671 //fprintf(stderr, "\tCBPC: %d", cbpc); |
0 | 1672 if (cbpc < 0) |
1673 return -1; | |
161 | 1674 if (cbpc > 20) |
1675 cbpc+=3; | |
1676 else if (cbpc == 20) | |
1677 fprintf(stderr, "Stuffing !"); | |
144 | 1678 |
0 | 1679 dquant = cbpc & 8; |
1680 s->mb_intra = ((cbpc & 4) != 0); | |
262 | 1681 if (s->mb_intra) goto intra; |
1682 | |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1683 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE && (cbpc & 16) == 0) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1684 s->mcsel= get_bits1(&s->gb); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1685 else s->mcsel= 0; |
0 | 1686 cbpy = get_vlc(&s->gb, &cbpy_vlc); |
1687 cbp = (cbpc & 3) | ((cbpy ^ 0xf) << 2); | |
1688 if (dquant) { | |
1689 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
1690 if (s->qscale < 1) | |
1691 s->qscale = 1; | |
1692 else if (s->qscale > 31) | |
1693 s->qscale = 31; | |
290 | 1694 h263_dc_scale(s); |
0 | 1695 } |
1696 s->mv_dir = MV_DIR_FORWARD; | |
1697 if ((cbpc & 16) == 0) { | |
1698 /* 16x16 motion prediction */ | |
1699 s->mv_type = MV_TYPE_16X16; | |
1700 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
1701 if (s->umvplus_dec) |
78 | 1702 mx = h263p_decode_umotion(s, pred_x); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1703 else if(!s->mcsel) |
262 | 1704 mx = h263_decode_motion(s, pred_x, s->f_code); |
255 | 1705 else { |
1706 const int a= s->sprite_warping_accuracy; | |
1707 // int l = (1 << (s->f_code - 1)) * 32; | |
301 | 1708 if(s->divx_version==500 && s->divx_build==413){ |
1709 mx = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
1710 }else{ | |
1711 mx = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
1712 } | |
1713 // if (mx < -l) mx= -l, printf("C"); | |
1714 // else if (mx >= l) mx= l-1, printf("C"); | |
255 | 1715 } |
0 | 1716 if (mx >= 0xffff) |
1717 return -1; | |
78 | 1718 |
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
1719 if (s->umvplus_dec) |
78 | 1720 my = h263p_decode_umotion(s, pred_y); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1721 else if(!s->mcsel) |
262 | 1722 my = h263_decode_motion(s, pred_y, s->f_code); |
255 | 1723 else{ |
1724 const int a= s->sprite_warping_accuracy; | |
1725 // int l = (1 << (s->f_code - 1)) * 32; | |
301 | 1726 if(s->divx_version==500 && s->divx_build==413){ |
1727 my = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
1728 }else{ | |
1729 my = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
1730 } | |
1731 // if (my < -l) my= -l, printf("C"); | |
1732 // else if (my >= l) my= l-1, printf("C"); | |
255 | 1733 } |
0 | 1734 if (my >= 0xffff) |
1735 return -1; | |
1736 s->mv[0][0][0] = mx; | |
1737 s->mv[0][0][1] = my; | |
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
1738 /*fprintf(stderr, "\n MB %d", (s->mb_y * s->mb_width) + s->mb_x); |
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
1739 fprintf(stderr, "\n\tmvx: %d\t\tpredx: %d", mx, pred_x); |
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
1740 fprintf(stderr, "\n\tmvy: %d\t\tpredy: %d", my, pred_y);*/ |
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
1741 if (s->umvplus_dec && (mx - pred_x) == 1 && (my - pred_y) == 1) |
78 | 1742 skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */ |
1743 | |
0 | 1744 } else { |
1745 s->mv_type = MV_TYPE_8X8; | |
1746 for(i=0;i<4;i++) { | |
1747 mot_val = h263_pred_motion(s, i, &pred_x, &pred_y); | |
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
1748 if (s->umvplus_dec) |
78 | 1749 mx = h263p_decode_umotion(s, pred_x); |
1750 else | |
262 | 1751 mx = h263_decode_motion(s, pred_x, s->f_code); |
0 | 1752 if (mx >= 0xffff) |
1753 return -1; | |
78 | 1754 |
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
1755 if (s->umvplus_dec) |
78 | 1756 my = h263p_decode_umotion(s, pred_y); |
1757 else | |
262 | 1758 my = h263_decode_motion(s, pred_y, s->f_code); |
0 | 1759 if (my >= 0xffff) |
1760 return -1; | |
1761 s->mv[0][i][0] = mx; | |
1762 s->mv[0][i][1] = my; | |
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
1763 if (s->umvplus_dec && (mx - pred_x) == 1 && (my - pred_y) == 1) |
78 | 1764 skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */ |
0 | 1765 mot_val[0] = mx; |
1766 mot_val[1] = my; | |
1767 } | |
1768 } | |
262 | 1769 } else if(s->pict_type==B_TYPE) { |
1770 int modb1; // first bit of modb | |
1771 int modb2; // second bit of modb | |
1772 int mb_type; | |
324 | 1773 uint16_t time_pp; |
1774 uint16_t time_pb; | |
262 | 1775 int xy; |
1776 | |
1777 s->mb_intra = 0; //B-frames never contain intra blocks | |
1778 s->mcsel=0; // ... true gmc blocks | |
1779 | |
1780 if(s->mb_x==0){ | |
1781 s->last_mv[0][0][0]= | |
1782 s->last_mv[0][0][1]= | |
1783 s->last_mv[1][0][0]= | |
1784 s->last_mv[1][0][1]= 0; | |
327 | 1785 // printf("\n"); |
262 | 1786 } |
1787 | |
1788 /* if we skipped it in the future P Frame than skip it now too */ | |
1789 s->mb_skiped= s->mbskip_table[s->mb_y * s->mb_width + s->mb_x]; // Note, skiptab=0 if last was GMC | |
1790 | |
1791 if(s->mb_skiped){ | |
1792 /* skip mb */ | |
1793 for(i=0;i<6;i++) | |
1794 s->block_last_index[i] = -1; | |
1795 | |
1796 s->mv_dir = MV_DIR_FORWARD; | |
1797 s->mv_type = MV_TYPE_16X16; | |
1798 s->mv[0][0][0] = 0; | |
1799 s->mv[0][0][1] = 0; | |
1800 s->mv[1][0][0] = 0; | |
1801 s->mv[1][0][1] = 0; | |
291 | 1802 //FIXME is this correct? |
1803 /* s->last_mv[0][0][0]= | |
1804 s->last_mv[0][0][1]=0;*/ | |
327 | 1805 // printf("S"); |
262 | 1806 return 0; |
1807 } | |
1808 | |
1809 modb1= get_bits1(&s->gb); | |
1810 if(modb1==0){ | |
1811 modb2= get_bits1(&s->gb); | |
1812 mb_type= get_vlc(&s->gb, &mb_type_b_vlc); | |
1813 if(modb2==0) cbp= get_bits(&s->gb, 6); | |
1814 else cbp=0; | |
1815 if (mb_type && cbp) { | |
1816 if(get_bits1(&s->gb)){ | |
1817 s->qscale +=get_bits1(&s->gb)*4 - 2; | |
1818 if (s->qscale < 1) | |
1819 s->qscale = 1; | |
1820 else if (s->qscale > 31) | |
1821 s->qscale = 31; | |
290 | 1822 h263_dc_scale(s); |
262 | 1823 } |
1824 } | |
1825 }else{ | |
1826 mb_type=4; //like 0 but no vectors coded | |
1827 cbp=0; | |
1828 } | |
1829 s->mv_type = MV_TYPE_16X16; // we'll switch to 8x8 only if the last P frame had 8x8 for this MB and mb_type=0 here | |
1830 mx=my=0; //for case 4, we could put this to the mb_type=4 but than gcc compains about uninitalized mx/my | |
1831 switch(mb_type) | |
1832 { | |
324 | 1833 case 0: /* direct */ |
262 | 1834 mx = h263_decode_motion(s, 0, 1); |
1835 my = h263_decode_motion(s, 0, 1); | |
324 | 1836 case 4: /* direct with mx=my=0 */ |
262 | 1837 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT; |
266 | 1838 xy= s->block_index[0]; |
324 | 1839 time_pp= s->pp_time; |
1840 time_pb= time_pp - s->bp_time; | |
262 | 1841 //if(time_pp>3000 )printf("%d %d ", time_pp, time_pb); |
1842 //FIXME 4MV | |
1843 //FIXME avoid divides | |
1844 s->mv[0][0][0] = s->motion_val[xy][0]*time_pb/time_pp + mx; | |
1845 s->mv[0][0][1] = s->motion_val[xy][1]*time_pb/time_pp + my; | |
1846 s->mv[1][0][0] = mx ? s->mv[0][0][0] - s->motion_val[xy][0] | |
1847 : s->motion_val[xy][0]*(time_pb - time_pp)/time_pp + mx; | |
1848 s->mv[1][0][1] = my ? s->mv[0][0][1] - s->motion_val[xy][1] | |
1849 : s->motion_val[xy][1]*(time_pb - time_pp)/time_pp + my; | |
1850 /* s->mv[0][0][0] = | |
1851 s->mv[0][0][1] = | |
1852 s->mv[1][0][0] = | |
1853 s->mv[1][0][1] = 1000;*/ | |
327 | 1854 // printf("D"); |
262 | 1855 break; |
1856 case 1: | |
1857 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD; | |
1858 mx = h263_decode_motion(s, s->last_mv[0][0][0], s->f_code); | |
1859 my = h263_decode_motion(s, s->last_mv[0][0][1], s->f_code); | |
1860 s->last_mv[0][0][0]= s->mv[0][0][0] = mx; | |
1861 s->last_mv[0][0][1]= s->mv[0][0][1] = my; | |
1862 | |
1863 mx = h263_decode_motion(s, s->last_mv[1][0][0], s->b_code); | |
1864 my = h263_decode_motion(s, s->last_mv[1][0][1], s->b_code); | |
1865 s->last_mv[1][0][0]= s->mv[1][0][0] = mx; | |
1866 s->last_mv[1][0][1]= s->mv[1][0][1] = my; | |
327 | 1867 // printf("I"); |
262 | 1868 break; |
1869 case 2: | |
1870 s->mv_dir = MV_DIR_BACKWARD; | |
1871 mx = h263_decode_motion(s, s->last_mv[1][0][0], s->b_code); | |
1872 my = h263_decode_motion(s, s->last_mv[1][0][1], s->b_code); | |
1873 s->last_mv[1][0][0]= s->mv[1][0][0] = mx; | |
1874 s->last_mv[1][0][1]= s->mv[1][0][1] = my; | |
327 | 1875 // printf("B"); |
262 | 1876 break; |
1877 case 3: | |
1878 s->mv_dir = MV_DIR_FORWARD; | |
1879 mx = h263_decode_motion(s, s->last_mv[0][0][0], s->f_code); | |
1880 my = h263_decode_motion(s, s->last_mv[0][0][1], s->f_code); | |
1881 s->last_mv[0][0][0]= s->mv[0][0][0] = mx; | |
1882 s->last_mv[0][0][1]= s->mv[0][0][1] = my; | |
327 | 1883 // printf("F"); |
262 | 1884 break; |
1885 default: return -1; | |
1886 } | |
1887 } else { /* I-Frame */ | |
1888 cbpc = get_vlc(&s->gb, &intra_MCBPC_vlc); | |
1889 if (cbpc < 0) | |
1890 return -1; | |
1891 dquant = cbpc & 4; | |
1892 s->mb_intra = 1; | |
1893 intra: | |
0 | 1894 s->ac_pred = 0; |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1895 if (s->h263_pred || s->h263_aic) { |
21 | 1896 s->ac_pred = get_bits1(&s->gb); |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1897 if (s->ac_pred && s->h263_aic) |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1898 s->h263_aic_dir = get_bits1(&s->gb); |
0 | 1899 } |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
1900 if (s->h263_aic) { |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
1901 s->y_dc_scale = 2 * s->qscale; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
1902 s->c_dc_scale = 2 * s->qscale; |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
1903 } |
0 | 1904 cbpy = get_vlc(&s->gb, &cbpy_vlc); |
1905 cbp = (cbpc & 3) | (cbpy << 2); | |
1906 if (dquant) { | |
1907 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
1908 if (s->qscale < 1) | |
1909 s->qscale = 1; | |
1910 else if (s->qscale > 31) | |
1911 s->qscale = 31; | |
290 | 1912 h263_dc_scale(s); |
0 | 1913 } |
1914 } | |
1915 | |
1916 /* decode each block */ | |
1917 if (s->h263_pred) { | |
1918 for (i = 0; i < 6; i++) { | |
1919 if (mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1) < 0) | |
1920 return -1; | |
1921 } | |
1922 } else { | |
1923 for (i = 0; i < 6; i++) { | |
1924 if (h263_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1) < 0) | |
1925 return -1; | |
1926 } | |
1927 } | |
1928 return 0; | |
1929 } | |
1930 | |
262 | 1931 static int h263_decode_motion(MpegEncContext * s, int pred, int f_code) |
0 | 1932 { |
1933 int code, val, sign, shift, l, m; | |
1934 | |
1935 code = get_vlc(&s->gb, &mv_vlc); | |
1936 if (code < 0) | |
1937 return 0xffff; | |
1938 | |
1939 if (code == 0) | |
1940 return pred; | |
21 | 1941 sign = get_bits1(&s->gb); |
262 | 1942 shift = f_code - 1; |
0 | 1943 val = (code - 1) << shift; |
1944 if (shift > 0) | |
1945 val |= get_bits(&s->gb, shift); | |
1946 val++; | |
1947 if (sign) | |
1948 val = -val; | |
1949 val += pred; | |
1950 | |
1951 /* modulo decoding */ | |
1952 if (!s->h263_long_vectors) { | |
262 | 1953 l = (1 << (f_code - 1)) * 32; |
0 | 1954 m = 2 * l; |
1955 if (val < -l) { | |
1956 val += m; | |
1957 } else if (val >= l) { | |
1958 val -= m; | |
1959 } | |
1960 } else { | |
1961 /* horrible h263 long vector mode */ | |
1962 if (pred < -31 && val < -63) | |
1963 val += 64; | |
1964 if (pred > 32 && val > 63) | |
1965 val -= 64; | |
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
1966 |
0 | 1967 } |
1968 return val; | |
1969 } | |
1970 | |
78 | 1971 /* Decodes RVLC of H.263+ UMV */ |
1972 static int h263p_decode_umotion(MpegEncContext * s, int pred) | |
1973 { | |
1974 int code = 0, sign; | |
1975 | |
1976 if (get_bits1(&s->gb)) /* Motion difference = 0 */ | |
1977 return pred; | |
1978 | |
1979 code = 2 + get_bits1(&s->gb); | |
1980 | |
1981 while (get_bits1(&s->gb)) | |
1982 { | |
1983 code <<= 1; | |
1984 code += get_bits1(&s->gb); | |
1985 } | |
1986 sign = code & 1; | |
1987 code >>= 1; | |
1988 | |
1989 code = (sign) ? (pred - code) : (pred + code); | |
1990 #ifdef DEBUG | |
1991 fprintf(stderr,"H.263+ UMV Motion = %d\n", code); | |
1992 #endif | |
1993 return code; | |
1994 | |
1995 } | |
1996 | |
0 | 1997 static int h263_decode_block(MpegEncContext * s, DCTELEM * block, |
1998 int n, int coded) | |
1999 { | |
2000 int code, level, i, j, last, run; | |
2001 RLTable *rl = &rl_inter; | |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2002 const UINT8 *scan_table; |
0 | 2003 |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2004 scan_table = zigzag_direct; |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2005 if (s->h263_aic && s->mb_intra) { |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2006 rl = &rl_intra_aic; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2007 i = 0; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2008 if (s->ac_pred) { |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2009 if (s->h263_aic_dir) |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2010 scan_table = ff_alternate_vertical_scan; /* left */ |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2011 else |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2012 scan_table = ff_alternate_horizontal_scan; /* top */ |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2013 } |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2014 } else if (s->mb_intra) { |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2015 /* DC coef */ |
0 | 2016 if (s->h263_rv10 && s->rv10_version == 3 && s->pict_type == I_TYPE) { |
2017 int component, diff; | |
2018 component = (n <= 3 ? 0 : n - 4 + 1); | |
2019 level = s->last_dc[component]; | |
2020 if (s->rv10_first_dc_coded[component]) { | |
2021 diff = rv_decode_dc(s, n); | |
2022 if (diff == 0xffff) | |
2023 return -1; | |
2024 level += diff; | |
2025 level = level & 0xff; /* handle wrap round */ | |
2026 s->last_dc[component] = level; | |
2027 } else { | |
2028 s->rv10_first_dc_coded[component] = 1; | |
2029 } | |
2030 } else { | |
2031 level = get_bits(&s->gb, 8); | |
2032 if (level == 255) | |
2033 level = 128; | |
2034 } | |
2035 block[0] = level; | |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2036 i = 1; |
0 | 2037 } else { |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2038 i = 0; |
0 | 2039 } |
2040 if (!coded) { | |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2041 if (s->mb_intra && s->h263_aic) |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2042 goto not_coded; |
0 | 2043 s->block_last_index[n] = i - 1; |
2044 return 0; | |
2045 } | |
2046 | |
2047 for(;;) { | |
2048 code = get_vlc(&s->gb, &rl->vlc); | |
2049 if (code < 0) | |
2050 return -1; | |
2051 if (code == rl->n) { | |
2052 /* escape */ | |
21 | 2053 last = get_bits1(&s->gb); |
0 | 2054 run = get_bits(&s->gb, 6); |
2055 level = (INT8)get_bits(&s->gb, 8); | |
2056 if (s->h263_rv10 && level == -128) { | |
2057 /* XXX: should patch encoder too */ | |
2058 level = get_bits(&s->gb, 12); | |
2059 level = (level << 20) >> 20; | |
2060 } | |
2061 } else { | |
2062 run = rl->table_run[code]; | |
2063 level = rl->table_level[code]; | |
2064 last = code >= rl->last; | |
21 | 2065 if (get_bits1(&s->gb)) |
0 | 2066 level = -level; |
2067 } | |
2068 i += run; | |
2069 if (i >= 64) | |
2070 return -1; | |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2071 j = scan_table[i]; |
0 | 2072 block[j] = level; |
2073 if (last) | |
2074 break; | |
2075 i++; | |
2076 } | |
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2077 not_coded: |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2078 if (s->mb_intra && s->h263_aic) { |
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
2079 h263_pred_acdc(s, block, n); |
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
2080 i = 63; |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2081 } |
0 | 2082 s->block_last_index[n] = i; |
2083 return 0; | |
2084 } | |
2085 | |
2086 static int mpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr) | |
2087 { | |
2088 int level, pred, code; | |
2089 UINT16 *dc_val; | |
2090 | |
2091 if (n < 4) | |
2092 code = get_vlc(&s->gb, &dc_lum); | |
2093 else | |
2094 code = get_vlc(&s->gb, &dc_chrom); | |
2095 if (code < 0) | |
2096 return -1; | |
2097 if (code == 0) { | |
2098 level = 0; | |
2099 } else { | |
2100 level = get_bits(&s->gb, code); | |
2101 if ((level >> (code - 1)) == 0) /* if MSB not set it is negative*/ | |
2102 level = - (level ^ ((1 << code) - 1)); | |
2103 if (code > 8) | |
21 | 2104 skip_bits1(&s->gb); /* marker */ |
0 | 2105 } |
2106 | |
2107 pred = mpeg4_pred_dc(s, n, &dc_val, dir_ptr); | |
2108 level += pred; | |
2109 if (level < 0) | |
2110 level = 0; | |
2111 if (n < 4) { | |
2112 *dc_val = level * s->y_dc_scale; | |
2113 } else { | |
2114 *dc_val = level * s->c_dc_scale; | |
2115 } | |
2116 return level; | |
2117 } | |
2118 | |
2119 static int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block, | |
2120 int n, int coded) | |
2121 { | |
2122 int code, level, i, j, last, run; | |
2123 int dc_pred_dir; | |
2124 RLTable *rl; | |
2125 const UINT8 *scan_table; | |
2126 | |
2127 if (s->mb_intra) { | |
2128 /* DC coef */ | |
2129 level = mpeg4_decode_dc(s, n, &dc_pred_dir); | |
2130 if (level < 0) | |
2131 return -1; | |
2132 block[0] = level; | |
2133 i = 1; | |
2134 if (!coded) | |
2135 goto not_coded; | |
2136 rl = &rl_intra; | |
2137 if (s->ac_pred) { | |
2138 if (dc_pred_dir == 0) | |
2139 scan_table = ff_alternate_vertical_scan; /* left */ | |
2140 else | |
2141 scan_table = ff_alternate_horizontal_scan; /* top */ | |
2142 } else { | |
2143 scan_table = zigzag_direct; | |
2144 } | |
2145 } else { | |
2146 i = 0; | |
2147 if (!coded) { | |
2148 s->block_last_index[n] = i - 1; | |
2149 return 0; | |
2150 } | |
2151 rl = &rl_inter; | |
2152 scan_table = zigzag_direct; | |
2153 } | |
2154 | |
2155 for(;;) { | |
2156 code = get_vlc(&s->gb, &rl->vlc); | |
2157 if (code < 0) | |
2158 return -1; | |
2159 if (code == rl->n) { | |
2160 /* escape */ | |
21 | 2161 if (get_bits1(&s->gb) != 0) { |
2162 if (get_bits1(&s->gb) != 0) { | |
0 | 2163 /* third escape */ |
21 | 2164 last = get_bits1(&s->gb); |
0 | 2165 run = get_bits(&s->gb, 6); |
21 | 2166 get_bits1(&s->gb); /* marker */ |
0 | 2167 level = get_bits(&s->gb, 12); |
2168 level = (level << 20) >> 20; /* sign extend */ | |
21 | 2169 skip_bits1(&s->gb); /* marker */ |
0 | 2170 } else { |
2171 /* second escape */ | |
2172 code = get_vlc(&s->gb, &rl->vlc); | |
2173 if (code < 0 || code >= rl->n) | |
2174 return -1; | |
2175 run = rl->table_run[code]; | |
2176 level = rl->table_level[code]; | |
2177 last = code >= rl->last; | |
2178 run += rl->max_run[last][level] + 1; | |
21 | 2179 if (get_bits1(&s->gb)) |
0 | 2180 level = -level; |
2181 } | |
2182 } else { | |
2183 /* first escape */ | |
2184 code = get_vlc(&s->gb, &rl->vlc); | |
2185 if (code < 0 || code >= rl->n) | |
2186 return -1; | |
2187 run = rl->table_run[code]; | |
2188 level = rl->table_level[code]; | |
2189 last = code >= rl->last; | |
2190 level += rl->max_level[last][run]; | |
21 | 2191 if (get_bits1(&s->gb)) |
0 | 2192 level = -level; |
2193 } | |
2194 } else { | |
2195 run = rl->table_run[code]; | |
2196 level = rl->table_level[code]; | |
2197 last = code >= rl->last; | |
21 | 2198 if (get_bits1(&s->gb)) |
0 | 2199 level = -level; |
2200 } | |
2201 i += run; | |
2202 if (i >= 64) | |
2203 return -1; | |
2204 j = scan_table[i]; | |
2205 block[j] = level; | |
2206 i++; | |
2207 if (last) | |
2208 break; | |
2209 } | |
2210 not_coded: | |
2211 if (s->mb_intra) { | |
2212 mpeg4_pred_ac(s, block, n, dc_pred_dir); | |
2213 if (s->ac_pred) { | |
2214 i = 64; /* XXX: not optimal */ | |
2215 } | |
2216 } | |
2217 s->block_last_index[n] = i - 1; | |
2218 return 0; | |
2219 } | |
2220 | |
2221 /* most is hardcoded. should extend to handle all h263 streams */ | |
2222 int h263_decode_picture_header(MpegEncContext *s) | |
2223 { | |
2224 int format, width, height; | |
2225 | |
2226 /* picture header */ | |
2227 if (get_bits(&s->gb, 22) != 0x20) | |
2228 return -1; | |
231 | 2229 s->picture_number = get_bits(&s->gb, 8); /* picture timestamp */ |
2230 | |
21 | 2231 if (get_bits1(&s->gb) != 1) |
0 | 2232 return -1; /* marker */ |
21 | 2233 if (get_bits1(&s->gb) != 0) |
0 | 2234 return -1; /* h263 id */ |
21 | 2235 skip_bits1(&s->gb); /* split screen off */ |
2236 skip_bits1(&s->gb); /* camera off */ | |
2237 skip_bits1(&s->gb); /* freeze picture release off */ | |
0 | 2238 |
155
3c3449bce692
- Bug fix on MV prediction for MPEG4 caused by new H.263 GOB code.
pulento
parents:
154
diff
changeset
|
2239 /* Reset GOB number */ |
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
2240 s->gob_number = 0; |
155
3c3449bce692
- Bug fix on MV prediction for MPEG4 caused by new H.263 GOB code.
pulento
parents:
154
diff
changeset
|
2241 |
0 | 2242 format = get_bits(&s->gb, 3); |
2243 | |
161 | 2244 if (format != 7 && format != 6) { |
0 | 2245 s->h263_plus = 0; |
2246 /* H.263v1 */ | |
2247 width = h263_format[format][0]; | |
2248 height = h263_format[format][1]; | |
2249 if (!width) | |
2250 return -1; | |
161 | 2251 |
2252 s->width = width; | |
2253 s->height = height; | |
21 | 2254 s->pict_type = I_TYPE + get_bits1(&s->gb); |
0 | 2255 |
21 | 2256 s->unrestricted_mv = get_bits1(&s->gb); |
0 | 2257 s->h263_long_vectors = s->unrestricted_mv; |
2258 | |
21 | 2259 if (get_bits1(&s->gb) != 0) |
0 | 2260 return -1; /* SAC: off */ |
161 | 2261 if (get_bits1(&s->gb) != 0) { |
2262 s->mv_type = MV_TYPE_8X8; /* Advanced prediction mode */ | |
2263 } | |
2264 | |
21 | 2265 if (get_bits1(&s->gb) != 0) |
0 | 2266 return -1; /* not PB frame */ |
2267 | |
2268 s->qscale = get_bits(&s->gb, 5); | |
21 | 2269 skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */ |
0 | 2270 } else { |
161 | 2271 int ufep; |
2272 | |
0 | 2273 /* H.263v2 */ |
161 | 2274 s->h263_plus = 1; |
2275 ufep = get_bits(&s->gb, 3); /* Update Full Extended PTYPE */ | |
2276 | |
2277 if (ufep == 1) { | |
2278 /* OPPTYPE */ | |
2279 format = get_bits(&s->gb, 3); | |
2280 skip_bits(&s->gb,1); /* Custom PCF */ | |
2281 s->umvplus_dec = get_bits(&s->gb, 1); /* Unrestricted Motion Vector */ | |
2282 skip_bits1(&s->gb); /* Syntax-based Arithmetic Coding (SAC) */ | |
2283 if (get_bits1(&s->gb) != 0) { | |
2284 s->mv_type = MV_TYPE_8X8; /* Advanced prediction mode */ | |
2285 } | |
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2286 if (get_bits1(&s->gb) != 0) { /* Advanced Intra Coding (AIC) */ |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2287 s->h263_aic = 1; |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2288 } |
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2289 skip_bits(&s->gb, 7); |
161 | 2290 skip_bits(&s->gb, 3); /* Reserved */ |
2291 } else if (ufep != 0) | |
0 | 2292 return -1; |
161 | 2293 |
78 | 2294 /* MPPTYPE */ |
0 | 2295 s->pict_type = get_bits(&s->gb, 3) + 1; |
2296 if (s->pict_type != I_TYPE && | |
2297 s->pict_type != P_TYPE) | |
2298 return -1; | |
250
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
2299 skip_bits(&s->gb, 2); |
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
2300 s->no_rounding = get_bits1(&s->gb); |
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
2301 //fprintf(stderr, "\nRTYPE: %d", s->no_rounding); |
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
2302 skip_bits(&s->gb, 4); |
78 | 2303 |
2304 /* Get the picture dimensions */ | |
161 | 2305 if (ufep) { |
2306 if (format == 6) { | |
2307 /* Custom Picture Format (CPFMT) */ | |
2308 skip_bits(&s->gb, 4); /* aspect ratio */ | |
2309 width = (get_bits(&s->gb, 9) + 1) * 4; | |
2310 skip_bits1(&s->gb); | |
2311 height = get_bits(&s->gb, 9) * 4; | |
78 | 2312 #ifdef DEBUG |
161 | 2313 fprintf(stderr,"\nH.263+ Custom picture: %dx%d\n",width,height); |
78 | 2314 #endif |
161 | 2315 } |
2316 else { | |
2317 width = h263_format[format][0]; | |
2318 height = h263_format[format][1]; | |
2319 } | |
2320 if ((width == 0) || (height == 0)) | |
2321 return -1; | |
2322 s->width = width; | |
2323 s->height = height; | |
2324 if (s->umvplus_dec) { | |
2325 skip_bits1(&s->gb); /* Unlimited Unrestricted Motion Vectors Indicator (UUI) */ | |
2326 } | |
78 | 2327 } |
2328 | |
0 | 2329 s->qscale = get_bits(&s->gb, 5); |
2330 } | |
2331 /* PEI */ | |
21 | 2332 while (get_bits1(&s->gb) != 0) { |
2333 skip_bits(&s->gb, 8); | |
0 | 2334 } |
2335 s->f_code = 1; | |
2336 return 0; | |
2337 } | |
2338 | |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2339 static void mpeg4_decode_sprite_trajectory(MpegEncContext * s) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2340 { |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2341 int i; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2342 int a= 2<<s->sprite_warping_accuracy; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2343 int rho= 3-s->sprite_warping_accuracy; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2344 int r=16/a; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2345 const int vop_ref[4][2]= {{0,0}, {s->width,0}, {0, s->height}, {s->width, s->height}}; // only true for rectangle shapes |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2346 int d[4][2]={{0,0}, {0,0}, {0,0}, {0,0}}; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2347 int sprite_ref[4][2]; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2348 int virtual_ref[2][2]; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2349 int w2, h2; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2350 int alpha=0, beta=0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2351 int w= s->width; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2352 int h= s->height; |
255 | 2353 //printf("SP %d\n", s->sprite_warping_accuracy); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2354 for(i=0; i<s->num_sprite_warping_points; i++){ |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2355 int length; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2356 int x=0, y=0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2357 |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2358 length= get_vlc(&s->gb, &sprite_trajectory); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2359 if(length){ |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2360 x= get_bits(&s->gb, length); |
255 | 2361 //printf("lx %d %d\n", length, x); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2362 if ((x >> (length - 1)) == 0) /* if MSB not set it is negative*/ |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2363 x = - (x ^ ((1 << length) - 1)); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2364 } |
255 | 2365 if(!(s->divx_version==500 && s->divx_build==413)) skip_bits1(&s->gb); /* marker bit */ |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2366 |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2367 length= get_vlc(&s->gb, &sprite_trajectory); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2368 if(length){ |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2369 y=get_bits(&s->gb, length); |
255 | 2370 //printf("ly %d %d\n", length, y); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2371 if ((y >> (length - 1)) == 0) /* if MSB not set it is negative*/ |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2372 y = - (y ^ ((1 << length) - 1)); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2373 } |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2374 skip_bits1(&s->gb); /* marker bit */ |
255 | 2375 //printf("%d %d %d %d\n", x, y, i, s->sprite_warping_accuracy); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2376 //if(i>0 && (x!=0 || y!=0)) printf("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\n"); |
255 | 2377 //x=y=0; |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2378 d[i][0]= x; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2379 d[i][1]= y; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2380 } |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2381 |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2382 while((1<<alpha)<w) alpha++; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2383 while((1<<beta )<h) beta++; // there seems to be a typo in the mpeg4 std for the definition of w' and h' |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2384 w2= 1<<alpha; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2385 h2= 1<<beta; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2386 |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2387 // Note, the 4th point isnt used for GMC |
262 | 2388 if(s->divx_version==500 && s->divx_build==413){ |
2389 sprite_ref[0][0]= a*vop_ref[0][0] + d[0][0]; | |
2390 sprite_ref[0][1]= a*vop_ref[0][1] + d[0][1]; | |
2391 sprite_ref[1][0]= a*vop_ref[1][0] + d[0][0] + d[1][0]; | |
2392 sprite_ref[1][1]= a*vop_ref[1][1] + d[0][1] + d[1][1]; | |
2393 sprite_ref[2][0]= a*vop_ref[2][0] + d[0][0] + d[2][0]; | |
2394 sprite_ref[2][1]= a*vop_ref[2][1] + d[0][1] + d[2][1]; | |
2395 } else { | |
2396 sprite_ref[0][0]= (a>>1)*(2*vop_ref[0][0] + d[0][0]); | |
2397 sprite_ref[0][1]= (a>>1)*(2*vop_ref[0][1] + d[0][1]); | |
2398 sprite_ref[1][0]= (a>>1)*(2*vop_ref[1][0] + d[0][0] + d[1][0]); | |
2399 sprite_ref[1][1]= (a>>1)*(2*vop_ref[1][1] + d[0][1] + d[1][1]); | |
2400 sprite_ref[2][0]= (a>>1)*(2*vop_ref[2][0] + d[0][0] + d[2][0]); | |
2401 sprite_ref[2][1]= (a>>1)*(2*vop_ref[2][1] + d[0][1] + d[2][1]); | |
2402 } | |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2403 /* sprite_ref[3][0]= (a>>1)*(2*vop_ref[3][0] + d[0][0] + d[1][0] + d[2][0] + d[3][0]); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2404 sprite_ref[3][1]= (a>>1)*(2*vop_ref[3][1] + d[0][1] + d[1][1] + d[2][1] + d[3][1]); */ |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2405 |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2406 // this is mostly identical to the mpeg4 std (and is totally unreadable because of that ...) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2407 // perhaps it should be reordered to be more readable ... |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2408 // the idea behind this virtual_ref mess is to be able to use shifts later per pixel instead of divides |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2409 // so the distance between points is converted from w&h based to w2&h2 based which are of the 2^x form |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2410 virtual_ref[0][0]= 16*(vop_ref[0][0] + w2) |
255 | 2411 + RDIV(((w - w2)*(r*sprite_ref[0][0] - 16*vop_ref[0][0]) + w2*(r*sprite_ref[1][0] - 16*vop_ref[1][0])),w); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2412 virtual_ref[0][1]= 16*vop_ref[0][1] |
255 | 2413 + RDIV(((w - w2)*(r*sprite_ref[0][1] - 16*vop_ref[0][1]) + w2*(r*sprite_ref[1][1] - 16*vop_ref[1][1])),w); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2414 virtual_ref[1][0]= 16*vop_ref[0][0] |
255 | 2415 + RDIV(((h - h2)*(r*sprite_ref[0][0] - 16*vop_ref[0][0]) + h2*(r*sprite_ref[2][0] - 16*vop_ref[2][0])),h); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2416 virtual_ref[1][1]= 16*(vop_ref[0][1] + h2) |
255 | 2417 + RDIV(((h - h2)*(r*sprite_ref[0][1] - 16*vop_ref[0][1]) + h2*(r*sprite_ref[2][1] - 16*vop_ref[2][1])),h); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2418 |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2419 switch(s->num_sprite_warping_points) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2420 { |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2421 case 0: |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2422 s->sprite_offset[0][0]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2423 s->sprite_offset[0][1]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2424 s->sprite_offset[1][0]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2425 s->sprite_offset[1][1]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2426 s->sprite_delta[0][0][0]= a; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2427 s->sprite_delta[0][0][1]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2428 s->sprite_delta[0][1][0]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2429 s->sprite_delta[0][1][1]= a; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2430 s->sprite_delta[1][0][0]= a; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2431 s->sprite_delta[1][0][1]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2432 s->sprite_delta[1][1][0]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2433 s->sprite_delta[1][1][1]= a; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2434 s->sprite_shift[0][0]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2435 s->sprite_shift[0][1]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2436 s->sprite_shift[1][0]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2437 s->sprite_shift[1][1]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2438 break; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2439 case 1: //GMC only |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2440 s->sprite_offset[0][0]= sprite_ref[0][0] - a*vop_ref[0][0]; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2441 s->sprite_offset[0][1]= sprite_ref[0][1] - a*vop_ref[0][1]; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2442 s->sprite_offset[1][0]= ((sprite_ref[0][0]>>1)|(sprite_ref[0][0]&1)) - a*(vop_ref[0][0]/2); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2443 s->sprite_offset[1][1]= ((sprite_ref[0][1]>>1)|(sprite_ref[0][1]&1)) - a*(vop_ref[0][1]/2); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2444 s->sprite_delta[0][0][0]= a; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2445 s->sprite_delta[0][0][1]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2446 s->sprite_delta[0][1][0]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2447 s->sprite_delta[0][1][1]= a; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2448 s->sprite_delta[1][0][0]= a; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2449 s->sprite_delta[1][0][1]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2450 s->sprite_delta[1][1][0]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2451 s->sprite_delta[1][1][1]= a; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2452 s->sprite_shift[0][0]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2453 s->sprite_shift[0][1]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2454 s->sprite_shift[1][0]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2455 s->sprite_shift[1][1]= 0; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2456 break; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2457 case 2: |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2458 case 3: //FIXME |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2459 s->sprite_offset[0][0]= (sprite_ref[0][0]<<(alpha+rho)) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2460 + ((-r*sprite_ref[0][0] + virtual_ref[0][0])*(-vop_ref[0][0]) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2461 +( r*sprite_ref[0][1] - virtual_ref[0][1])*(-vop_ref[0][1])); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2462 s->sprite_offset[0][1]= (sprite_ref[0][1]<<(alpha+rho)) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2463 + ((-r*sprite_ref[0][1] + virtual_ref[0][1])*(-vop_ref[0][0]) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2464 +(-r*sprite_ref[0][0] + virtual_ref[0][0])*(-vop_ref[0][1])); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2465 s->sprite_offset[1][0]= ((-r*sprite_ref[0][0] + virtual_ref[0][0])*(-2*vop_ref[0][0] + 1) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2466 +( r*sprite_ref[0][1] - virtual_ref[0][1])*(-2*vop_ref[0][1] + 1) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2467 +2*w2*r*sprite_ref[0][0] - 16*w2); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2468 s->sprite_offset[1][1]= ((-r*sprite_ref[0][1] + virtual_ref[0][1])*(-2*vop_ref[0][0] + 1) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2469 +(-r*sprite_ref[0][0] + virtual_ref[0][0])*(-2*vop_ref[0][1] + 1) |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2470 +2*w2*r*sprite_ref[0][1] - 16*w2); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2471 s->sprite_delta[0][0][0]= (-r*sprite_ref[0][0] + virtual_ref[0][0]); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2472 s->sprite_delta[0][0][1]= ( r*sprite_ref[0][1] - virtual_ref[0][1]); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2473 s->sprite_delta[0][1][0]= (-r*sprite_ref[0][1] + virtual_ref[0][1]); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2474 s->sprite_delta[0][1][1]= (-r*sprite_ref[0][0] + virtual_ref[0][0]); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2475 s->sprite_delta[1][0][0]= 4*(-r*sprite_ref[0][0] + virtual_ref[0][0]); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2476 s->sprite_delta[1][0][1]= 4*( r*sprite_ref[0][1] - virtual_ref[0][1]); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2477 s->sprite_delta[1][1][0]= 4*(-r*sprite_ref[0][1] + virtual_ref[0][1]); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2478 s->sprite_delta[1][1][1]= 4*(-r*sprite_ref[0][0] + virtual_ref[0][0]); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2479 s->sprite_shift[0][0]= alpha+rho; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2480 s->sprite_shift[0][1]= alpha+rho; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2481 s->sprite_shift[1][0]= alpha+rho+2; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2482 s->sprite_shift[1][1]= alpha+rho+2; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2483 break; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2484 // case 3: |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2485 break; |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2486 } |
255 | 2487 /*printf("%d %d\n", s->sprite_delta[0][0][0], a<<s->sprite_shift[0][0]); |
2488 printf("%d %d\n", s->sprite_delta[0][0][1], 0); | |
2489 printf("%d %d\n", s->sprite_delta[0][1][0], 0); | |
2490 printf("%d %d\n", s->sprite_delta[0][1][1], a<<s->sprite_shift[0][1]); | |
2491 printf("%d %d\n", s->sprite_delta[1][0][0], a<<s->sprite_shift[1][0]); | |
2492 printf("%d %d\n", s->sprite_delta[1][0][1], 0); | |
2493 printf("%d %d\n", s->sprite_delta[1][1][0], 0); | |
2494 printf("%d %d\n", s->sprite_delta[1][1][1], a<<s->sprite_shift[1][1]);*/ | |
2495 /* try to simplify the situation */ | |
2496 if( s->sprite_delta[0][0][0] == a<<s->sprite_shift[0][0] | |
2497 && s->sprite_delta[0][0][1] == 0 | |
2498 && s->sprite_delta[0][1][0] == 0 | |
2499 && s->sprite_delta[0][1][1] == a<<s->sprite_shift[0][1] | |
2500 && s->sprite_delta[1][0][0] == a<<s->sprite_shift[1][0] | |
2501 && s->sprite_delta[1][0][1] == 0 | |
2502 && s->sprite_delta[1][1][0] == 0 | |
2503 && s->sprite_delta[1][1][1] == a<<s->sprite_shift[1][1]) | |
2504 { | |
2505 s->sprite_offset[0][0]>>=s->sprite_shift[0][0]; | |
2506 s->sprite_offset[0][1]>>=s->sprite_shift[0][1]; | |
2507 s->sprite_offset[1][0]>>=s->sprite_shift[1][0]; | |
2508 s->sprite_offset[1][1]>>=s->sprite_shift[1][1]; | |
2509 s->sprite_delta[0][0][0]= a; | |
2510 s->sprite_delta[0][0][1]= 0; | |
2511 s->sprite_delta[0][1][0]= 0; | |
2512 s->sprite_delta[0][1][1]= a; | |
2513 s->sprite_delta[1][0][0]= a; | |
2514 s->sprite_delta[1][0][1]= 0; | |
2515 s->sprite_delta[1][1][0]= 0; | |
2516 s->sprite_delta[1][1][1]= a; | |
2517 s->sprite_shift[0][0]= 0; | |
2518 s->sprite_shift[0][1]= 0; | |
2519 s->sprite_shift[1][0]= 0; | |
2520 s->sprite_shift[1][1]= 0; | |
2521 s->real_sprite_warping_points=1; | |
2522 } | |
2523 else | |
2524 s->real_sprite_warping_points= s->num_sprite_warping_points; | |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2525 |
301 | 2526 //printf("%d %d %d %d\n", d[0][0], d[0][1], s->sprite_offset[0][0], s->sprite_offset[0][1]); |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2527 } |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2528 |
0 | 2529 /* decode mpeg4 VOP header */ |
2530 int mpeg4_decode_picture_header(MpegEncContext * s) | |
2531 { | |
2532 int time_incr, startcode, state, v; | |
324 | 2533 int time_increment; |
0 | 2534 |
2535 redo: | |
2536 /* search next start code */ | |
2537 align_get_bits(&s->gb); | |
2538 state = 0xff; | |
2539 for(;;) { | |
2540 v = get_bits(&s->gb, 8); | |
2541 if (state == 0x000001) { | |
2542 state = ((state << 8) | v) & 0xffffff; | |
2543 startcode = state; | |
2544 break; | |
2545 } | |
2546 state = ((state << 8) | v) & 0xffffff; | |
278 | 2547 if( get_bits_count(&s->gb) > s->gb.size*8-32){ |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
2548 printf("no VOP startcode found\n"); |
0 | 2549 return -1; |
263 | 2550 } |
0 | 2551 } |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2552 //printf("startcode %X %d\n", startcode, get_bits_count(&s->gb)); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2553 if (startcode == 0x120) { // Video Object Layer |
262 | 2554 int width, height, vo_ver_id; |
0 | 2555 |
2556 /* vol header */ | |
21 | 2557 skip_bits(&s->gb, 1); /* random access */ |
2558 skip_bits(&s->gb, 8); /* vo_type */ | |
63 | 2559 if (get_bits1(&s->gb) != 0) { /* is_ol_id */ |
2560 vo_ver_id = get_bits(&s->gb, 4); /* vo_ver_id */ | |
2561 skip_bits(&s->gb, 3); /* vo_priority */ | |
2562 } else { | |
2563 vo_ver_id = 1; | |
2564 } | |
0 | 2565 |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2566 s->aspect_ratio_info= get_bits(&s->gb, 4); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2567 if(s->aspect_ratio_info == EXTENDET_PAR){ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2568 skip_bits(&s->gb, 8); //par_width |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2569 skip_bits(&s->gb, 8); // par_height |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2570 } |
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
2571 |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2572 if(get_bits1(&s->gb)){ /* vol control parameter */ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2573 printf("vol control parameter not supported\n"); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2574 return -1; |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2575 } |
63 | 2576 s->shape = get_bits(&s->gb, 2); /* vol shape */ |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2577 if(s->shape != RECT_SHAPE) printf("only rectangular vol supported\n"); |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2578 if(s->shape == GRAY_SHAPE && vo_ver_id != 1){ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2579 printf("Gray shape not supported\n"); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2580 skip_bits(&s->gb, 4); //video_object_layer_shape_extension |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2581 } |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2582 |
21 | 2583 skip_bits1(&s->gb); /* marker */ |
0 | 2584 |
262 | 2585 s->time_increment_resolution = get_bits(&s->gb, 16); |
2586 s->time_increment_bits = av_log2(s->time_increment_resolution - 1) + 1; | |
63 | 2587 if (s->time_increment_bits < 1) |
2588 s->time_increment_bits = 1; | |
21 | 2589 skip_bits1(&s->gb); /* marker */ |
0 | 2590 |
63 | 2591 if (get_bits1(&s->gb) != 0) { /* fixed_vop_rate */ |
2592 skip_bits(&s->gb, s->time_increment_bits); | |
2593 } | |
0 | 2594 |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2595 if (s->shape != BIN_ONLY_SHAPE) { |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2596 if (s->shape == RECT_SHAPE) { |
63 | 2597 skip_bits1(&s->gb); /* marker */ |
2598 width = get_bits(&s->gb, 13); | |
2599 skip_bits1(&s->gb); /* marker */ | |
2600 height = get_bits(&s->gb, 13); | |
2601 skip_bits1(&s->gb); /* marker */ | |
274
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
272
diff
changeset
|
2602 if(width && height){ /* they should be non zero but who knows ... */ |
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
272
diff
changeset
|
2603 s->width = width; |
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
272
diff
changeset
|
2604 s->height = height; |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
2605 // printf("%d %d\n", width, height); |
274
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
272
diff
changeset
|
2606 } |
63 | 2607 } |
2608 | |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2609 if(get_bits1(&s->gb)) printf("interlaced not supported\n"); /* interlaced */ |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2610 if(!get_bits1(&s->gb)) printf("OBMC not supported\n"); /* OBMC Disable */ |
63 | 2611 if (vo_ver_id == 1) { |
2612 s->vol_sprite_usage = get_bits1(&s->gb); /* vol_sprite_usage */ | |
2613 } else { | |
2614 s->vol_sprite_usage = get_bits(&s->gb, 2); /* vol_sprite_usage */ | |
2615 } | |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2616 if(s->vol_sprite_usage==STATIC_SPRITE) printf("Static Sprites not supported\n"); |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2617 if(s->vol_sprite_usage==STATIC_SPRITE || s->vol_sprite_usage==GMC_SPRITE){ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2618 if(s->vol_sprite_usage==STATIC_SPRITE){ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2619 s->sprite_width = get_bits(&s->gb, 13); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2620 skip_bits1(&s->gb); /* marker */ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2621 s->sprite_height= get_bits(&s->gb, 13); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2622 skip_bits1(&s->gb); /* marker */ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2623 s->sprite_left = get_bits(&s->gb, 13); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2624 skip_bits1(&s->gb); /* marker */ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2625 s->sprite_top = get_bits(&s->gb, 13); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2626 skip_bits1(&s->gb); /* marker */ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2627 } |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2628 s->num_sprite_warping_points= get_bits(&s->gb, 6); |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2629 s->sprite_warping_accuracy = get_bits(&s->gb, 2); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2630 s->sprite_brightness_change= get_bits1(&s->gb); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2631 if(s->vol_sprite_usage==STATIC_SPRITE) |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2632 s->low_latency_sprite= get_bits1(&s->gb); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2633 } |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2634 // FIXME sadct disable bit if verid!=1 && shape not rect |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2635 |
63 | 2636 if (get_bits1(&s->gb) == 1) { /* not_8_bit */ |
2637 s->quant_precision = get_bits(&s->gb, 4); /* quant_precision */ | |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2638 if(get_bits(&s->gb, 4)!=8) printf("N-bit not supported\n"); /* bits_per_pixel */ |
290 | 2639 if(s->quant_precision!=5) printf("quant precission %d\n", s->quant_precision); |
63 | 2640 } else { |
2641 s->quant_precision = 5; | |
2642 } | |
2643 | |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2644 // FIXME a bunch of grayscale shape things |
312 | 2645 |
2646 if(get_bits1(&s->gb)){ /* vol_quant_type */ | |
2647 int i, j, v; | |
2648 /* load default matrixes */ | |
2649 for(i=0; i<64; i++){ | |
2650 v= ff_mpeg4_default_intra_matrix[i]; | |
2651 s->intra_matrix[i]= v; | |
2652 s->chroma_intra_matrix[i]= v; | |
2653 | |
2654 v= ff_mpeg4_default_non_intra_matrix[i]; | |
2655 s->non_intra_matrix[i]= v; | |
2656 s->chroma_non_intra_matrix[i]= v; | |
2657 } | |
2658 | |
2659 /* load custom intra matrix */ | |
2660 if(get_bits1(&s->gb)){ | |
2661 for(i=0; i<64; i++){ | |
2662 v= get_bits(&s->gb, 8); | |
2663 if(v==0) break; | |
2664 | |
2665 j= zigzag_direct[i]; | |
2666 s->intra_matrix[j]= v; | |
2667 s->chroma_intra_matrix[j]= v; | |
2668 } | |
2669 } | |
2670 | |
2671 /* load custom non intra matrix */ | |
2672 if(get_bits1(&s->gb)){ | |
2673 for(i=0; i<64; i++){ | |
2674 v= get_bits(&s->gb, 8); | |
2675 if(v==0) break; | |
2676 | |
2677 j= zigzag_direct[i]; | |
2678 s->non_intra_matrix[j]= v; | |
2679 s->chroma_non_intra_matrix[j]= v; | |
2680 } | |
2681 | |
2682 /* replicate last value */ | |
2683 for(; i<64; i++){ | |
2684 j= zigzag_direct[i]; | |
2685 s->non_intra_matrix[j]= v; | |
2686 s->chroma_non_intra_matrix[j]= v; | |
2687 } | |
2688 } | |
2689 | |
325 | 2690 s->dct_unquantize= s->dct_unquantize_mpeg2; |
312 | 2691 |
2692 // FIXME a bunch of grayscale shape things | |
2693 }else | |
2694 s->dct_unquantize= s->dct_unquantize_h263; | |
2695 | |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2696 if(vo_ver_id != 1) |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2697 s->quarter_sample= get_bits1(&s->gb); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2698 else s->quarter_sample=0; |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2699 |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2700 if(!get_bits1(&s->gb)) printf("Complexity estimation not supported\n"); |
290 | 2701 |
2702 s->resync_marker= !get_bits1(&s->gb); /* resync_marker_disabled */ | |
2703 | |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2704 s->data_partioning= get_bits1(&s->gb); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2705 if(s->data_partioning){ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2706 printf("data partitioning not supported\n"); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2707 skip_bits1(&s->gb); // reversible vlc |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2708 } |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2709 |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2710 if(vo_ver_id != 1) { |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2711 s->new_pred= get_bits1(&s->gb); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2712 if(s->new_pred){ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2713 printf("new pred not supported\n"); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2714 skip_bits(&s->gb, 2); /* requested upstream message type */ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2715 skip_bits1(&s->gb); /* newpred segment type */ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2716 } |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2717 s->reduced_res_vop= get_bits1(&s->gb); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2718 if(s->reduced_res_vop) printf("reduced resolution VOP not supported\n"); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2719 } |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2720 else{ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2721 s->new_pred=0; |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2722 s->reduced_res_vop= 0; |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2723 } |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2724 |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2725 s->scalability= get_bits1(&s->gb); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2726 if (s->scalability) { |
285 | 2727 printf("scalability not supported\n"); |
63 | 2728 } |
2729 } | |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2730 //printf("end Data %X %d\n", show_bits(&s->gb, 32), get_bits_count(&s->gb)&0x7); |
0 | 2731 goto redo; |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2732 } else if (startcode == 0x1b2) { //userdata |
255 | 2733 char buf[256]; |
2734 int i; | |
2735 int e; | |
2736 int ver, build; | |
2737 | |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2738 //printf("user Data %X\n", show_bits(&s->gb, 32)); |
255 | 2739 buf[0]= show_bits(&s->gb, 8); |
2740 for(i=1; i<256; i++){ | |
2741 buf[i]= show_bits(&s->gb, 16)&0xFF; | |
2742 if(buf[i]==0) break; | |
2743 skip_bits(&s->gb, 8); | |
2744 } | |
2745 buf[255]=0; | |
2746 e=sscanf(buf, "DivX%dBuild%d", &ver, &build); | |
2747 if(e==2){ | |
2748 s->divx_version= ver; | |
2749 s->divx_build= build; | |
2750 if(s->picture_number==0){ | |
2751 printf("This file was encoded with DivX%d Build%d\n", ver, build); | |
2752 if(ver==500 && build==413){ //most likely all version are indeed totally buggy but i dunno for sure ... | |
2753 printf("WARNING: this version of DivX is not MPEG4 compatible, trying to workaround these bugs...\n"); | |
2754 }else{ | |
2755 printf("hmm, i havnt seen that version of divx yet, lets assume they fixed these bugs ...\n" | |
2756 "using mpeg4 decoder, if it fails contact the developers (of ffmpeg)\n"); | |
2757 } | |
2758 } | |
2759 } | |
2760 //printf("User Data: %s\n", buf); | |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2761 goto redo; |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2762 } else if (startcode != 0x1b6) { //VOP |
0 | 2763 goto redo; |
2764 } | |
2765 | |
2766 s->pict_type = get_bits(&s->gb, 2) + 1; /* pict type: I = 0 , P = 1 */ | |
324 | 2767 // printf("pic: %d, qpel:%d\n", s->pict_type, s->quarter_sample); |
262 | 2768 time_incr=0; |
21 | 2769 while (get_bits1(&s->gb) != 0) |
0 | 2770 time_incr++; |
2771 | |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2772 check_marker(&s->gb, "before time_increment"); |
324 | 2773 time_increment= get_bits(&s->gb, s->time_increment_bits); |
2774 //printf(" type:%d incr:%d increment:%d\n", s->pict_type, time_incr, time_increment); | |
262 | 2775 if(s->pict_type!=B_TYPE){ |
324 | 2776 s->last_time_base= s->time_base; |
262 | 2777 s->time_base+= time_incr; |
324 | 2778 s->time= s->time_base*s->time_increment_resolution + time_increment; |
2779 s->pp_time= s->time - s->last_non_b_time; | |
2780 s->last_non_b_time= s->time; | |
262 | 2781 }else{ |
324 | 2782 s->time= (s->last_time_base + time_incr)*s->time_increment_resolution + time_increment; |
2783 s->bp_time= s->last_non_b_time - s->time; | |
262 | 2784 } |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2785 |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2786 if(check_marker(&s->gb, "before vop_coded")==0 && s->picture_number==0){ |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2787 printf("hmm, seems the headers arnt complete, trying to guess time_increment_bits\n"); |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2788 for(s->time_increment_bits++ ;s->time_increment_bits<16; s->time_increment_bits++){ |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2789 if(get_bits1(&s->gb)) break; |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2790 } |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2791 printf("my guess is %d bits ;)\n",s->time_increment_bits); |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2792 } |
0 | 2793 /* vop coded */ |
21 | 2794 if (get_bits1(&s->gb) != 1) |
63 | 2795 goto redo; |
262 | 2796 //printf("time %d %d %d || %d %d %d\n", s->time_increment_bits, s->time_increment, s->time_base, |
2797 //s->time, s->last_non_b_time[0], s->last_non_b_time[1]); | |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2798 if (s->shape != BIN_ONLY_SHAPE && ( s->pict_type == P_TYPE |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2799 || (s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE))) { |
0 | 2800 /* rounding type for motion estimation */ |
21 | 2801 s->no_rounding = get_bits1(&s->gb); |
63 | 2802 } else { |
2803 s->no_rounding = 0; | |
0 | 2804 } |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2805 //FIXME reduced res stuff |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2806 |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2807 if (s->shape != RECT_SHAPE) { |
63 | 2808 if (s->vol_sprite_usage != 1 || s->pict_type != I_TYPE) { |
2809 int width, height, hor_spat_ref, ver_spat_ref; | |
2810 | |
2811 width = get_bits(&s->gb, 13); | |
2812 skip_bits1(&s->gb); /* marker */ | |
2813 height = get_bits(&s->gb, 13); | |
2814 skip_bits1(&s->gb); /* marker */ | |
2815 hor_spat_ref = get_bits(&s->gb, 13); /* hor_spat_ref */ | |
2816 skip_bits1(&s->gb); /* marker */ | |
2817 ver_spat_ref = get_bits(&s->gb, 13); /* ver_spat_ref */ | |
2818 } | |
2819 skip_bits1(&s->gb); /* change_CR_disable */ | |
2820 | |
2821 if (get_bits1(&s->gb) != 0) { | |
2822 skip_bits(&s->gb, 8); /* constant_alpha_value */ | |
2823 } | |
2824 } | |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2825 //FIXME complexity estimation stuff |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2826 |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2827 if (s->shape != BIN_ONLY_SHAPE) { |
290 | 2828 int t; |
2829 t=get_bits(&s->gb, 3); /* intra dc VLC threshold */ | |
2830 //printf("threshold %d\n", t); | |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2831 //FIXME interlaced specific bits |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2832 } |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2833 |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2834 if(s->pict_type == S_TYPE && (s->vol_sprite_usage==STATIC_SPRITE || s->vol_sprite_usage==GMC_SPRITE)){ |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2835 if(s->num_sprite_warping_points){ |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2836 mpeg4_decode_sprite_trajectory(s); |
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2837 } |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2838 if(s->sprite_brightness_change) printf("sprite_brightness_change not supported\n"); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2839 if(s->vol_sprite_usage==STATIC_SPRITE) printf("static sprite not supported\n"); |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2840 } |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2841 |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2842 if (s->shape != BIN_ONLY_SHAPE) { |
63 | 2843 /* note: we do not use quant_precision to avoid problem if no |
2844 MPEG4 vol header as it is found on some old opendivx | |
2845 movies */ | |
2846 s->qscale = get_bits(&s->gb, 5); | |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2847 if(s->qscale==0){ |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2848 printf("Error, header damaged or not MPEG4 header (qscale=0)\n"); |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2849 return -1; // makes no sense to continue, as there is nothing left from the image then |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2850 } |
63 | 2851 |
2852 if (s->pict_type != I_TYPE) { | |
2853 s->f_code = get_bits(&s->gb, 3); /* fcode_for */ | |
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2854 if(s->f_code==0){ |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2855 printf("Error, header damaged or not MPEG4 header (f_code=0)\n"); |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2856 return -1; // makes no sense to continue, as the MV decoding will break very quickly |
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
2857 } |
63 | 2858 } |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2859 if (s->pict_type == B_TYPE) { |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2860 s->b_code = get_bits(&s->gb, 3); |
262 | 2861 //printf("b-code %d\n", s->b_code); |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2862 } |
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2863 //printf("quant:%d fcode:%d\n", s->qscale, s->f_code); |
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2864 if(!s->scalability){ |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2865 if (s->shape!=RECT_SHAPE && s->pict_type!=I_TYPE) { |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2866 skip_bits1(&s->gb); // vop shape coding type |
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
2867 } |
63 | 2868 } |
2869 } | |
255 | 2870 s->picture_number++; // better than pic number==0 allways ;) |
63 | 2871 return 0; |
0 | 2872 } |
2873 | |
2874 /* don't understand why they choose a different header ! */ | |
2875 int intel_h263_decode_picture_header(MpegEncContext *s) | |
2876 { | |
2877 int format; | |
2878 | |
2879 /* picture header */ | |
2880 if (get_bits(&s->gb, 22) != 0x20) | |
2881 return -1; | |
21 | 2882 skip_bits(&s->gb, 8); /* picture timestamp */ |
0 | 2883 |
21 | 2884 if (get_bits1(&s->gb) != 1) |
0 | 2885 return -1; /* marker */ |
21 | 2886 if (get_bits1(&s->gb) != 0) |
0 | 2887 return -1; /* h263 id */ |
21 | 2888 skip_bits1(&s->gb); /* split screen off */ |
2889 skip_bits1(&s->gb); /* camera off */ | |
2890 skip_bits1(&s->gb); /* freeze picture release off */ | |
0 | 2891 |
2892 format = get_bits(&s->gb, 3); | |
2893 if (format != 7) | |
2894 return -1; | |
2895 | |
2896 s->h263_plus = 0; | |
2897 | |
21 | 2898 s->pict_type = I_TYPE + get_bits1(&s->gb); |
0 | 2899 |
21 | 2900 s->unrestricted_mv = get_bits1(&s->gb); |
0 | 2901 s->h263_long_vectors = s->unrestricted_mv; |
2902 | |
21 | 2903 if (get_bits1(&s->gb) != 0) |
0 | 2904 return -1; /* SAC: off */ |
21 | 2905 if (get_bits1(&s->gb) != 0) |
0 | 2906 return -1; /* advanced prediction mode: off */ |
21 | 2907 if (get_bits1(&s->gb) != 0) |
0 | 2908 return -1; /* not PB frame */ |
2909 | |
2910 /* skip unknown header garbage */ | |
21 | 2911 skip_bits(&s->gb, 41); |
0 | 2912 |
2913 s->qscale = get_bits(&s->gb, 5); | |
21 | 2914 skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */ |
0 | 2915 |
2916 /* PEI */ | |
21 | 2917 while (get_bits1(&s->gb) != 0) { |
2918 skip_bits(&s->gb, 8); | |
0 | 2919 } |
2920 s->f_code = 1; | |
2921 return 0; | |
2922 } | |
144 | 2923 |