Mercurial > libavcodec.hg
annotate h263.c @ 656:e47fa3e3f2d5 libavcodec
statistics for forw & back p-MBs instead of just one counter for both
| author | michaelni |
|---|---|
| date | Thu, 12 Sep 2002 12:26:09 +0000 |
| parents | 850098147a3c |
| children | 9dc53c09d791 |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * H263/MPEG4 backend for ffmpeg encoder and decoder | |
| 429 | 3 * Copyright (c) 2000,2001 Fabrice Bellard. |
| 78 | 4 * H263+ support. |
| 0 | 5 * Copyright (c) 2001 Juan J. Sierralta P. |
| 6 * | |
| 429 | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Lesser General Public | |
| 9 * License as published by the Free Software Foundation; either | |
| 10 * version 2 of the License, or (at your option) any later version. | |
| 0 | 11 * |
| 429 | 12 * This library is distributed in the hope that it will be useful, |
| 0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 429 | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 * Lesser General Public License for more details. | |
| 0 | 16 * |
| 429 | 17 * You should have received a copy of the GNU Lesser General Public |
| 18 * License along with this library; if not, write to the Free Software | |
| 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
20 * |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
21 * ac prediction encoding, b-frame support, error resilience, optimizations, |
|
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
22 * qpel decoding, gmc decoding, interlaced decoding, |
|
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
23 * by Michael Niedermayer <michaelni@gmx.at> |
| 0 | 24 */ |
| 355 | 25 |
| 26 //#define DEBUG | |
| 0 | 27 #include "common.h" |
| 28 #include "dsputil.h" | |
| 29 #include "avcodec.h" | |
| 30 #include "mpegvideo.h" | |
| 31 #include "h263data.h" | |
| 32 #include "mpeg4data.h" | |
| 33 | |
| 255 | 34 //rounded divison & shift |
| 35 #define RSHIFT(a,b) ((a) > 0 ? ((a) + (1<<((b)-1)))>>(b) : ((a) + (1<<((b)-1))-1)>>(b)) | |
| 36 | |
| 523 | 37 #define PRINT_MB_TYPE(a) {} |
| 38 //#define PRINT_MB_TYPE(a) printf(a) | |
| 359 | 39 |
| 544 | 40 #define INTRA_MCBPC_VLC_BITS 6 |
| 41 #define INTER_MCBPC_VLC_BITS 6 | |
| 42 #define CBPY_VLC_BITS 6 | |
| 43 #define MV_VLC_BITS 9 | |
| 44 #define DC_VLC_BITS 9 | |
| 45 #define SPRITE_TRAJ_VLC_BITS 6 | |
| 46 #define MB_TYPE_B_VLC_BITS 4 | |
| 47 #define TEX_VLC_BITS 9 | |
| 48 | |
| 0 | 49 static void h263_encode_block(MpegEncContext * s, DCTELEM * block, |
| 50 int n); | |
| 324 | 51 static void h263_encode_motion(MpegEncContext * s, int val, int fcode); |
| 78 | 52 static void h263p_encode_umotion(MpegEncContext * s, int val); |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
53 static inline void mpeg4_encode_block(MpegEncContext * s, DCTELEM * block, |
| 453 | 54 int n, int dc, UINT8 *scan_table, |
| 55 PutBitContext *dc_pb, PutBitContext *ac_pb); | |
| 262 | 56 static int h263_decode_motion(MpegEncContext * s, int pred, int fcode); |
| 78 | 57 static int h263p_decode_umotion(MpegEncContext * s, int pred); |
| 0 | 58 static int h263_decode_block(MpegEncContext * s, DCTELEM * block, |
| 59 int n, int coded); | |
| 453 | 60 static inline int mpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr); |
| 61 static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block, | |
| 575 | 62 int n, int coded, int intra); |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
63 static int h263_pred_dc(MpegEncContext * s, int n, UINT16 **dc_val_ptr); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
64 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
|
65 int dir); |
| 290 | 66 static void mpeg4_decode_sprite_trajectory(MpegEncContext * s); |
| 67 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
68 extern UINT32 inverse[256]; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
69 |
|
292
73a9ce3d9715
fcode_tables where too small, found by Klaas-Pieter Vlieg <vlieg@eurescom.de>
michaelni
parents:
291
diff
changeset
|
70 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
|
71 static UINT8 fcode_tab[MAX_MV*2+1]; |
| 287 | 72 static UINT8 umv_fcode_tab[MAX_MV*2+1]; |
| 0 | 73 |
| 293 | 74 static UINT16 uni_DCtab_lum [512][2]; |
| 75 static UINT16 uni_DCtab_chrom[512][2]; | |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
76 static UINT32 uni_mpeg4_intra_rl_bits[64*64*2*2]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
77 static UINT8 uni_mpeg4_intra_rl_len [64*64*2*2]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
78 static UINT32 uni_mpeg4_inter_rl_bits[64*64*2*2]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
79 static UINT8 uni_mpeg4_inter_rl_len [64*64*2*2]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
80 #define UNI_MPEG4_ENC_INDEX(last,run,level) ((last)*128 + (run)*256 + (level)) |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
81 //#define UNI_MPEG4_ENC_INDEX(last,run,level) ((last)*128*64 + (run) + (level)*64) |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
82 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
83 /* mpeg4 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
84 inter |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
85 max level: 24/6 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
86 max run: 53/63 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
87 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
88 intra |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
89 max level: 53/16 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
90 max run: 29/41 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
91 */ |
| 293 | 92 |
| 0 | 93 int h263_get_picture_format(int width, int height) |
| 94 { | |
| 95 int format; | |
| 96 | |
| 97 if (width == 128 && height == 96) | |
| 355 | 98 format = 1; |
| 0 | 99 else if (width == 176 && height == 144) |
| 355 | 100 format = 2; |
| 0 | 101 else if (width == 352 && height == 288) |
| 355 | 102 format = 3; |
| 0 | 103 else if (width == 704 && height == 576) |
| 355 | 104 format = 4; |
| 0 | 105 else if (width == 1408 && height == 1152) |
| 355 | 106 format = 5; |
| 0 | 107 else |
| 108 format = 7; | |
| 109 return format; | |
| 110 } | |
| 111 | |
| 112 void h263_encode_picture_header(MpegEncContext * s, int picture_number) | |
| 113 { | |
| 78 | 114 int format; |
| 0 | 115 |
| 116 align_put_bits(&s->pb); | |
| 231 | 117 |
| 118 /* 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
|
119 s->ptr_lastgob = pbBufPtr(&s->pb); |
| 231 | 120 s->gob_number = 0; |
| 121 | |
| 122 put_bits(&s->pb, 22, 0x20); /* PSC */ | |
| 241 | 123 put_bits(&s->pb, 8, (((INT64)s->picture_number * 30 * FRAME_RATE_BASE) / |
| 0 | 124 s->frame_rate) & 0xff); |
| 125 | |
| 126 put_bits(&s->pb, 1, 1); /* marker */ | |
| 127 put_bits(&s->pb, 1, 0); /* h263 id */ | |
| 128 put_bits(&s->pb, 1, 0); /* split screen off */ | |
| 129 put_bits(&s->pb, 1, 0); /* camera off */ | |
| 130 put_bits(&s->pb, 1, 0); /* freeze picture release off */ | |
| 78 | 131 |
| 132 format = h263_get_picture_format(s->width, s->height); | |
| 0 | 133 if (!s->h263_plus) { |
| 134 /* H.263v1 */ | |
| 135 put_bits(&s->pb, 3, format); | |
| 136 put_bits(&s->pb, 1, (s->pict_type == P_TYPE)); | |
| 137 /* By now UMV IS DISABLED ON H.263v1, since the restrictions | |
| 138 of H.263v1 UMV implies to check the predicted MV after | |
| 139 calculation of the current MB to see if we're on the limits */ | |
| 140 put_bits(&s->pb, 1, 0); /* unrestricted motion vector: off */ | |
| 141 put_bits(&s->pb, 1, 0); /* SAC: off */ | |
| 142 put_bits(&s->pb, 1, 0); /* advanced prediction mode: off */ | |
| 143 put_bits(&s->pb, 1, 0); /* not PB frame */ | |
| 144 put_bits(&s->pb, 5, s->qscale); | |
| 145 put_bits(&s->pb, 1, 0); /* Continuous Presence Multipoint mode: off */ | |
| 146 } else { | |
| 147 /* H.263v2 */ | |
| 148 /* H.263 Plus PTYPE */ | |
| 149 put_bits(&s->pb, 3, 7); | |
| 150 put_bits(&s->pb,3,1); /* Update Full Extended PTYPE */ | |
| 78 | 151 if (format == 7) |
| 152 put_bits(&s->pb,3,6); /* Custom Source Format */ | |
| 153 else | |
| 154 put_bits(&s->pb, 3, format); | |
| 155 | |
| 0 | 156 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
|
157 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
|
158 put_bits(&s->pb, 1, s->umvplus); /* Unrestricted Motion Vector */ |
| 0 | 159 put_bits(&s->pb,1,0); /* SAC: off */ |
| 160 put_bits(&s->pb,1,0); /* Advanced Prediction Mode: off */ | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
161 put_bits(&s->pb,1,s->h263_aic); /* Advanced Intra Coding */ |
| 0 | 162 put_bits(&s->pb,1,0); /* Deblocking Filter: off */ |
| 163 put_bits(&s->pb,1,0); /* Slice Structured: off */ | |
| 164 put_bits(&s->pb,1,0); /* Reference Picture Selection: off */ | |
| 165 put_bits(&s->pb,1,0); /* Independent Segment Decoding: off */ | |
| 166 put_bits(&s->pb,1,0); /* Alternative Inter VLC: off */ | |
| 167 put_bits(&s->pb,1,0); /* Modified Quantization: off */ | |
| 168 put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */ | |
| 169 put_bits(&s->pb,3,0); /* Reserved */ | |
| 170 | |
| 171 put_bits(&s->pb, 3, s->pict_type == P_TYPE); | |
| 172 | |
| 173 put_bits(&s->pb,1,0); /* Reference Picture Resampling: off */ | |
| 174 put_bits(&s->pb,1,0); /* Reduced-Resolution Update: off */ | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
175 if (s->pict_type == I_TYPE) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
176 s->no_rounding = 0; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
177 else |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
178 s->no_rounding ^= 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
179 put_bits(&s->pb,1,s->no_rounding); /* Rounding Type */ |
| 0 | 180 put_bits(&s->pb,2,0); /* Reserved */ |
| 181 put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */ | |
| 182 | |
| 183 /* This should be here if PLUSPTYPE */ | |
| 184 put_bits(&s->pb, 1, 0); /* Continuous Presence Multipoint mode: off */ | |
| 185 | |
| 78 | 186 if (format == 7) { |
| 187 /* Custom Picture Format (CPFMT) */ | |
| 0 | 188 |
| 355 | 189 if (s->aspect_ratio_info) |
| 190 put_bits(&s->pb,4,s->aspect_ratio_info); | |
| 191 else | |
| 78 | 192 put_bits(&s->pb,4,2); /* Aspect ratio: CIF 12:11 (4:3) picture */ |
| 193 put_bits(&s->pb,9,(s->width >> 2) - 1); | |
| 194 put_bits(&s->pb,1,1); /* "1" to prevent start code emulation */ | |
| 195 put_bits(&s->pb,9,(s->height >> 2)); | |
| 196 } | |
| 197 | |
| 0 | 198 /* Unlimited Unrestricted Motion Vectors Indicator (UUI) */ |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
199 if (s->umvplus) |
| 0 | 200 put_bits(&s->pb,1,1); /* Limited according tables of Annex D */ |
| 201 put_bits(&s->pb, 5, s->qscale); | |
| 202 } | |
| 203 | |
| 204 put_bits(&s->pb, 1, 0); /* no PEI */ | |
| 498 | 205 |
| 206 if(s->h263_aic){ | |
| 207 s->y_dc_scale_table= | |
| 208 s->c_dc_scale_table= h263_aic_dc_scale_table; | |
| 209 }else{ | |
| 210 s->y_dc_scale_table= | |
| 211 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; | |
| 212 } | |
| 0 | 213 } |
| 214 | |
| 162 | 215 int h263_encode_gob_header(MpegEncContext * s, int mb_line) |
| 216 { | |
| 217 int pdif=0; | |
| 218 | |
| 219 /* Check to see if we need to put a new GBSC */ | |
| 220 /* for RTP packetization */ | |
| 221 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
|
222 pdif = pbBufPtr(&s->pb) - s->ptr_lastgob; |
| 162 | 223 if (pdif >= s->rtp_payload_size) { |
| 224 /* Bad luck, packet must be cut before */ | |
| 225 align_put_bits(&s->pb); | |
| 231 | 226 flush_put_bits(&s->pb); |
| 227 /* Call the RTP callback to send the last GOB */ | |
| 228 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
|
229 pdif = pbBufPtr(&s->pb) - s->ptr_lastgob; |
| 231 | 230 s->rtp_callback(s->ptr_lastgob, pdif, s->gob_number); |
| 231 } | |
|
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
|
232 s->ptr_lastgob = pbBufPtr(&s->pb); |
| 162 | 233 put_bits(&s->pb, 17, 1); /* GBSC */ |
| 231 | 234 s->gob_number = mb_line / s->gob_index; |
| 162 | 235 put_bits(&s->pb, 5, s->gob_number); /* GN */ |
| 231 | 236 put_bits(&s->pb, 2, s->pict_type == I_TYPE); /* GFID */ |
| 162 | 237 put_bits(&s->pb, 5, s->qscale); /* GQUANT */ |
| 231 | 238 //fprintf(stderr,"\nGOB: %2d size: %d", s->gob_number - 1, pdif); |
| 162 | 239 return pdif; |
| 240 } else if (pdif + s->mb_line_avgsize >= s->rtp_payload_size) { | |
| 241 /* Cut the packet before we can't */ | |
| 242 align_put_bits(&s->pb); | |
| 231 | 243 flush_put_bits(&s->pb); |
| 244 /* Call the RTP callback to send the last GOB */ | |
| 245 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
|
246 pdif = pbBufPtr(&s->pb) - s->ptr_lastgob; |
| 231 | 247 s->rtp_callback(s->ptr_lastgob, pdif, s->gob_number); |
| 248 } | |
|
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
|
249 s->ptr_lastgob = pbBufPtr(&s->pb); |
| 162 | 250 put_bits(&s->pb, 17, 1); /* GBSC */ |
| 231 | 251 s->gob_number = mb_line / s->gob_index; |
| 162 | 252 put_bits(&s->pb, 5, s->gob_number); /* GN */ |
| 231 | 253 put_bits(&s->pb, 2, s->pict_type == I_TYPE); /* GFID */ |
| 162 | 254 put_bits(&s->pb, 5, s->qscale); /* GQUANT */ |
| 231 | 255 //fprintf(stderr,"\nGOB: %2d size: %d", s->gob_number - 1, pdif); |
| 162 | 256 return pdif; |
| 257 } | |
| 258 } | |
| 259 return 0; | |
| 260 } | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
261 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
262 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
|
263 { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
264 int score0=0, score1=0; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
265 int i, n; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
266 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
267 for(n=0; n<6; n++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
268 INT16 *ac_val, *ac_val1; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
269 |
| 266 | 270 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
|
271 ac_val1= ac_val; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
272 if(dir[n]){ |
| 266 | 273 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
|
274 for(i=1; i<8; i++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
275 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
|
276 score0+= ABS(level); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
277 score1+= ABS(level - ac_val[i+8]); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
278 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
|
279 ac_val1[i+8]= level; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
280 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
281 }else{ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
282 ac_val-= 16; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
283 for(i=1; i<8; i++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
284 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
|
285 score0+= ABS(level); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
286 score1+= ABS(level - ac_val[i]); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
287 ac_val1[i ]= level; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
288 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
|
289 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
290 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
291 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
292 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
293 return score0 > score1 ? 1 : 0; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
294 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
295 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
296 void mpeg4_encode_mb(MpegEncContext * s, |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
297 DCTELEM block[6][64], |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
298 int motion_x, int motion_y) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
299 { |
| 324 | 300 int cbpc, cbpy, i, pred_x, pred_y; |
| 286 | 301 int bits; |
| 453 | 302 PutBitContext * const pb2 = s->data_partitioning ? &s->pb2 : &s->pb; |
| 303 PutBitContext * const tex_pb = s->data_partitioning && s->pict_type!=B_TYPE ? &s->tex_pb : &s->pb; | |
| 304 PutBitContext * const dc_pb = s->data_partitioning && s->pict_type!=I_TYPE ? &s->pb2 : &s->pb; | |
| 305 const int interleaved_stats= (s->flags&CODEC_FLAG_PASS1) && !s->data_partitioning ? 1 : 0; | |
| 162 | 306 |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
307 // 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
|
308 if (!s->mb_intra) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
309 /* compute cbp */ |
| 324 | 310 int cbp = 0; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
311 for (i = 0; i < 6; i++) { |
| 324 | 312 if (s->block_last_index[i] >= 0) |
| 313 cbp |= 1 << (5 - i); | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
314 } |
| 324 | 315 |
| 316 if(s->pict_type==B_TYPE){ | |
| 317 static const int mb_type_table[8]= {-1, 2, 3, 1,-1,-1,-1, 0}; /* convert from mv_dir to type */ | |
| 318 int mb_type= mb_type_table[s->mv_dir]; | |
| 319 | |
| 320 if(s->mb_x==0){ | |
| 321 s->last_mv[0][0][0]= | |
| 322 s->last_mv[0][0][1]= | |
| 323 s->last_mv[1][0][0]= | |
| 324 s->last_mv[1][0][1]= 0; | |
| 325 } | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
326 |
| 324 | 327 /* nothing to do if this MB was skiped in the next P Frame */ |
| 328 if(s->mbskip_table[s->mb_y * s->mb_width + s->mb_x]){ | |
| 329 s->skip_count++; | |
| 330 s->mv[0][0][0]= | |
| 331 s->mv[0][0][1]= | |
| 332 s->mv[1][0][0]= | |
| 333 s->mv[1][0][1]= 0; | |
| 327 | 334 s->mv_dir= MV_DIR_FORWARD; //doesnt matter |
| 324 | 335 return; |
| 336 } | |
| 337 | |
| 338 if ((cbp | motion_x | motion_y | mb_type) ==0) { | |
| 339 /* direct MB with MV={0,0} */ | |
| 340 put_bits(&s->pb, 1, 1); /* mb not coded modb1=1 */ | |
| 453 | 341 |
| 342 if(interleaved_stats){ | |
| 343 s->misc_bits++; | |
| 344 s->last_bits++; | |
| 345 } | |
| 324 | 346 s->skip_count++; |
| 347 return; | |
| 348 } | |
| 349 put_bits(&s->pb, 1, 0); /* mb coded modb1=0 */ | |
| 350 put_bits(&s->pb, 1, cbp ? 0 : 1); /* modb2 */ //FIXME merge | |
| 351 put_bits(&s->pb, mb_type+1, 1); // this table is so simple that we dont need it :) | |
| 352 if(cbp) put_bits(&s->pb, 6, cbp); | |
| 353 | |
| 354 if(cbp && mb_type) | |
| 355 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
|
356 |
| 453 | 357 if(interleaved_stats){ |
| 358 bits= get_bit_count(&s->pb); | |
| 359 s->misc_bits+= bits - s->last_bits; | |
| 360 s->last_bits=bits; | |
| 361 } | |
| 295 | 362 |
| 324 | 363 switch(mb_type) |
| 364 { | |
| 365 case 0: /* direct */ | |
| 366 h263_encode_motion(s, motion_x, 1); | |
| 367 h263_encode_motion(s, motion_y, 1); | |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
368 s->b_count++; |
|
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
369 s->f_count++; |
| 324 | 370 break; |
| 371 case 1: /* bidir */ | |
| 372 h263_encode_motion(s, s->mv[0][0][0] - s->last_mv[0][0][0], s->f_code); | |
| 373 h263_encode_motion(s, s->mv[0][0][1] - s->last_mv[0][0][1], s->f_code); | |
| 374 h263_encode_motion(s, s->mv[1][0][0] - s->last_mv[1][0][0], s->b_code); | |
| 375 h263_encode_motion(s, s->mv[1][0][1] - s->last_mv[1][0][1], s->b_code); | |
| 376 s->last_mv[0][0][0]= s->mv[0][0][0]; | |
| 377 s->last_mv[0][0][1]= s->mv[0][0][1]; | |
| 378 s->last_mv[1][0][0]= s->mv[1][0][0]; | |
| 379 s->last_mv[1][0][1]= s->mv[1][0][1]; | |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
380 s->b_count++; |
|
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
381 s->f_count++; |
| 324 | 382 break; |
| 383 case 2: /* backward */ | |
| 384 h263_encode_motion(s, motion_x - s->last_mv[1][0][0], s->b_code); | |
| 385 h263_encode_motion(s, motion_y - s->last_mv[1][0][1], s->b_code); | |
| 386 s->last_mv[1][0][0]= motion_x; | |
| 387 s->last_mv[1][0][1]= motion_y; | |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
388 s->b_count++; |
| 324 | 389 break; |
| 390 case 3: /* forward */ | |
| 391 h263_encode_motion(s, motion_x - s->last_mv[0][0][0], s->f_code); | |
| 392 h263_encode_motion(s, motion_y - s->last_mv[0][0][1], s->f_code); | |
| 393 s->last_mv[0][0][0]= motion_x; | |
| 394 s->last_mv[0][0][1]= motion_y; | |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
395 s->f_count++; |
| 324 | 396 break; |
| 327 | 397 default: |
| 398 printf("unknown mb type\n"); | |
| 324 | 399 return; |
| 400 } | |
| 453 | 401 |
| 402 if(interleaved_stats){ | |
| 403 bits= get_bit_count(&s->pb); | |
| 404 s->mv_bits+= bits - s->last_bits; | |
| 405 s->last_bits=bits; | |
| 406 } | |
| 295 | 407 |
| 324 | 408 /* encode each block */ |
| 409 for (i = 0; i < 6; i++) { | |
| 453 | 410 mpeg4_encode_block(s, block[i], i, 0, zigzag_direct, NULL, &s->pb); |
| 324 | 411 } |
| 453 | 412 |
| 413 if(interleaved_stats){ | |
| 414 bits= get_bit_count(&s->pb); | |
| 415 s->p_tex_bits+= bits - s->last_bits; | |
| 416 s->last_bits=bits; | |
| 417 } | |
| 324 | 418 }else{ /* s->pict_type==B_TYPE */ |
| 419 if ((cbp | motion_x | motion_y) == 0 && s->mv_type==MV_TYPE_16X16) { | |
| 331 | 420 /* check if the B frames can skip it too, as we must skip it if we skip here |
| 421 why didnt they just compress the skip-mb bits instead of reusing them ?! */ | |
| 422 if(s->max_b_frames>0){ | |
| 423 int i; | |
|
364
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
424 int x,y, offset; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
425 uint8_t *p_pic; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
426 |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
427 x= s->mb_x*16; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
428 y= s->mb_y*16; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
429 if(x+16 > s->width) x= s->width-16; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
430 if(y+16 > s->height) y= s->height-16; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
431 |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
432 offset= x + y*s->linesize; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
433 p_pic= s->new_picture[0] + offset; |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
434 |
| 331 | 435 s->mb_skiped=1; |
| 436 for(i=0; i<s->max_b_frames; i++){ | |
| 339 | 437 uint8_t *b_pic; |
| 438 int diff; | |
| 439 | |
| 440 if(s->coded_order[i+1].pict_type!=B_TYPE) break; | |
| 441 | |
| 442 b_pic= s->coded_order[i+1].picture[0] + offset; | |
| 443 diff= pix_abs16x16(p_pic, b_pic, s->linesize); | |
|
364
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
444 if(diff>s->qscale*70){ //FIXME check that 70 is optimal |
| 331 | 445 s->mb_skiped=0; |
| 446 break; | |
| 447 } | |
| 448 } | |
| 449 }else | |
| 450 s->mb_skiped=1; | |
| 451 | |
| 452 if(s->mb_skiped==1){ | |
| 453 /* skip macroblock */ | |
| 454 put_bits(&s->pb, 1, 1); | |
| 453 | 455 |
| 456 if(interleaved_stats){ | |
| 457 s->misc_bits++; | |
| 458 s->last_bits++; | |
| 459 } | |
| 331 | 460 s->skip_count++; |
| 461 return; | |
| 462 } | |
| 295 | 463 } |
|
364
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
464 |
| 324 | 465 put_bits(&s->pb, 1, 0); /* mb coded */ |
| 466 if(s->mv_type==MV_TYPE_16X16){ | |
| 467 cbpc = cbp & 3; | |
| 468 put_bits(&s->pb, | |
| 469 inter_MCBPC_bits[cbpc], | |
| 470 inter_MCBPC_code[cbpc]); | |
| 471 cbpy = cbp >> 2; | |
| 472 cbpy ^= 0xf; | |
| 453 | 473 put_bits(pb2, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); |
| 324 | 474 |
| 453 | 475 if(interleaved_stats){ |
| 476 bits= get_bit_count(&s->pb); | |
| 477 s->misc_bits+= bits - s->last_bits; | |
| 478 s->last_bits=bits; | |
| 479 } | |
| 324 | 480 |
| 481 /* motion vectors: 16x16 mode */ | |
| 482 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
| 483 | |
| 484 h263_encode_motion(s, motion_x - pred_x, s->f_code); | |
| 485 h263_encode_motion(s, motion_y - pred_y, s->f_code); | |
| 486 }else{ | |
| 487 cbpc = (cbp & 3)+16; | |
| 488 put_bits(&s->pb, | |
| 489 inter_MCBPC_bits[cbpc], | |
| 490 inter_MCBPC_code[cbpc]); | |
| 491 cbpy = cbp >> 2; | |
| 492 cbpy ^= 0xf; | |
| 453 | 493 put_bits(pb2, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); |
| 494 | |
| 495 if(interleaved_stats){ | |
| 496 bits= get_bit_count(&s->pb); | |
| 497 s->misc_bits+= bits - s->last_bits; | |
| 498 s->last_bits=bits; | |
| 499 } | |
| 324 | 500 |
| 501 for(i=0; i<4; i++){ | |
| 502 /* motion vectors: 8x8 mode*/ | |
| 503 h263_pred_motion(s, i, &pred_x, &pred_y); | |
| 504 | |
| 505 h263_encode_motion(s, s->motion_val[ s->block_index[i] ][0] - pred_x, s->f_code); | |
| 506 h263_encode_motion(s, s->motion_val[ s->block_index[i] ][1] - pred_y, s->f_code); | |
| 507 } | |
| 508 } | |
| 453 | 509 |
| 510 if(interleaved_stats){ | |
| 511 bits= get_bit_count(&s->pb); | |
| 512 s->mv_bits+= bits - s->last_bits; | |
| 513 s->last_bits=bits; | |
| 514 } | |
| 324 | 515 |
| 516 /* encode each block */ | |
| 517 for (i = 0; i < 6; i++) { | |
| 453 | 518 mpeg4_encode_block(s, block[i], i, 0, zigzag_direct, NULL, tex_pb); |
| 324 | 519 } |
| 453 | 520 |
| 521 if(interleaved_stats){ | |
| 522 bits= get_bit_count(&s->pb); | |
| 523 s->p_tex_bits+= bits - s->last_bits; | |
| 524 s->last_bits=bits; | |
| 525 } | |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
526 s->f_count++; |
| 295 | 527 } |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
528 } else { |
| 324 | 529 int cbp; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
530 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
|
531 int dir[6]; //prediction direction |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
532 int zigzag_last_index[6]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
533 UINT8 *scan_table[6]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
534 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
535 for(i=0; i<6; i++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
536 const int level= block[i][0]; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
537 UINT16 *dc_ptr; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
538 |
| 498 | 539 dc_diff[i]= level - ff_mpeg4_pred_dc(s, i, &dc_ptr, &dir[i]); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
540 if (i < 4) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
541 *dc_ptr = level * s->y_dc_scale; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
542 } else { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
543 *dc_ptr = level * s->c_dc_scale; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
544 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
545 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
546 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
547 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
|
548 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
549 if(s->ac_pred){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
550 for(i=0; i<6; i++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
551 UINT8 *st; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
552 int last_index; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
553 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
554 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
|
555 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
|
556 else st = ff_alternate_horizontal_scan; /* top */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
557 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
558 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
|
559 if(block[i][st[last_index]]) break; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
560 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
|
561 s->block_last_index[i]= last_index; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
562 scan_table[i]= st; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
563 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
564 }else{ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
565 for(i=0; i<6; i++) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
566 scan_table[i]= zigzag_direct; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
567 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
568 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
569 /* compute cbp */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
570 cbp = 0; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
571 for (i = 0; i < 6; i++) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
572 if (s->block_last_index[i] >= 1) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
573 cbp |= 1 << (5 - i); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
574 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
575 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
576 cbpc = cbp & 3; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
577 if (s->pict_type == I_TYPE) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
578 put_bits(&s->pb, |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
579 intra_MCBPC_bits[cbpc], |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
580 intra_MCBPC_code[cbpc]); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
581 } else { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
582 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
|
583 put_bits(&s->pb, |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
584 inter_MCBPC_bits[cbpc + 4], |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
585 inter_MCBPC_code[cbpc + 4]); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
586 } |
| 453 | 587 put_bits(pb2, 1, s->ac_pred); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
588 cbpy = cbp >> 2; |
| 453 | 589 put_bits(pb2, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); |
| 590 | |
| 591 if(interleaved_stats){ | |
| 592 bits= get_bit_count(&s->pb); | |
| 593 s->misc_bits+= bits - s->last_bits; | |
| 594 s->last_bits=bits; | |
| 595 } | |
| 286 | 596 |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
597 /* encode each block */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
598 for (i = 0; i < 6; i++) { |
| 453 | 599 mpeg4_encode_block(s, block[i], i, dc_diff[i], scan_table[i], dc_pb, tex_pb); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
600 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
601 |
| 453 | 602 if(interleaved_stats){ |
| 603 bits= get_bit_count(&s->pb); | |
| 604 s->i_tex_bits+= bits - s->last_bits; | |
| 605 s->last_bits=bits; | |
| 606 } | |
| 286 | 607 s->i_count++; |
| 608 | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
609 /* 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
|
610 if(s->ac_pred){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
611 for(i=0; i<6; i++){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
612 int j; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
613 INT16 *ac_val; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
614 |
| 266 | 615 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
|
616 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
617 if(dir[i]){ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
618 for(j=1; j<8; j++) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
619 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
|
620 }else{ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
621 for(j=1; j<8; j++) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
622 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
|
623 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
624 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
|
625 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
626 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
627 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
628 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
629 |
| 0 | 630 void h263_encode_mb(MpegEncContext * s, |
| 631 DCTELEM block[6][64], | |
| 632 int motion_x, int motion_y) | |
| 633 { | |
| 634 int cbpc, cbpy, i, cbp, pred_x, pred_y; | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
635 INT16 pred_dc; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
636 INT16 rec_intradc[6]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
637 UINT16 *dc_ptr[6]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
638 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
639 //printf("**mb x=%d y=%d\n", s->mb_x, s->mb_y); |
| 324 | 640 if (!s->mb_intra) { |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
641 /* compute cbp */ |
| 324 | 642 cbp = 0; |
| 643 for (i = 0; i < 6; i++) { | |
| 644 if (s->block_last_index[i] >= 0) | |
| 645 cbp |= 1 << (5 - i); | |
| 646 } | |
| 647 if ((cbp | motion_x | motion_y) == 0) { | |
| 648 /* skip macroblock */ | |
| 649 put_bits(&s->pb, 1, 1); | |
| 650 return; | |
| 651 } | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
652 put_bits(&s->pb, 1, 0); /* mb coded */ |
| 324 | 653 cbpc = cbp & 3; |
| 654 put_bits(&s->pb, | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
655 inter_MCBPC_bits[cbpc], |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
656 inter_MCBPC_code[cbpc]); |
| 324 | 657 cbpy = cbp >> 2; |
| 658 cbpy ^= 0xf; | |
| 659 put_bits(&s->pb, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); | |
| 0 | 660 |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
661 /* motion vectors: 16x16 mode only now */ |
| 324 | 662 h263_pred_motion(s, 0, &pred_x, &pred_y); |
| 78 | 663 |
| 324 | 664 if (!s->umvplus) { |
| 665 h263_encode_motion(s, motion_x - pred_x, s->f_code); | |
| 666 h263_encode_motion(s, motion_y - pred_y, s->f_code); | |
| 667 } | |
| 668 else { | |
| 669 h263p_encode_umotion(s, motion_x - pred_x); | |
| 670 h263p_encode_umotion(s, motion_y - pred_y); | |
| 671 if (((motion_x - pred_x) == 1) && ((motion_y - pred_y) == 1)) | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
672 /* To prevent Start Code emulation */ |
| 324 | 673 put_bits(&s->pb,1,1); |
| 674 } | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
675 } else { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
676 int li = s->h263_aic ? 0 : 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
677 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
678 cbp = 0; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
679 for(i=0; i<6; i++) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
680 /* Predict DC */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
681 if (s->h263_aic && s->mb_intra) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
682 INT16 level = block[i][0]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
683 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
684 pred_dc = h263_pred_dc(s, i, &dc_ptr[i]); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
685 level -= pred_dc; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
686 /* Quant */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
687 if (level < 0) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
688 level = (level + (s->qscale >> 1))/(s->y_dc_scale); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
689 else |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
690 level = (level - (s->qscale >> 1))/(s->y_dc_scale); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
691 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
692 /* AIC can change CBP */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
693 if (level == 0 && s->block_last_index[i] == 0) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
694 s->block_last_index[i] = -1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
695 else if (level < -127) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
696 level = -127; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
697 else if (level > 127) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
698 level = 127; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
699 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
700 block[i][0] = level; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
701 /* Reconstruction */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
702 rec_intradc[i] = (s->y_dc_scale*level) + pred_dc; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
703 /* Oddify */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
704 rec_intradc[i] |= 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
705 //if ((rec_intradc[i] % 2) == 0) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
706 // rec_intradc[i]++; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
707 /* Clipping */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
708 if (rec_intradc[i] < 0) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
709 rec_intradc[i] = 0; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
710 else if (rec_intradc[i] > 2047) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
711 rec_intradc[i] = 2047; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
712 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
713 /* Update AC/DC tables */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
714 *dc_ptr[i] = rec_intradc[i]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
715 } |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
716 /* compute cbp */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
717 if (s->block_last_index[i] >= li) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
718 cbp |= 1 << (5 - i); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
719 } |
| 0 | 720 |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
721 cbpc = cbp & 3; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
722 if (s->pict_type == I_TYPE) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
723 put_bits(&s->pb, |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
724 intra_MCBPC_bits[cbpc], |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
725 intra_MCBPC_code[cbpc]); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
726 } else { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
727 put_bits(&s->pb, 1, 0); /* mb coded */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
728 put_bits(&s->pb, |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
729 inter_MCBPC_bits[cbpc + 4], |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
730 inter_MCBPC_code[cbpc + 4]); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
731 } |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
732 if (s->h263_aic) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
733 /* XXX: currently, we do not try to use ac prediction */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
734 put_bits(&s->pb, 1, 0); /* no AC prediction */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
735 } |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
736 cbpy = cbp >> 2; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
737 put_bits(&s->pb, cbpy_tab[cbpy][1], cbpy_tab[cbpy][0]); |
| 0 | 738 } |
| 739 | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
740 for(i=0; i<6; i++) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
741 /* encode each block */ |
| 294 | 742 h263_encode_block(s, block[i], i); |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
743 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
744 /* Update INTRADC for decoding */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
745 if (s->h263_aic && s->mb_intra) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
746 block[i][0] = rec_intradc[i]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
747 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
748 } |
| 0 | 749 } |
| 750 } | |
| 751 | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
752 static int h263_pred_dc(MpegEncContext * s, int n, UINT16 **dc_val_ptr) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
753 { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
754 int x, y, wrap, a, c, pred_dc, scale; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
755 INT16 *dc_val, *ac_val; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
756 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
757 /* find prediction */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
758 if (n < 4) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
759 x = 2 * s->mb_x + 1 + (n & 1); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
760 y = 2 * s->mb_y + 1 + ((n & 2) >> 1); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
761 wrap = s->mb_width * 2 + 2; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
762 dc_val = s->dc_val[0]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
763 ac_val = s->ac_val[0][0]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
764 scale = s->y_dc_scale; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
765 } else { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
766 x = s->mb_x + 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
767 y = s->mb_y + 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
768 wrap = s->mb_width + 2; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
769 dc_val = s->dc_val[n - 4 + 1]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
770 ac_val = s->ac_val[n - 4 + 1][0]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
771 scale = s->c_dc_scale; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
772 } |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
773 /* B C |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
774 * A X |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
775 */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
776 a = dc_val[(x - 1) + (y) * wrap]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
777 c = dc_val[(x) + (y - 1) * wrap]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
778 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
779 /* No prediction outside GOB boundary */ |
| 453 | 780 if (s->first_slice_line && ((n < 2) || (n > 3))) |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
781 c = 1024; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
782 pred_dc = 1024; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
783 /* just DC prediction */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
784 if (a != 1024 && c != 1024) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
785 pred_dc = (a + c) >> 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
786 else if (a != 1024) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
787 pred_dc = a; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
788 else |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
789 pred_dc = c; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
790 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
791 /* we assume pred is positive */ |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
792 //pred_dc = (pred_dc + (scale >> 1)) / scale; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
793 *dc_val_ptr = &dc_val[x + y * wrap]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
794 return pred_dc; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
795 } |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
796 |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
797 |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
798 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
|
799 { |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
800 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
|
801 INT16 *dc_val, *ac_val, *ac_val1; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
802 |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
803 /* find prediction */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
804 if (n < 4) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
805 x = 2 * s->mb_x + 1 + (n & 1); |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
806 y = 2 * s->mb_y + 1 + ((n & 2) >> 1); |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
807 wrap = s->mb_width * 2 + 2; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
808 dc_val = s->dc_val[0]; |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
809 ac_val = s->ac_val[0][0]; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
810 scale = s->y_dc_scale; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
811 } else { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
812 x = s->mb_x + 1; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
813 y = s->mb_y + 1; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
814 wrap = s->mb_width + 2; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
815 dc_val = s->dc_val[n - 4 + 1]; |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
816 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
|
817 scale = s->c_dc_scale; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
818 } |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
819 |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
820 ac_val += ((y) * wrap + (x)) * 16; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
821 ac_val1 = ac_val; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
822 |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
823 /* B C |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
824 * A X |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
825 */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
826 a = dc_val[(x - 1) + (y) * wrap]; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
827 c = dc_val[(x) + (y - 1) * wrap]; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
828 |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
829 /* No prediction outside GOB boundary */ |
| 453 | 830 if (s->first_slice_line && ((n < 2) || (n > 3))) |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
831 c = 1024; |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
832 pred_dc = 1024; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
833 if (s->ac_pred) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
834 if (s->h263_aic_dir) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
835 /* left prediction */ |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
836 if (a != 1024) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
837 ac_val -= 16; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
838 for(i=1;i<8;i++) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
839 block[block_permute_op(i*8)] += ac_val[i]; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
840 } |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
841 pred_dc = a; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
842 } |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
843 } else { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
844 /* top prediction */ |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
845 if (c != 1024) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
846 ac_val -= 16 * wrap; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
847 for(i=1;i<8;i++) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
848 block[block_permute_op(i)] += ac_val[i + 8]; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
849 } |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
850 pred_dc = c; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
851 } |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
852 } |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
853 } else { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
854 /* just DC prediction */ |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
855 if (a != 1024 && c != 1024) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
856 pred_dc = (a + c) >> 1; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
857 else if (a != 1024) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
858 pred_dc = a; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
859 else |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
860 pred_dc = c; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
861 } |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
862 |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
863 /* we assume pred is positive */ |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
864 block[0]=block[0]*scale + pred_dc; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
865 |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
866 if (block[0] < 0) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
867 block[0] = 0; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
868 else if (!(block[0] & 1)) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
869 block[0]++; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
870 |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
871 /* Update AC/DC tables */ |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
872 dc_val[(x) + (y) * wrap] = block[0]; |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
873 |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
874 /* left copy */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
875 for(i=1;i<8;i++) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
876 ac_val1[i] = block[block_permute_op(i * 8)]; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
877 /* top copy */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
878 for(i=1;i<8;i++) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
879 ac_val1[8 + i] = block[block_permute_op(i)]; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
880 } |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
881 |
| 0 | 882 INT16 *h263_pred_motion(MpegEncContext * s, int block, |
| 883 int *px, int *py) | |
| 884 { | |
| 266 | 885 int xy, wrap; |
| 0 | 886 INT16 *A, *B, *C, *mot_val; |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
887 static const int off[4]= {2, 1, 1, -1}; |
| 0 | 888 |
| 266 | 889 wrap = s->block_wrap[0]; |
| 890 xy = s->block_index[block]; | |
| 0 | 891 |
| 245 | 892 mot_val = s->motion_val[xy]; |
| 0 | 893 |
| 453 | 894 A = s->motion_val[xy - 1]; |
| 895 /* special case for first (slice) line */ | |
| 896 if ((s->mb_y == 0 || s->first_slice_line) && block<3) { | |
| 897 // we cant just change some MVs to simulate that as we need them for the B frames (and ME) | |
| 898 // and if we ever support non rectangular objects than we need to do a few ifs here anyway :( | |
| 899 if(block==0){ //most common case | |
| 900 if(s->mb_x == s->resync_mb_x){ //rare | |
| 901 *px= *py = 0; | |
| 902 }else if(s->mb_x + 1 == s->resync_mb_x){ //rare | |
| 903 C = s->motion_val[xy + off[block] - wrap]; | |
| 904 if(s->mb_x==0){ | |
| 905 *px = C[0]; | |
| 906 *py = C[1]; | |
| 907 }else{ | |
| 908 *px = mid_pred(A[0], 0, C[0]); | |
| 909 *py = mid_pred(A[1], 0, C[1]); | |
| 910 } | |
| 911 }else{ | |
| 912 *px = A[0]; | |
| 913 *py = A[1]; | |
| 914 } | |
| 915 }else if(block==1){ | |
| 916 if(s->mb_x + 1 == s->resync_mb_x){ //rare | |
| 917 C = s->motion_val[xy + off[block] - wrap]; | |
| 918 *px = mid_pred(A[0], 0, C[0]); | |
| 919 *py = mid_pred(A[1], 0, C[1]); | |
| 920 }else{ | |
| 921 *px = A[0]; | |
| 922 *py = A[1]; | |
| 923 } | |
| 924 }else{ /* block==2*/ | |
| 925 B = s->motion_val[xy - wrap]; | |
| 926 C = s->motion_val[xy + off[block] - wrap]; | |
| 927 if(s->mb_x == s->resync_mb_x) //rare | |
| 928 A[0]=A[1]=0; | |
| 929 | |
| 930 *px = mid_pred(A[0], B[0], C[0]); | |
| 931 *py = mid_pred(A[1], B[1], C[1]); | |
| 932 } | |
| 0 | 933 } else { |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
934 B = s->motion_val[xy - wrap]; |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
935 C = s->motion_val[xy + off[block] - wrap]; |
| 0 | 936 *px = mid_pred(A[0], B[0], C[0]); |
| 937 *py = mid_pred(A[1], B[1], C[1]); | |
| 938 } | |
| 939 return mot_val; | |
| 940 } | |
| 941 | |
| 324 | 942 static void h263_encode_motion(MpegEncContext * s, int val, int f_code) |
| 0 | 943 { |
| 944 int range, l, m, bit_size, sign, code, bits; | |
| 945 | |
| 946 if (val == 0) { | |
| 947 /* zero vector */ | |
| 948 code = 0; | |
| 949 put_bits(&s->pb, mvtab[code][1], mvtab[code][0]); | |
| 950 } else { | |
| 324 | 951 bit_size = f_code - 1; |
| 0 | 952 range = 1 << bit_size; |
| 953 /* modulo encoding */ | |
| 954 l = range * 32; | |
| 955 m = 2 * l; | |
| 956 if (val < -l) { | |
| 957 val += m; | |
| 958 } else if (val >= l) { | |
| 959 val -= m; | |
| 960 } | |
| 961 | |
| 962 if (val >= 0) { | |
| 963 sign = 0; | |
| 964 } else { | |
| 965 val = -val; | |
| 966 sign = 1; | |
| 967 } | |
| 312 | 968 val--; |
| 969 code = (val >> bit_size) + 1; | |
| 970 bits = val & (range - 1); | |
| 0 | 971 |
| 972 put_bits(&s->pb, mvtab[code][1] + 1, (mvtab[code][0] << 1) | sign); | |
| 973 if (bit_size > 0) { | |
| 974 put_bits(&s->pb, bit_size, bits); | |
| 975 } | |
| 976 } | |
| 977 } | |
| 978 | |
| 78 | 979 /* Encode MV differences on H.263+ with Unrestricted MV mode */ |
| 980 static void h263p_encode_umotion(MpegEncContext * s, int val) | |
| 981 { | |
| 982 short sval = 0; | |
| 983 short i = 0; | |
| 984 short n_bits = 0; | |
| 985 short temp_val; | |
| 986 int code = 0; | |
| 987 int tcode; | |
| 988 | |
| 989 if ( val == 0) | |
| 990 put_bits(&s->pb, 1, 1); | |
| 991 else if (val == 1) | |
| 992 put_bits(&s->pb, 3, 0); | |
| 993 else if (val == -1) | |
| 994 put_bits(&s->pb, 3, 2); | |
| 995 else { | |
| 996 | |
| 997 sval = ((val < 0) ? (short)(-val):(short)val); | |
| 998 temp_val = sval; | |
| 999 | |
| 1000 while (temp_val != 0) { | |
| 1001 temp_val = temp_val >> 1; | |
| 1002 n_bits++; | |
| 1003 } | |
| 1004 | |
| 1005 i = n_bits - 1; | |
| 1006 while (i > 0) { | |
| 1007 tcode = (sval & (1 << (i-1))) >> (i-1); | |
| 1008 tcode = (tcode << 1) | 1; | |
| 1009 code = (code << 2) | tcode; | |
| 1010 i--; | |
| 1011 } | |
| 1012 code = ((code << 1) | (val < 0)) << 1; | |
| 1013 put_bits(&s->pb, (2*n_bits)+1, code); | |
| 1014 //printf("\nVal = %d\tCode = %d", sval, code); | |
| 1015 } | |
| 1016 } | |
| 1017 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1018 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
|
1019 { |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1020 int f_code; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1021 int mv; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1022 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
|
1023 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
|
1024 int len; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1025 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1026 if(mv==0) len= mvtab[0][1]; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1027 else{ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1028 int val, bit_size, range, code; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1029 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1030 bit_size = s->f_code - 1; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1031 range = 1 << bit_size; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1032 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1033 val=mv; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1034 if (val < 0) |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1035 val = -val; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1036 val--; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1037 code = (val >> bit_size) + 1; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1038 if(code<33){ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1039 len= mvtab[code][1] + 1 + bit_size; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1040 }else{ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1041 len= mvtab[32][1] + 2 + bit_size; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1042 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1043 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1044 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1045 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
|
1046 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1047 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1048 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1049 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
|
1050 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
|
1051 fcode_tab[mv+MAX_MV]= f_code; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1052 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1053 } |
| 287 | 1054 |
| 1055 for(mv=0; mv<MAX_MV*2+1; mv++){ | |
| 1056 umv_fcode_tab[mv]= 1; | |
| 1057 } | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1058 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1059 |
| 468 | 1060 static void init_uni_dc_tab(void) |
| 293 | 1061 { |
| 1062 int level, uni_code, uni_len; | |
| 1063 | |
| 312 | 1064 for(level=-256; level<256; level++){ |
| 293 | 1065 int size, v, l; |
| 1066 /* find number of bits */ | |
| 1067 size = 0; | |
| 1068 v = abs(level); | |
| 1069 while (v) { | |
| 1070 v >>= 1; | |
| 1071 size++; | |
| 1072 } | |
| 1073 | |
| 1074 if (level < 0) | |
| 1075 l= (-level) ^ ((1 << size) - 1); | |
| 1076 else | |
| 1077 l= level; | |
| 1078 | |
| 1079 /* luminance */ | |
| 1080 uni_code= DCtab_lum[size][0]; | |
| 1081 uni_len = DCtab_lum[size][1]; | |
| 1082 | |
| 1083 if (size > 0) { | |
| 1084 uni_code<<=size; uni_code|=l; | |
| 1085 uni_len+=size; | |
| 1086 if (size > 8){ | |
| 1087 uni_code<<=1; uni_code|=1; | |
| 1088 uni_len++; | |
| 1089 } | |
| 1090 } | |
| 1091 uni_DCtab_lum[level+256][0]= uni_code; | |
| 1092 uni_DCtab_lum[level+256][1]= uni_len; | |
| 1093 | |
| 1094 /* chrominance */ | |
| 1095 uni_code= DCtab_chrom[size][0]; | |
| 1096 uni_len = DCtab_chrom[size][1]; | |
| 1097 | |
| 1098 if (size > 0) { | |
| 1099 uni_code<<=size; uni_code|=l; | |
| 1100 uni_len+=size; | |
| 1101 if (size > 8){ | |
| 1102 uni_code<<=1; uni_code|=1; | |
| 1103 uni_len++; | |
| 1104 } | |
| 1105 } | |
| 1106 uni_DCtab_chrom[level+256][0]= uni_code; | |
| 1107 uni_DCtab_chrom[level+256][1]= uni_len; | |
| 1108 | |
| 1109 } | |
| 1110 } | |
| 1111 | |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1112 static void init_uni_mpeg4_rl_tab(RLTable *rl, UINT32 *bits_tab, UINT8 *len_tab){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1113 int slevel, run, last; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1114 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1115 assert(MAX_LEVEL >= 64); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1116 assert(MAX_RUN >= 63); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1117 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1118 for(slevel=-64; slevel<64; slevel++){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1119 if(slevel==0) continue; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1120 for(run=0; run<64; run++){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1121 for(last=0; last<=1; last++){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1122 const int index= UNI_MPEG4_ENC_INDEX(last, run, slevel+64); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1123 int level= slevel < 0 ? -slevel : slevel; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1124 int sign= slevel < 0 ? 1 : 0; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1125 int bits, len, code; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1126 int level1, run1; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1127 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1128 len_tab[index]= 100; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1129 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1130 /* ESC0 */ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1131 code= get_rl_index(rl, last, run, level); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1132 bits= rl->table_vlc[code][0]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1133 len= rl->table_vlc[code][1]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1134 bits=bits*2+sign; len++; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1135 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1136 if(code!=rl->n && len < len_tab[index]){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1137 bits_tab[index]= bits; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1138 len_tab [index]= len; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1139 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1140 #if 1 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1141 /* ESC1 */ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1142 bits= rl->table_vlc[rl->n][0]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1143 len= rl->table_vlc[rl->n][1]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1144 bits=bits*2; len++; //esc1 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1145 level1= level - rl->max_level[last][run]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1146 if(level1>0){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1147 code= get_rl_index(rl, last, run, level1); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1148 bits<<= rl->table_vlc[code][1]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1149 len += rl->table_vlc[code][1]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1150 bits += rl->table_vlc[code][0]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1151 bits=bits*2+sign; len++; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1152 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1153 if(code!=rl->n && len < len_tab[index]){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1154 bits_tab[index]= bits; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1155 len_tab [index]= len; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1156 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1157 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1158 #endif |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1159 #if 1 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1160 /* ESC2 */ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1161 bits= rl->table_vlc[rl->n][0]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1162 len= rl->table_vlc[rl->n][1]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1163 bits=bits*4+2; len+=2; //esc2 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1164 run1 = run - rl->max_run[last][level] - 1; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1165 if(run1>=0){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1166 code= get_rl_index(rl, last, run1, level); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1167 bits<<= rl->table_vlc[code][1]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1168 len += rl->table_vlc[code][1]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1169 bits += rl->table_vlc[code][0]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1170 bits=bits*2+sign; len++; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1171 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1172 if(code!=rl->n && len < len_tab[index]){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1173 bits_tab[index]= bits; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1174 len_tab [index]= len; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1175 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1176 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1177 #endif |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1178 /* ESC3 */ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1179 bits= rl->table_vlc[rl->n][0]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1180 len = rl->table_vlc[rl->n][1]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1181 bits=bits*4+3; len+=2; //esc3 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1182 bits=bits*2+last; len++; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1183 bits=bits*64+run; len+=6; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1184 bits=bits*2+1; len++; //marker |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1185 bits=bits*4096+(slevel&0xfff); len+=12; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1186 bits=bits*2+1; len++; //marker |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1187 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1188 if(len < len_tab[index]){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1189 bits_tab[index]= bits; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1190 len_tab [index]= len; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1191 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1192 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1193 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1194 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1195 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1196 |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1197 void h263_encode_init(MpegEncContext *s) |
| 0 | 1198 { |
| 1199 static int done = 0; | |
| 1200 | |
| 1201 if (!done) { | |
| 1202 done = 1; | |
| 293 | 1203 |
| 1204 init_uni_dc_tab(); | |
| 1205 | |
| 0 | 1206 init_rl(&rl_inter); |
| 1207 init_rl(&rl_intra); | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1208 init_rl(&rl_intra_aic); |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1209 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1210 init_uni_mpeg4_rl_tab(&rl_intra, uni_mpeg4_intra_rl_bits, uni_mpeg4_intra_rl_len); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1211 init_uni_mpeg4_rl_tab(&rl_inter, uni_mpeg4_inter_rl_bits, uni_mpeg4_inter_rl_len); |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1212 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
274
diff
changeset
|
1213 init_mv_penalty_and_fcode(s); |
| 0 | 1214 } |
| 287 | 1215 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
|
1216 |
| 287 | 1217 // use fcodes >1 only for mpeg4 & h263 & h263p FIXME |
| 344 | 1218 switch(s->codec_id){ |
| 1219 case CODEC_ID_MPEG4: | |
| 1220 s->fcode_tab= fcode_tab; | |
| 1221 s->min_qcoeff= -2048; | |
| 1222 s->max_qcoeff= 2047; | |
| 1223 break; | |
| 1224 case CODEC_ID_H263P: | |
| 1225 s->fcode_tab= umv_fcode_tab; | |
| 1226 s->min_qcoeff= -128; | |
| 1227 s->max_qcoeff= 127; | |
| 1228 break; | |
| 498 | 1229 //Note for mpeg4 & h263 the dc-scale table will be set per frame as needed later |
| 344 | 1230 default: //nothing needed default table allready set in mpegvideo.c |
| 1231 s->min_qcoeff= -128; | |
| 1232 s->max_qcoeff= 127; | |
| 498 | 1233 s->y_dc_scale_table= |
| 1234 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; | |
| 344 | 1235 } |
| 1236 | |
| 599 | 1237 if(s->mpeg_quant){ |
| 1238 s->intra_quant_bias= 3<<(QUANT_BIAS_SHIFT-3); //(a + x*3/8)/x | |
| 1239 s->inter_quant_bias= 0; | |
| 1240 }else{ | |
| 1241 s->intra_quant_bias=0; | |
| 1242 s->inter_quant_bias=-(1<<(QUANT_BIAS_SHIFT-2)); //(a - x/4)/x | |
| 1243 } | |
| 0 | 1244 } |
| 1245 | |
| 1246 static void h263_encode_block(MpegEncContext * s, DCTELEM * block, int n) | |
| 1247 { | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1248 int level, run, last, i, j, last_index, last_non_zero, sign, slevel, code; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1249 RLTable *rl; |
| 0 | 1250 |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1251 rl = &rl_inter; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1252 if (s->mb_intra && !s->h263_aic) { |
| 231 | 1253 /* DC coef */ |
| 1254 level = block[0]; | |
| 0 | 1255 /* 255 cannot be represented, so we clamp */ |
| 1256 if (level > 254) { | |
| 1257 level = 254; | |
| 1258 block[0] = 254; | |
| 1259 } | |
| 231 | 1260 /* 0 cannot be represented also */ |
| 1261 else if (!level) { | |
| 1262 level = 1; | |
| 1263 block[0] = 1; | |
| 1264 } | |
| 1265 if (level == 128) | |
| 1266 put_bits(&s->pb, 8, 0xff); | |
| 1267 else | |
| 1268 put_bits(&s->pb, 8, level & 0xff); | |
| 1269 i = 1; | |
| 0 | 1270 } else { |
| 231 | 1271 i = 0; |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1272 if (s->h263_aic && s->mb_intra) |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1273 rl = &rl_intra_aic; |
| 0 | 1274 } |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1275 |
| 0 | 1276 /* AC coefs */ |
| 1277 last_index = s->block_last_index[n]; | |
| 1278 last_non_zero = i - 1; | |
| 1279 for (; i <= last_index; i++) { | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1280 j = zigzag_direct[i]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1281 level = block[j]; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1282 if (level) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1283 run = i - last_non_zero - 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1284 last = (i == last_index); |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1285 sign = 0; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1286 slevel = level; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1287 if (level < 0) { |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1288 sign = 1; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1289 level = -level; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1290 } |
| 0 | 1291 code = get_rl_index(rl, last, run, level); |
| 1292 put_bits(&s->pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1293 if (code == rl->n) { | |
| 1294 put_bits(&s->pb, 1, last); | |
| 1295 put_bits(&s->pb, 6, run); | |
| 1296 put_bits(&s->pb, 8, slevel & 0xff); | |
| 1297 } else { | |
| 1298 put_bits(&s->pb, 1, sign); | |
| 1299 } | |
|
350
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1300 last_non_zero = i; |
|
6ebbecc10063
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
pulento
parents:
346
diff
changeset
|
1301 } |
| 0 | 1302 } |
| 1303 } | |
| 1304 | |
| 1305 /***************************************************/ | |
| 1306 | |
| 453 | 1307 void ff_mpeg4_stuffing(PutBitContext * pbc) |
| 262 | 1308 { |
| 1309 int length; | |
| 1310 put_bits(pbc, 1, 0); | |
| 1311 length= (-get_bit_count(pbc))&7; | |
| 453 | 1312 if(length) put_bits(pbc, length, (1<<length)-1); |
| 262 | 1313 } |
| 1314 | |
| 327 | 1315 /* must be called before writing the header */ |
| 1316 void ff_set_mpeg4_time(MpegEncContext * s, int picture_number){ | |
| 1317 int time_div, time_mod; | |
| 1318 | |
| 1319 if(s->pict_type==I_TYPE){ //we will encode a vol header | |
| 1320 s->time_increment_resolution= s->frame_rate/ff_gcd(s->frame_rate, FRAME_RATE_BASE); | |
| 1321 if(s->time_increment_resolution>=256*256) s->time_increment_resolution= 256*128; | |
| 1322 | |
| 1323 s->time_increment_bits = av_log2(s->time_increment_resolution - 1) + 1; | |
| 1324 } | |
| 654 | 1325 |
| 1326 if(s->avctx->pts) | |
| 1327 s->time= (s->avctx->pts*s->time_increment_resolution + 500*1000)/(1000*1000); | |
| 1328 else | |
| 1329 s->time= picture_number*(INT64)FRAME_RATE_BASE*s->time_increment_resolution/s->frame_rate; | |
| 327 | 1330 time_div= s->time/s->time_increment_resolution; |
| 1331 time_mod= s->time%s->time_increment_resolution; | |
| 1332 | |
| 1333 if(s->pict_type==B_TYPE){ | |
| 1334 s->bp_time= s->last_non_b_time - s->time; | |
| 1335 }else{ | |
| 1336 s->last_time_base= s->time_base; | |
| 1337 s->time_base= time_div; | |
| 1338 s->pp_time= s->time - s->last_non_b_time; | |
| 1339 s->last_non_b_time= s->time; | |
| 1340 } | |
| 1341 } | |
| 1342 | |
| 263 | 1343 static void mpeg4_encode_vol_header(MpegEncContext * s) |
| 0 | 1344 { |
| 263 | 1345 int vo_ver_id=1; //must be 2 if we want GMC or q-pel |
| 322 | 1346 char buf[255]; |
| 336 | 1347 |
| 1348 s->vo_type= s->has_b_frames ? CORE_VO_TYPE : SIMPLE_VO_TYPE; | |
| 1349 | |
| 263 | 1350 put_bits(&s->pb, 16, 0); |
| 1351 put_bits(&s->pb, 16, 0x100); /* video obj */ | |
| 1352 put_bits(&s->pb, 16, 0); | |
| 1353 put_bits(&s->pb, 16, 0x120); /* video obj layer */ | |
| 1354 | |
| 1355 put_bits(&s->pb, 1, 0); /* random access vol */ | |
| 336 | 1356 put_bits(&s->pb, 8, s->vo_type); /* video obj type indication */ |
| 263 | 1357 put_bits(&s->pb, 1, 1); /* is obj layer id= yes */ |
| 1358 put_bits(&s->pb, 4, vo_ver_id); /* is obj layer ver id */ | |
| 1359 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
|
1360 if(s->aspect_ratio_info) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1361 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
|
1362 else |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
1363 put_bits(&s->pb, 4, 1); /* aspect ratio info= sqare pixel */ |
| 336 | 1364 |
| 1365 if(s->low_delay){ | |
| 1366 put_bits(&s->pb, 1, 1); /* vol control parameters= yes */ | |
| 341 | 1367 put_bits(&s->pb, 2, 1); /* chroma format YUV 420/YV12 */ |
| 336 | 1368 put_bits(&s->pb, 1, s->low_delay); |
| 1369 put_bits(&s->pb, 1, 0); /* vbv parameters= no */ | |
| 1370 }else{ | |
| 1371 put_bits(&s->pb, 1, 0); /* vol control parameters= no */ | |
| 1372 } | |
| 1373 | |
| 263 | 1374 put_bits(&s->pb, 2, RECT_SHAPE); /* vol shape= rectangle */ |
| 1375 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 324 | 1376 |
| 1377 put_bits(&s->pb, 16, s->time_increment_resolution); | |
| 263 | 1378 if (s->time_increment_bits < 1) |
| 1379 s->time_increment_bits = 1; | |
| 1380 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1381 put_bits(&s->pb, 1, 0); /* fixed vop rate=no */ | |
| 1382 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1383 put_bits(&s->pb, 13, s->width); /* vol width */ | |
| 1384 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1385 put_bits(&s->pb, 13, s->height); /* vol height */ | |
| 1386 put_bits(&s->pb, 1, 1); /* marker bit */ | |
| 1387 put_bits(&s->pb, 1, 0); /* interlace */ | |
| 1388 put_bits(&s->pb, 1, 1); /* obmc disable */ | |
| 1389 if (vo_ver_id == 1) { | |
| 1390 put_bits(&s->pb, 1, s->vol_sprite_usage=0); /* sprite enable */ | |
| 1391 }else{ /* vo_ver_id == 2 */ | |
| 1392 put_bits(&s->pb, 2, s->vol_sprite_usage=0); /* sprite enable */ | |
| 1393 } | |
| 1394 put_bits(&s->pb, 1, 0); /* not 8 bit */ | |
| 599 | 1395 put_bits(&s->pb, 1, s->mpeg_quant); /* quant type= (0=h263 style)*/ |
| 1396 if(s->mpeg_quant) put_bits(&s->pb, 2, 0); /* no custom matrixes */ | |
| 1397 | |
| 263 | 1398 if (vo_ver_id != 1) |
| 1399 put_bits(&s->pb, 1, s->quarter_sample=0); | |
| 1400 put_bits(&s->pb, 1, 1); /* complexity estimation disable */ | |
| 453 | 1401 s->resync_marker= s->rtp_mode; |
| 1402 put_bits(&s->pb, 1, s->resync_marker ? 0 : 1);/* resync marker disable */ | |
| 1403 put_bits(&s->pb, 1, s->data_partitioning ? 1 : 0); | |
| 1404 if(s->data_partitioning){ | |
| 1405 put_bits(&s->pb, 1, 0); /* no rvlc */ | |
| 1406 } | |
| 1407 | |
| 263 | 1408 if (vo_ver_id != 1){ |
| 1409 put_bits(&s->pb, 1, 0); /* newpred */ | |
| 1410 put_bits(&s->pb, 1, 0); /* reduced res vop */ | |
| 1411 } | |
| 1412 put_bits(&s->pb, 1, 0); /* scalability */ | |
| 1413 | |
| 453 | 1414 ff_mpeg4_stuffing(&s->pb); |
| 262 | 1415 put_bits(&s->pb, 16, 0); |
| 1416 put_bits(&s->pb, 16, 0x1B2); /* user_data */ | |
| 360 | 1417 sprintf(buf, "FFmpeg%sb%s", FFMPEG_VERSION, LIBAVCODEC_BUILD_STR); |
| 322 | 1418 put_string(&s->pb, buf); |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
1419 |
| 453 | 1420 ff_mpeg4_stuffing(&s->pb); |
| 263 | 1421 } |
| 1422 | |
| 1423 /* write mpeg4 VOP header */ | |
| 1424 void mpeg4_encode_picture_header(MpegEncContext * s, int picture_number) | |
| 1425 { | |
| 324 | 1426 int time_incr; |
| 1427 int time_div, time_mod; | |
| 1428 | |
| 453 | 1429 if(s->pict_type==I_TYPE){ |
| 1430 s->no_rounding=0; | |
| 1431 if(picture_number==0 || !s->strict_std_compliance) | |
| 1432 mpeg4_encode_vol_header(s); | |
| 1433 } | |
| 324 | 1434 |
| 1435 //printf("num:%d rate:%d base:%d\n", s->picture_number, s->frame_rate, FRAME_RATE_BASE); | |
| 1436 | |
|
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
|
1437 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
|
1438 put_bits(&s->pb, 16, 0x1B6); /* vop header */ |
| 0 | 1439 put_bits(&s->pb, 2, s->pict_type - 1); /* pict type: I = 0 , P = 1 */ |
| 324 | 1440 |
| 327 | 1441 time_div= s->time/s->time_increment_resolution; |
| 1442 time_mod= s->time%s->time_increment_resolution; | |
| 324 | 1443 time_incr= time_div - s->last_time_base; |
| 1444 while(time_incr--) | |
| 1445 put_bits(&s->pb, 1, 1); | |
| 1446 | |
| 0 | 1447 put_bits(&s->pb, 1, 0); |
| 1448 | |
| 1449 put_bits(&s->pb, 1, 1); /* marker */ | |
| 324 | 1450 put_bits(&s->pb, s->time_increment_bits, time_mod); /* time increment */ |
| 0 | 1451 put_bits(&s->pb, 1, 1); /* marker */ |
| 1452 put_bits(&s->pb, 1, 1); /* vop coded */ | |
| 263 | 1453 if ( s->pict_type == P_TYPE |
| 1454 || (s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE)) { | |
| 1455 s->no_rounding ^= 1; | |
| 0 | 1456 put_bits(&s->pb, 1, s->no_rounding); /* rounding type */ |
| 1457 } | |
| 1458 put_bits(&s->pb, 3, 0); /* intra dc VLC threshold */ | |
| 263 | 1459 //FIXME sprite stuff |
| 0 | 1460 |
| 1461 put_bits(&s->pb, 5, s->qscale); | |
| 1462 | |
| 1463 if (s->pict_type != I_TYPE) | |
| 1464 put_bits(&s->pb, 3, s->f_code); /* fcode_for */ | |
| 263 | 1465 if (s->pict_type == B_TYPE) |
| 1466 put_bits(&s->pb, 3, s->b_code); /* fcode_back */ | |
| 0 | 1467 // printf("****frame %d\n", picture_number); |
| 498 | 1468 |
| 1469 s->y_dc_scale_table= ff_mpeg4_y_dc_scale_table; //FIXME add short header support | |
| 1470 s->c_dc_scale_table= ff_mpeg4_c_dc_scale_table; | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1471 s->h_edge_pos= s->width; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
1472 s->v_edge_pos= s->height; |
| 0 | 1473 } |
| 1474 | |
| 498 | 1475 static void h263_dc_scale(MpegEncContext * s) |
| 0 | 1476 { |
| 498 | 1477 s->y_dc_scale= s->y_dc_scale_table[ s->qscale ]; |
| 1478 s->c_dc_scale= s->c_dc_scale_table[ s->qscale ]; | |
| 0 | 1479 } |
| 1480 | |
| 498 | 1481 inline int ff_mpeg4_pred_dc(MpegEncContext * s, int n, UINT16 **dc_val_ptr, int *dir_ptr) |
| 0 | 1482 { |
| 266 | 1483 int a, b, c, wrap, pred, scale; |
| 0 | 1484 UINT16 *dc_val; |
| 469 | 1485 int dummy; |
| 0 | 1486 |
| 1487 /* find prediction */ | |
| 1488 if (n < 4) { | |
| 1489 scale = s->y_dc_scale; | |
| 1490 } else { | |
| 1491 scale = s->c_dc_scale; | |
| 1492 } | |
| 266 | 1493 wrap= s->block_wrap[n]; |
| 1494 dc_val = s->dc_val[0] + s->block_index[n]; | |
| 0 | 1495 |
| 1496 /* B C | |
| 1497 * A X | |
| 1498 */ | |
| 266 | 1499 a = dc_val[ - 1]; |
| 1500 b = dc_val[ - 1 - wrap]; | |
| 1501 c = dc_val[ - wrap]; | |
| 0 | 1502 |
| 1503 if (abs(a - b) < abs(b - c)) { | |
| 1504 pred = c; | |
| 1505 *dir_ptr = 1; /* top */ | |
| 1506 } else { | |
| 1507 pred = a; | |
| 1508 *dir_ptr = 0; /* left */ | |
| 1509 } | |
| 1510 /* we assume pred is positive */ | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1511 #ifdef ARCH_X86 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1512 asm volatile ( |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1513 "xorl %%edx, %%edx \n\t" |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1514 "mul %%ecx \n\t" |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1515 : "=d" (pred), "=a"(dummy) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1516 : "a" (pred + (scale >> 1)), "c" (inverse[scale]) |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1517 ); |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1518 #else |
| 0 | 1519 pred = (pred + (scale >> 1)) / scale; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1520 #endif |
| 0 | 1521 |
| 1522 /* prepare address for prediction update */ | |
| 266 | 1523 *dc_val_ptr = &dc_val[0]; |
| 0 | 1524 |
| 1525 return pred; | |
| 1526 } | |
| 1527 | |
|
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
162
diff
changeset
|
1528 void mpeg4_pred_ac(MpegEncContext * s, INT16 *block, int n, |
| 0 | 1529 int dir) |
| 1530 { | |
| 266 | 1531 int i; |
| 0 | 1532 INT16 *ac_val, *ac_val1; |
| 1533 | |
| 1534 /* find prediction */ | |
| 266 | 1535 ac_val = s->ac_val[0][0] + s->block_index[n] * 16; |
| 0 | 1536 ac_val1 = ac_val; |
| 1537 if (s->ac_pred) { | |
| 1538 if (dir == 0) { | |
| 575 | 1539 const int xy= s->mb_x-1 + s->mb_y*s->mb_width; |
| 0 | 1540 /* left prediction */ |
| 1541 ac_val -= 16; | |
| 575 | 1542 |
| 1543 if(s->mb_x==0 || s->qscale == s->qscale_table[xy] || n==1 || n==3){ | |
| 1544 /* same qscale */ | |
| 1545 for(i=1;i<8;i++) { | |
| 1546 block[block_permute_op(i*8)] += ac_val[i]; | |
| 1547 } | |
| 1548 }else{ | |
| 1549 /* different qscale, we must rescale */ | |
| 1550 for(i=1;i<8;i++) { | |
| 1551 block[block_permute_op(i*8)] += ROUNDED_DIV(ac_val[i]*s->qscale_table[xy], s->qscale); | |
| 1552 } | |
| 0 | 1553 } |
| 1554 } else { | |
| 575 | 1555 const int xy= s->mb_x + s->mb_y*s->mb_width - s->mb_width; |
| 0 | 1556 /* top prediction */ |
| 266 | 1557 ac_val -= 16 * s->block_wrap[n]; |
| 575 | 1558 |
| 1559 if(s->mb_y==0 || s->qscale == s->qscale_table[xy] || n==2 || n==3){ | |
| 1560 /* same qscale */ | |
| 1561 for(i=1;i<8;i++) { | |
| 1562 block[block_permute_op(i)] += ac_val[i + 8]; | |
| 1563 } | |
| 1564 }else{ | |
| 1565 /* different qscale, we must rescale */ | |
| 1566 for(i=1;i<8;i++) { | |
| 1567 block[block_permute_op(i)] += ROUNDED_DIV(ac_val[i + 8]*s->qscale_table[xy], s->qscale); | |
| 1568 } | |
| 0 | 1569 } |
| 1570 } | |
| 1571 } | |
| 1572 /* left copy */ | |
| 1573 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
|
1574 ac_val1[i] = block[block_permute_op(i * 8)]; |
| 591 | 1575 |
| 0 | 1576 /* top copy */ |
| 1577 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
|
1578 ac_val1[8 + i] = block[block_permute_op(i)]; |
| 591 | 1579 |
| 0 | 1580 } |
| 1581 | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1582 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
|
1583 int dir) |
| 0 | 1584 { |
| 266 | 1585 int i; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1586 INT16 *ac_val; |
| 0 | 1587 |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1588 /* find prediction */ |
| 266 | 1589 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
|
1590 |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1591 if (dir == 0) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1592 /* left prediction */ |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1593 ac_val -= 16; |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1594 for(i=1;i<8;i++) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1595 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
|
1596 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1597 } else { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1598 /* top prediction */ |
| 266 | 1599 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
|
1600 for(i=1;i<8;i++) { |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1601 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
|
1602 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1603 } |
|
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1604 } |
| 0 | 1605 |
| 453 | 1606 static inline void mpeg4_encode_dc(PutBitContext * s, int level, int n) |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1607 { |
| 293 | 1608 #if 1 |
| 453 | 1609 // if(level<-255 || level>255) printf("dc overflow\n"); |
| 293 | 1610 level+=256; |
| 1611 if (n < 4) { | |
| 1612 /* luminance */ | |
| 453 | 1613 put_bits(s, uni_DCtab_lum[level][1], uni_DCtab_lum[level][0]); |
| 293 | 1614 } else { |
| 1615 /* chrominance */ | |
| 453 | 1616 put_bits(s, uni_DCtab_chrom[level][1], uni_DCtab_chrom[level][0]); |
| 293 | 1617 } |
| 1618 #else | |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1619 int size, v; |
| 0 | 1620 /* find number of bits */ |
| 1621 size = 0; | |
| 1622 v = abs(level); | |
| 1623 while (v) { | |
| 1624 v >>= 1; | |
| 1625 size++; | |
| 1626 } | |
| 1627 | |
| 1628 if (n < 4) { | |
| 1629 /* luminance */ | |
| 1630 put_bits(&s->pb, DCtab_lum[size][1], DCtab_lum[size][0]); | |
| 1631 } else { | |
| 1632 /* chrominance */ | |
| 1633 put_bits(&s->pb, DCtab_chrom[size][1], DCtab_chrom[size][0]); | |
| 1634 } | |
| 1635 | |
| 1636 /* encode remaining bits */ | |
| 1637 if (size > 0) { | |
| 1638 if (level < 0) | |
| 1639 level = (-level) ^ ((1 << size) - 1); | |
| 1640 put_bits(&s->pb, size, level); | |
| 1641 if (size > 8) | |
| 1642 put_bits(&s->pb, 1, 1); | |
| 1643 } | |
| 293 | 1644 #endif |
| 0 | 1645 } |
| 1646 | |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1647 static inline void mpeg4_encode_block(MpegEncContext * s, DCTELEM * block, int n, int intra_dc, |
| 453 | 1648 UINT8 *scan_table, PutBitContext *dc_pb, PutBitContext *ac_pb) |
| 0 | 1649 { |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1650 int last, i, last_non_zero, sign; |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
1651 int code; |
| 0 | 1652 const RLTable *rl; |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1653 UINT32 *bits_tab; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1654 UINT8 *len_tab; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1655 const int last_index = s->block_last_index[n]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1656 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1657 if (s->mb_intra) { //Note gcc (3.2.1 at least) will optimize this away |
| 0 | 1658 /* mpeg4 based DC predictor */ |
| 453 | 1659 mpeg4_encode_dc(dc_pb, intra_dc, n); |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1660 if(last_index<1) return; |
| 0 | 1661 i = 1; |
| 1662 rl = &rl_intra; | |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1663 bits_tab= uni_mpeg4_intra_rl_bits; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1664 len_tab = uni_mpeg4_intra_rl_len; |
| 0 | 1665 } else { |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1666 if(last_index<0) return; |
| 0 | 1667 i = 0; |
| 1668 rl = &rl_inter; | |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1669 bits_tab= uni_mpeg4_inter_rl_bits; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1670 len_tab = uni_mpeg4_inter_rl_len; |
| 0 | 1671 } |
| 1672 | |
| 1673 /* AC coefs */ | |
| 1674 last_non_zero = i - 1; | |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1675 #if 1 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1676 for (; i < last_index; i++) { |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1677 int level = block[ scan_table[i] ]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1678 if (level) { |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1679 int run = i - last_non_zero - 1; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1680 level+=64; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1681 if((level&(~127)) == 0){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1682 const int index= UNI_MPEG4_ENC_INDEX(0, run, level); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1683 put_bits(ac_pb, len_tab[index], bits_tab[index]); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1684 }else{ //ESC3 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1685 put_bits(ac_pb, 7+2+1+6+1+12+1, (3<<23)+(3<<21)+(0<<20)+(run<<14)+(1<<13)+(((level-64)&0xfff)<<1)+1); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1686 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1687 last_non_zero = i; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1688 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1689 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1690 /*if(i<=last_index)*/{ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1691 int level = block[ scan_table[i] ]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1692 int run = i - last_non_zero - 1; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1693 level+=64; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1694 if((level&(~127)) == 0){ |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1695 const int index= UNI_MPEG4_ENC_INDEX(1, run, level); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1696 put_bits(ac_pb, len_tab[index], bits_tab[index]); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1697 }else{ //ESC3 |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1698 put_bits(ac_pb, 7+2+1+6+1+12+1, (3<<23)+(3<<21)+(1<<20)+(run<<14)+(1<<13)+(((level-64)&0xfff)<<1)+1); |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1699 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1700 } |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1701 #else |
| 0 | 1702 for (; i <= last_index; i++) { |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1703 const int slevel = block[ scan_table[i] ]; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1704 if (slevel) { |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1705 int level; |
|
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1706 int run = i - last_non_zero - 1; |
| 0 | 1707 last = (i == last_index); |
| 1708 sign = 0; | |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1709 level = slevel; |
| 0 | 1710 if (level < 0) { |
| 1711 sign = 1; | |
| 1712 level = -level; | |
| 1713 } | |
| 1714 code = get_rl_index(rl, last, run, level); | |
| 453 | 1715 put_bits(ac_pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); |
| 0 | 1716 if (code == rl->n) { |
| 1717 int level1, run1; | |
| 1718 level1 = level - rl->max_level[last][run]; | |
| 1719 if (level1 < 1) | |
| 1720 goto esc2; | |
| 1721 code = get_rl_index(rl, last, run, level1); | |
| 1722 if (code == rl->n) { | |
| 1723 esc2: | |
| 453 | 1724 put_bits(ac_pb, 1, 1); |
| 0 | 1725 if (level > MAX_LEVEL) |
| 1726 goto esc3; | |
| 1727 run1 = run - rl->max_run[last][level] - 1; | |
| 1728 if (run1 < 0) | |
| 1729 goto esc3; | |
| 1730 code = get_rl_index(rl, last, run1, level); | |
| 1731 if (code == rl->n) { | |
| 1732 esc3: | |
| 1733 /* third escape */ | |
| 453 | 1734 put_bits(ac_pb, 1, 1); |
| 1735 put_bits(ac_pb, 1, last); | |
| 1736 put_bits(ac_pb, 6, run); | |
| 1737 put_bits(ac_pb, 1, 1); | |
| 1738 put_bits(ac_pb, 12, slevel & 0xfff); | |
| 1739 put_bits(ac_pb, 1, 1); | |
| 0 | 1740 } else { |
| 1741 /* second escape */ | |
| 453 | 1742 put_bits(ac_pb, 1, 0); |
| 1743 put_bits(ac_pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1744 put_bits(ac_pb, 1, sign); | |
| 0 | 1745 } |
| 1746 } else { | |
| 1747 /* first escape */ | |
| 453 | 1748 put_bits(ac_pb, 1, 0); |
| 1749 put_bits(ac_pb, rl->table_vlc[code][1], rl->table_vlc[code][0]); | |
| 1750 put_bits(ac_pb, 1, sign); | |
| 0 | 1751 } |
| 1752 } else { | |
| 453 | 1753 put_bits(ac_pb, 1, sign); |
| 0 | 1754 } |
| 1755 last_non_zero = i; | |
| 1756 } | |
| 1757 } | |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
1758 #endif |
| 0 | 1759 } |
| 1760 | |
| 1761 | |
| 1762 | |
| 1763 /***********************************************/ | |
| 1764 /* decoding */ | |
| 1765 | |
| 1766 static VLC intra_MCBPC_vlc; | |
| 1767 static VLC inter_MCBPC_vlc; | |
| 1768 static VLC cbpy_vlc; | |
| 1769 static VLC mv_vlc; | |
| 1770 static VLC dc_lum, dc_chrom; | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1771 static VLC sprite_trajectory; |
| 262 | 1772 static VLC mb_type_b_vlc; |
| 0 | 1773 |
| 1774 void init_rl(RLTable *rl) | |
| 1775 { | |
| 1776 INT8 max_level[MAX_RUN+1], max_run[MAX_LEVEL+1]; | |
| 1777 UINT8 index_run[MAX_RUN+1]; | |
| 1778 int last, run, level, start, end, i; | |
| 1779 | |
| 1780 /* compute max_level[], max_run[] and index_run[] */ | |
| 1781 for(last=0;last<2;last++) { | |
| 1782 if (last == 0) { | |
| 1783 start = 0; | |
| 1784 end = rl->last; | |
| 1785 } else { | |
| 1786 start = rl->last; | |
| 1787 end = rl->n; | |
| 1788 } | |
| 1789 | |
| 1790 memset(max_level, 0, MAX_RUN + 1); | |
| 1791 memset(max_run, 0, MAX_LEVEL + 1); | |
| 1792 memset(index_run, rl->n, MAX_RUN + 1); | |
| 1793 for(i=start;i<end;i++) { | |
| 1794 run = rl->table_run[i]; | |
| 1795 level = rl->table_level[i]; | |
| 1796 if (index_run[run] == rl->n) | |
| 1797 index_run[run] = i; | |
| 1798 if (level > max_level[run]) | |
| 1799 max_level[run] = level; | |
| 1800 if (run > max_run[level]) | |
| 1801 max_run[level] = run; | |
| 1802 } | |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
365
diff
changeset
|
1803 rl->max_level[last] = av_malloc(MAX_RUN + 1); |
| 0 | 1804 memcpy(rl->max_level[last], max_level, MAX_RUN + 1); |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
365
diff
changeset
|
1805 rl->max_run[last] = av_malloc(MAX_LEVEL + 1); |
| 0 | 1806 memcpy(rl->max_run[last], max_run, MAX_LEVEL + 1); |
|
396
fce0a2520551
removed useless header includes - use av memory functions
glantau
parents:
365
diff
changeset
|
1807 rl->index_run[last] = av_malloc(MAX_RUN + 1); |
| 0 | 1808 memcpy(rl->index_run[last], index_run, MAX_RUN + 1); |
| 1809 } | |
| 1810 } | |
| 1811 | |
| 1812 void init_vlc_rl(RLTable *rl) | |
| 1813 { | |
| 542 | 1814 int i, q; |
| 1815 | |
| 0 | 1816 init_vlc(&rl->vlc, 9, rl->n + 1, |
| 1817 &rl->table_vlc[0][1], 4, 2, | |
| 1818 &rl->table_vlc[0][0], 4, 2); | |
| 542 | 1819 |
| 1820 | |
| 1821 for(q=0; q<32; q++){ | |
| 1822 int qmul= q*2; | |
| 1823 int qadd= (q-1)|1; | |
| 1824 | |
| 1825 if(q==0){ | |
| 1826 qmul=1; | |
| 1827 qadd=0; | |
| 1828 } | |
| 1829 | |
| 1830 rl->rl_vlc[q]= av_malloc(rl->vlc.table_size*sizeof(RL_VLC_ELEM)); | |
| 1831 for(i=0; i<rl->vlc.table_size; i++){ | |
| 1832 int code= rl->vlc.table[i][0]; | |
| 1833 int len = rl->vlc.table[i][1]; | |
| 1834 int level, run; | |
| 1835 | |
| 1836 if(len==0){ // illegal code | |
| 563 | 1837 run= 66; |
| 542 | 1838 level= MAX_LEVEL; |
| 1839 }else if(len<0){ //more bits needed | |
| 1840 run= 0; | |
| 1841 level= code; | |
| 1842 }else{ | |
| 1843 if(code==rl->n){ //esc | |
| 563 | 1844 run= 66; |
| 542 | 1845 level= 0; |
| 1846 }else{ | |
| 1847 run= rl->table_run [code] + 1; | |
| 1848 level= rl->table_level[code] * qmul + qadd; | |
| 1849 if(code >= rl->last) run+=192; | |
| 1850 } | |
| 1851 } | |
| 1852 rl->rl_vlc[q][i].len= len; | |
| 1853 rl->rl_vlc[q][i].level= level; | |
| 1854 rl->rl_vlc[q][i].run= run; | |
| 1855 } | |
| 1856 } | |
| 0 | 1857 } |
| 1858 | |
| 1859 /* init vlcs */ | |
| 1860 | |
| 1861 /* XXX: find a better solution to handle static init */ | |
| 1862 void h263_decode_init_vlc(MpegEncContext *s) | |
| 1863 { | |
| 1864 static int done = 0; | |
| 1865 | |
| 1866 if (!done) { | |
| 1867 done = 1; | |
| 1868 | |
| 544 | 1869 init_vlc(&intra_MCBPC_vlc, INTRA_MCBPC_VLC_BITS, 8, |
| 0 | 1870 intra_MCBPC_bits, 1, 1, |
| 1871 intra_MCBPC_code, 1, 1); | |
| 544 | 1872 init_vlc(&inter_MCBPC_vlc, INTER_MCBPC_VLC_BITS, 25, |
| 0 | 1873 inter_MCBPC_bits, 1, 1, |
| 1874 inter_MCBPC_code, 1, 1); | |
| 544 | 1875 init_vlc(&cbpy_vlc, CBPY_VLC_BITS, 16, |
| 0 | 1876 &cbpy_tab[0][1], 2, 1, |
| 1877 &cbpy_tab[0][0], 2, 1); | |
| 544 | 1878 init_vlc(&mv_vlc, MV_VLC_BITS, 33, |
| 0 | 1879 &mvtab[0][1], 2, 1, |
| 1880 &mvtab[0][0], 2, 1); | |
| 1881 init_rl(&rl_inter); | |
| 1882 init_rl(&rl_intra); | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1883 init_rl(&rl_intra_aic); |
| 0 | 1884 init_vlc_rl(&rl_inter); |
| 1885 init_vlc_rl(&rl_intra); | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
1886 init_vlc_rl(&rl_intra_aic); |
| 549 | 1887 init_vlc(&dc_lum, DC_VLC_BITS, 10 /* 13 */, |
| 0 | 1888 &DCtab_lum[0][1], 2, 1, |
| 1889 &DCtab_lum[0][0], 2, 1); | |
| 549 | 1890 init_vlc(&dc_chrom, DC_VLC_BITS, 10 /* 13 */, |
| 0 | 1891 &DCtab_chrom[0][1], 2, 1, |
| 1892 &DCtab_chrom[0][0], 2, 1); | |
| 544 | 1893 init_vlc(&sprite_trajectory, SPRITE_TRAJ_VLC_BITS, 15, |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1894 &sprite_trajectory_tab[0][1], 4, 2, |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
1895 &sprite_trajectory_tab[0][0], 4, 2); |
| 544 | 1896 init_vlc(&mb_type_b_vlc, MB_TYPE_B_VLC_BITS, 4, |
| 262 | 1897 &mb_type_b_tab[0][1], 2, 1, |
| 1898 &mb_type_b_tab[0][0], 2, 1); | |
| 0 | 1899 } |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
1900 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
1901 s->progressive_sequence=1; // set to most likely for the case of incomplete headers |
| 0 | 1902 } |
| 1903 | |
| 162 | 1904 int h263_decode_gob_header(MpegEncContext *s) |
| 1905 { | |
| 1906 unsigned int val, gfid; | |
| 1907 | |
| 1908 /* Check for GOB Start Code */ | |
| 1909 val = show_bits(&s->gb, 16); | |
| 1910 if (val == 0) { | |
| 1911 /* We have a GBSC probably with GSTUFF */ | |
| 1912 skip_bits(&s->gb, 16); /* Drop the zeros */ | |
| 1913 while (get_bits1(&s->gb) == 0); /* Seek the '1' bit */ | |
| 1914 #ifdef DEBUG | |
| 1915 fprintf(stderr,"\nGOB Start Code at MB %d\n", (s->mb_y * s->mb_width) + s->mb_x); | |
| 1916 #endif | |
| 1917 s->gob_number = get_bits(&s->gb, 5); /* GN */ | |
| 1918 gfid = get_bits(&s->gb, 2); /* GFID */ | |
| 1919 s->qscale = get_bits(&s->gb, 5); /* GQUANT */ | |
| 1920 #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
|
1921 fprintf(stderr, "\nGN: %u GFID: %u Quant: %u\n", s->gob_number, gfid, s->qscale); |
| 162 | 1922 #endif |
| 1923 return 1; | |
| 1924 } | |
| 1925 return 0; | |
| 1926 | |
| 1927 } | |
| 1928 | |
| 290 | 1929 static inline void memsetw(short *tab, int val, int n) |
| 1930 { | |
| 1931 int i; | |
| 1932 for(i=0;i<n;i++) | |
| 1933 tab[i] = val; | |
| 1934 } | |
| 1935 | |
| 453 | 1936 void ff_mpeg4_init_partitions(MpegEncContext *s) |
| 1937 { | |
| 1938 init_put_bits(&s->tex_pb, s->tex_pb_buffer, PB_BUFFER_SIZE, NULL, NULL); | |
| 1939 init_put_bits(&s->pb2 , s->pb2_buffer , PB_BUFFER_SIZE, NULL, NULL); | |
| 1940 } | |
| 1941 | |
| 1942 void ff_mpeg4_merge_partitions(MpegEncContext *s) | |
| 290 | 1943 { |
| 453 | 1944 const int pb2_len = get_bit_count(&s->pb2 ); |
| 1945 const int tex_pb_len= get_bit_count(&s->tex_pb); | |
| 1946 const int bits= get_bit_count(&s->pb); | |
| 1947 | |
| 1948 if(s->pict_type==I_TYPE){ | |
| 1949 put_bits(&s->pb, 19, DC_MARKER); | |
| 1950 s->misc_bits+=19 + pb2_len + bits - s->last_bits; | |
| 1951 s->i_tex_bits+= tex_pb_len; | |
| 1952 }else{ | |
| 1953 put_bits(&s->pb, 17, MOTION_MARKER); | |
| 1954 s->misc_bits+=17 + pb2_len;; | |
| 1955 s->mv_bits+= bits - s->last_bits; | |
| 1956 s->p_tex_bits+= tex_pb_len; | |
| 1957 } | |
| 1958 | |
| 1959 flush_put_bits(&s->pb2); | |
| 1960 flush_put_bits(&s->tex_pb); | |
| 1961 | |
| 1962 ff_copy_bits(&s->pb, s->pb2_buffer , pb2_len); | |
| 1963 ff_copy_bits(&s->pb, s->tex_pb_buffer, tex_pb_len); | |
| 1964 s->last_bits= get_bit_count(&s->pb); | |
| 1965 } | |
| 1966 | |
| 1967 void ff_mpeg4_encode_video_packet_header(MpegEncContext *s) | |
| 1968 { | |
| 1969 int mb_num_bits= av_log2(s->mb_num - 1) + 1; | |
| 1970 | |
| 1971 ff_mpeg4_stuffing(&s->pb); | |
| 1972 if(s->pict_type==I_TYPE) | |
| 1973 put_bits(&s->pb, 16, 0); | |
| 1974 else if(s->pict_type==B_TYPE) | |
| 1975 put_bits(&s->pb, MAX(MAX(s->f_code, s->b_code)+15, 17), 0); | |
| 1976 else /* S/P_TYPE */ | |
| 1977 put_bits(&s->pb, s->f_code+15, 0); | |
| 1978 put_bits(&s->pb, 1, 1); | |
| 1979 | |
| 1980 put_bits(&s->pb, mb_num_bits, s->mb_x + s->mb_y*s->mb_width); | |
| 1981 put_bits(&s->pb, 5, s->qscale); | |
| 1982 put_bits(&s->pb, 1, 0); /* no HEC */ | |
| 1983 } | |
| 1984 | |
| 1985 /** | |
| 1986 * decodes the next video packet and sets s->next_qscale | |
| 1987 * returns mb_num of the next packet or <0 if something went wrong | |
| 1988 */ | |
| 1989 static int decode_video_packet_header(MpegEncContext *s, GetBitContext *gb) | |
| 1990 { | |
| 1991 int bits; | |
| 290 | 1992 int mb_num_bits= av_log2(s->mb_num - 1) + 1; |
| 1993 int header_extension=0, mb_num; | |
| 453 | 1994 //printf("%X\n", show_bits(&gb, 24)); |
| 1995 //printf("parse_video_packet_header\n"); | |
| 1996 // if(show_aligned_bits(gb, 1, 16) != 0) return -1; | |
| 1997 | |
| 1998 /* is there enough space left for a video packet + header */ | |
| 1999 if( get_bits_count(gb) > gb->size*8-20) return -1; | |
| 2000 | |
| 290 | 2001 //printf("resync at %d %d\n", s->mb_x, s->mb_y); |
| 453 | 2002 // skip_bits(gb, 1); |
| 2003 // align_get_bits(gb); | |
| 2004 if(get_bits(gb, 16)!=0){ | |
| 2005 printf("internal error while decoding video packet header\n"); | |
| 2006 } | |
| 2007 | |
| 2008 //printf("%X\n", show_bits(gb, 24)); | |
| 2009 bits=0; | |
| 2010 while(!get_bits1(gb) && bits<30) bits++; | |
| 2011 if((s->pict_type == P_TYPE || s->pict_type == S_TYPE) && bits != s->f_code-1){ | |
| 2012 printf("marker does not match f_code (is: %d should be: %d pos: %d end %d x: %d y: %d)\n", | |
| 2013 bits+1, s->f_code, get_bits_count(gb), gb->size*8, s->mb_x, s->mb_y); | |
| 2014 return -1; | |
| 2015 }else if(s->pict_type == I_TYPE && bits != 0){ | |
| 2016 printf("marker too long\n"); | |
| 2017 return -1; | |
| 2018 }else if(s->pict_type == B_TYPE && bits != MAX(MAX(s->f_code, s->b_code)-1, 1)){ | |
| 2019 printf("marker does not match f/b_code\n"); | |
| 2020 return -1; | |
| 2021 } | |
| 2022 //printf("%X\n", show_bits(gb, 24)); | |
| 2023 | |
| 2024 if(s->shape != RECT_SHAPE){ | |
| 2025 header_extension= get_bits1(gb); | |
| 2026 //FIXME more stuff here | |
| 2027 } | |
| 2028 | |
| 2029 mb_num= get_bits(gb, mb_num_bits); | |
| 2030 if(mb_num < s->mb_x + s->mb_y*s->mb_width || mb_num>=s->mb_num){ | |
| 2031 fprintf(stderr, "illegal mb_num in video packet (%d %d) \n", mb_num, s->mb_x + s->mb_y*s->mb_width); | |
| 2032 return -1; | |
| 2033 } | |
| 2034 | |
| 2035 if(s->shape != BIN_ONLY_SHAPE){ | |
| 2036 s->next_resync_qscale= get_bits(gb, 5); | |
| 2037 if(s->next_resync_qscale==0) | |
| 2038 s->next_resync_qscale= s->qscale; | |
| 2039 if(s->next_resync_qscale==0){ | |
| 2040 fprintf(stderr, "qscale==0\n"); | |
| 290 | 2041 return -1; |
| 2042 } | |
| 2043 } | |
| 2044 | |
| 2045 if(s->shape == RECT_SHAPE){ | |
| 453 | 2046 header_extension= get_bits1(gb); |
| 290 | 2047 } |
| 2048 if(header_extension){ | |
| 453 | 2049 int time_increment; |
| 290 | 2050 int time_incr=0; |
| 453 | 2051 printf("header extension not supported\n"); |
| 2052 return -1; | |
| 2053 | |
| 2054 while (get_bits1(gb) != 0) | |
| 290 | 2055 time_incr++; |
| 2056 | |
| 453 | 2057 check_marker(gb, "before time_increment in video packed header"); |
| 2058 time_increment= get_bits(gb, s->time_increment_bits); | |
| 290 | 2059 if(s->pict_type!=B_TYPE){ |
| 324 | 2060 s->last_time_base= s->time_base; |
| 290 | 2061 s->time_base+= time_incr; |
| 324 | 2062 s->time= s->time_base*s->time_increment_resolution + time_increment; |
| 2063 s->pp_time= s->time - s->last_non_b_time; | |
| 2064 s->last_non_b_time= s->time; | |
| 290 | 2065 }else{ |
| 324 | 2066 s->time= (s->last_time_base + time_incr)*s->time_increment_resolution + time_increment; |
| 2067 s->bp_time= s->last_non_b_time - s->time; | |
| 290 | 2068 } |
| 453 | 2069 check_marker(gb, "before vop_coding_type in video packed header"); |
| 290 | 2070 |
| 453 | 2071 skip_bits(gb, 2); /* vop coding type */ |
| 290 | 2072 //FIXME not rect stuff here |
| 2073 | |
| 2074 if(s->shape != BIN_ONLY_SHAPE){ | |
| 453 | 2075 skip_bits(gb, 3); /* intra dc vlc threshold */ |
| 290 | 2076 |
| 2077 if(s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE && s->num_sprite_warping_points){ | |
| 2078 mpeg4_decode_sprite_trajectory(s); | |
| 2079 } | |
| 2080 | |
| 2081 //FIXME reduced res stuff here | |
| 2082 | |
| 2083 if (s->pict_type != I_TYPE) { | |
| 453 | 2084 s->f_code = get_bits(gb, 3); /* fcode_for */ |
| 290 | 2085 if(s->f_code==0){ |
| 2086 printf("Error, video packet header damaged or not MPEG4 header (f_code=0)\n"); | |
| 2087 return -1; // makes no sense to continue, as the MV decoding will break very quickly | |
| 2088 } | |
| 2089 } | |
| 2090 if (s->pict_type == B_TYPE) { | |
| 453 | 2091 s->b_code = get_bits(gb, 3); |
| 290 | 2092 } |
| 2093 } | |
| 2094 } | |
| 2095 //FIXME new-pred stuff | |
| 453 | 2096 |
| 2097 //printf("parse ok %d %d %d %d\n", mb_num, s->mb_x + s->mb_y*s->mb_width, get_bits_count(gb), get_bits_count(&s->gb)); | |
| 2098 | |
| 2099 return mb_num; | |
| 2100 } | |
| 2101 | |
| 2102 void ff_mpeg4_clean_buffers(MpegEncContext *s) | |
| 2103 { | |
| 2104 int c_wrap, c_xy, l_wrap, l_xy; | |
| 290 | 2105 |
| 2106 l_wrap= s->block_wrap[0]; | |
| 453 | 2107 l_xy= s->mb_y*l_wrap*2 + s->mb_x*2; |
| 290 | 2108 c_wrap= s->block_wrap[4]; |
| 453 | 2109 c_xy= s->mb_y*c_wrap + s->mb_x; |
| 290 | 2110 |
| 2111 /* clean DC */ | |
| 453 | 2112 memsetw(s->dc_val[0] + l_xy, 1024, l_wrap*2+1); |
| 2113 memsetw(s->dc_val[1] + c_xy, 1024, c_wrap+1); | |
| 2114 memsetw(s->dc_val[2] + c_xy, 1024, c_wrap+1); | |
| 290 | 2115 |
| 2116 /* clean AC */ | |
| 453 | 2117 memset(s->ac_val[0] + l_xy, 0, (l_wrap*2+1)*16*sizeof(INT16)); |
| 2118 memset(s->ac_val[1] + c_xy, 0, (c_wrap +1)*16*sizeof(INT16)); | |
| 2119 memset(s->ac_val[2] + c_xy, 0, (c_wrap +1)*16*sizeof(INT16)); | |
| 290 | 2120 |
| 2121 /* clean MV */ | |
| 453 | 2122 // we cant clear the MVs as they might be needed by a b frame |
| 2123 // memset(s->motion_val + l_xy, 0, (l_wrap*2+1)*2*sizeof(INT16)); | |
| 290 | 2124 // memset(s->motion_val, 0, 2*sizeof(INT16)*(2 + s->mb_width*2)*(2 + s->mb_height*2)); |
| 453 | 2125 s->last_mv[0][0][0]= |
| 2126 s->last_mv[0][0][1]= | |
| 2127 s->last_mv[1][0][0]= | |
| 2128 s->last_mv[1][0][1]= 0; | |
| 2129 } | |
| 2130 | |
| 2131 /* searches for the next resync marker clears ac,dc,mc, and sets s->next_resync_gb, s->mb_num_left */ | |
| 2132 int ff_mpeg4_resync(MpegEncContext *s) | |
| 2133 { | |
| 2134 GetBitContext gb; | |
| 2135 | |
| 2136 /* search & parse next resync marker */ | |
| 2137 | |
| 2138 gb= s->next_resync_gb; | |
| 2139 align_get_bits(&gb); | |
| 2140 //printf("mpeg4_resync %d next:%d \n", get_bits_count(&gb), get_bits_count(&s->next_resync_gb)); | |
| 2141 for(;;) { | |
| 2142 int v= show_bits(&gb, 24); | |
| 2143 if( get_bits_count(&gb) >= gb.size*8-24 || v == 1 /* start-code */){ | |
| 2144 s->mb_num_left= s->mb_num - s->mb_x - s->mb_y*s->mb_width; | |
| 2145 //printf("mpeg4_resync end\n"); | |
| 2146 s->gb= s->next_resync_gb; //continue at the next resync marker | |
| 2147 return -1; | |
| 2148 }else if(v>>8 == 0){ | |
| 2149 int next; | |
| 2150 s->next_resync_pos= get_bits_count(&gb); | |
| 2151 | |
| 2152 next= decode_video_packet_header(s, &gb); | |
| 2153 if(next >= 0){ | |
| 2154 s->mb_num_left= next - s->mb_x - s->mb_y*s->mb_width; | |
| 2155 break; | |
| 2156 } | |
| 2157 | |
| 2158 align_get_bits(&gb); | |
| 2159 } | |
| 2160 skip_bits(&gb, 8); | |
| 2161 } | |
| 2162 s->next_resync_gb=gb; | |
| 2163 | |
| 2164 return 0; | |
| 2165 } | |
| 2166 | |
| 2167 static inline void init_block_index(MpegEncContext *s) | |
| 2168 { | |
| 2169 s->block_index[0]= s->block_wrap[0]*(s->mb_y*2 + 1) - 1 + s->mb_x*2; | |
| 2170 s->block_index[1]= s->block_wrap[0]*(s->mb_y*2 + 1) + s->mb_x*2; | |
| 2171 s->block_index[2]= s->block_wrap[0]*(s->mb_y*2 + 2) - 1 + s->mb_x*2; | |
| 2172 s->block_index[3]= s->block_wrap[0]*(s->mb_y*2 + 2) + s->mb_x*2; | |
| 2173 s->block_index[4]= s->block_wrap[4]*(s->mb_y + 1) + s->block_wrap[0]*(s->mb_height*2 + 2) + s->mb_x; | |
| 2174 s->block_index[5]= s->block_wrap[4]*(s->mb_y + 1 + s->mb_height + 2) + s->block_wrap[0]*(s->mb_height*2 + 2) + s->mb_x; | |
| 2175 } | |
| 2176 | |
| 2177 static inline void update_block_index(MpegEncContext *s) | |
| 2178 { | |
| 2179 s->block_index[0]+=2; | |
| 2180 s->block_index[1]+=2; | |
| 2181 s->block_index[2]+=2; | |
| 2182 s->block_index[3]+=2; | |
| 2183 s->block_index[4]++; | |
| 2184 s->block_index[5]++; | |
| 2185 } | |
| 2186 | |
| 2187 /** | |
| 2188 * decodes the first & second partition | |
| 2189 * returns error type or 0 if no error | |
| 2190 */ | |
| 2191 int ff_mpeg4_decode_partitions(MpegEncContext *s) | |
| 2192 { | |
| 2193 static const INT8 quant_tab[4] = { -1, -2, 1, 2 }; | |
| 2194 int mb_num; | |
| 2195 | |
| 2196 /* decode first partition */ | |
| 2197 mb_num=0; | |
| 290 | 2198 s->first_slice_line=1; |
| 453 | 2199 s->mb_x= s->resync_mb_x; |
| 2200 for(s->mb_y= s->resync_mb_y; mb_num < s->mb_num_left; s->mb_y++){ | |
| 2201 init_block_index(s); | |
| 2202 for(; mb_num < s->mb_num_left && s->mb_x<s->mb_width; s->mb_x++){ | |
| 2203 const int xy= s->mb_x + s->mb_y*s->mb_width; | |
| 2204 int cbpc; | |
| 2205 int dir=0; | |
| 2206 | |
| 2207 mb_num++; | |
| 2208 update_block_index(s); | |
| 2209 if(s->mb_x == s->resync_mb_x && s->mb_y == s->resync_mb_y+1) | |
| 2210 s->first_slice_line=0; | |
| 2211 | |
| 2212 if(s->mb_x==0) PRINT_MB_TYPE("\n"); | |
| 2213 | |
| 2214 if(s->pict_type==I_TYPE){ | |
| 2215 int i; | |
| 2216 | |
| 2217 PRINT_MB_TYPE("I"); | |
| 544 | 2218 cbpc = get_vlc2(&s->gb, intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 1); |
| 453 | 2219 if (cbpc < 0){ |
| 2220 fprintf(stderr, "cbpc corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2221 return DECODING_DESYNC; | |
| 2222 } | |
| 2223 s->cbp_table[xy]= cbpc & 3; | |
| 2224 s->mb_type[xy]= MB_TYPE_INTRA; | |
| 2225 s->mb_intra = 1; | |
| 2226 | |
| 2227 if(cbpc & 4) { | |
| 2228 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2229 if (s->qscale < 1) | |
| 2230 s->qscale = 1; | |
| 2231 else if (s->qscale > 31) | |
| 2232 s->qscale = 31; | |
| 2233 h263_dc_scale(s); | |
| 2234 } | |
| 2235 s->qscale_table[xy]= s->qscale; | |
| 2236 | |
| 2237 s->mbintra_table[xy]= 1; | |
| 2238 for(i=0; i<6; i++){ | |
| 2239 int dc_pred_dir; | |
| 2240 int dc= mpeg4_decode_dc(s, i, &dc_pred_dir); | |
| 2241 if(dc < 0){ | |
| 2242 fprintf(stderr, "DC corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2243 return DECODING_DESYNC; | |
| 2244 } | |
| 2245 dir<<=1; | |
| 2246 if(dc_pred_dir) dir|=1; | |
| 2247 } | |
| 2248 s->pred_dir_table[xy]= dir; | |
| 2249 }else{ /* P/S_TYPE */ | |
| 2250 int mx, my, pred_x, pred_y; | |
| 2251 INT16 * const mot_val= s->motion_val[s->block_index[0]]; | |
| 2252 const int stride= s->block_wrap[0]*2; | |
| 2253 | |
| 2254 if(get_bits1(&s->gb)){ | |
| 2255 /* skip mb */ | |
| 2256 s->mb_type[xy]= MB_TYPE_SKIPED; | |
| 2257 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE){ | |
| 2258 const int a= s->sprite_warping_accuracy; | |
| 2259 PRINT_MB_TYPE("G"); | |
| 2260 if(s->divx_version==500 && s->divx_build==413){ | |
| 2261 mx = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2262 my = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2263 }else{ | |
| 2264 mx = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2265 my = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2266 s->mb_type[xy]= MB_TYPE_GMC | MB_TYPE_SKIPED; | |
| 2267 } | |
| 2268 }else{ | |
| 2269 PRINT_MB_TYPE("S"); | |
| 2270 mx = 0; | |
| 2271 my = 0; | |
| 2272 } | |
| 2273 mot_val[0 ]= mot_val[2 ]= | |
| 2274 mot_val[0+stride]= mot_val[2+stride]= mx; | |
| 2275 mot_val[1 ]= mot_val[3 ]= | |
| 2276 mot_val[1+stride]= mot_val[3+stride]= my; | |
| 2277 | |
| 2278 if(s->mbintra_table[xy]) | |
| 2279 ff_clean_intra_table_entries(s); | |
| 2280 | |
| 2281 continue; | |
| 2282 } | |
| 544 | 2283 cbpc = get_vlc2(&s->gb, inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); |
| 453 | 2284 if (cbpc < 0){ |
| 2285 fprintf(stderr, "cbpc corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2286 return DECODING_DESYNC; | |
| 2287 } | |
| 2288 if (cbpc > 20) | |
| 2289 cbpc+=3; | |
| 2290 else if (cbpc == 20) | |
| 2291 fprintf(stderr, "Stuffing !"); | |
| 2292 s->cbp_table[xy]= cbpc&(8+3); //8 is dquant | |
| 2293 | |
| 2294 s->mb_intra = ((cbpc & 4) != 0); | |
| 2295 | |
| 2296 if(s->mb_intra){ | |
| 2297 PRINT_MB_TYPE("I"); | |
| 2298 s->mbintra_table[xy]= 1; | |
| 2299 s->mb_type[xy]= MB_TYPE_INTRA; | |
| 2300 mot_val[0 ]= mot_val[2 ]= | |
| 2301 mot_val[0+stride]= mot_val[2+stride]= 0; | |
| 2302 mot_val[1 ]= mot_val[3 ]= | |
| 2303 mot_val[1+stride]= mot_val[3+stride]= 0; | |
| 2304 }else{ | |
| 2305 if(s->mbintra_table[xy]) | |
| 2306 ff_clean_intra_table_entries(s); | |
| 2307 | |
| 2308 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE && (cbpc & 16) == 0) | |
| 2309 s->mcsel= get_bits1(&s->gb); | |
| 2310 else s->mcsel= 0; | |
| 2311 | |
| 2312 if ((cbpc & 16) == 0) { | |
| 2313 PRINT_MB_TYPE("P"); | |
| 2314 /* 16x16 motion prediction */ | |
| 2315 s->mb_type[xy]= MB_TYPE_INTER; | |
| 2316 | |
| 2317 h263_pred_motion(s, 0, &pred_x, &pred_y); | |
| 2318 if(!s->mcsel) | |
| 2319 mx = h263_decode_motion(s, pred_x, s->f_code); | |
| 2320 else { | |
| 2321 const int a= s->sprite_warping_accuracy; | |
| 2322 if(s->divx_version==500 && s->divx_build==413){ | |
| 2323 mx = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2324 }else{ | |
| 2325 mx = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2326 } | |
| 2327 } | |
| 2328 if (mx >= 0xffff) | |
| 2329 return DECODING_DESYNC; | |
| 2330 | |
| 2331 if(!s->mcsel) | |
| 2332 my = h263_decode_motion(s, pred_y, s->f_code); | |
| 2333 else{ | |
| 2334 const int a= s->sprite_warping_accuracy; | |
| 2335 if(s->divx_version==500 && s->divx_build==413){ | |
| 2336 my = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2337 }else{ | |
| 2338 my = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2339 } | |
| 2340 } | |
| 2341 if (my >= 0xffff) | |
| 2342 return DECODING_DESYNC; | |
| 2343 mot_val[0 ]= mot_val[2 ] = | |
| 2344 mot_val[0+stride]= mot_val[2+stride]= mx; | |
| 2345 mot_val[1 ]= mot_val[3 ]= | |
| 2346 mot_val[1+stride]= mot_val[3+stride]= my; | |
| 2347 } else { | |
| 2348 int i; | |
| 2349 PRINT_MB_TYPE("4"); | |
| 2350 s->mb_type[xy]= MB_TYPE_INTER4V; | |
| 2351 for(i=0;i<4;i++) { | |
| 2352 INT16 *mot_val= h263_pred_motion(s, i, &pred_x, &pred_y); | |
| 2353 mx = h263_decode_motion(s, pred_x, s->f_code); | |
| 2354 if (mx >= 0xffff) | |
| 2355 return DECODING_DESYNC; | |
| 2356 | |
| 2357 my = h263_decode_motion(s, pred_y, s->f_code); | |
| 2358 if (my >= 0xffff) | |
| 2359 return DECODING_DESYNC; | |
| 2360 mot_val[0] = mx; | |
| 2361 mot_val[1] = my; | |
| 2362 } | |
| 2363 } | |
| 2364 } | |
| 2365 } | |
| 2366 } | |
| 2367 s->mb_x= 0; | |
| 2368 } | |
| 2369 | |
| 2370 if (s->pict_type==I_TYPE && get_bits(&s->gb, 19)!=DC_MARKER ) s->decoding_error= DECODING_DESYNC; | |
| 2371 else if(s->pict_type!=I_TYPE && get_bits(&s->gb, 17)!=MOTION_MARKER) s->decoding_error= DECODING_DESYNC; | |
| 2372 if(s->decoding_error== DECODING_DESYNC){ | |
| 2373 fprintf(stderr, "marker missing after first partition at %d %d\n", s->mb_x, s->mb_y); | |
| 2374 return DECODING_DESYNC; | |
| 2375 } | |
| 2376 | |
| 2377 /* decode second partition */ | |
| 2378 mb_num=0; | |
| 2379 s->mb_x= s->resync_mb_x; | |
| 2380 for(s->mb_y= s->resync_mb_y; mb_num < s->mb_num_left; s->mb_y++){ | |
| 2381 init_block_index(s); | |
| 2382 for(; mb_num < s->mb_num_left && s->mb_x<s->mb_width; s->mb_x++){ | |
| 2383 const int xy= s->mb_x + s->mb_y*s->mb_width; | |
| 2384 | |
| 2385 mb_num++; | |
| 2386 update_block_index(s); | |
| 2387 | |
| 2388 if(s->pict_type==I_TYPE){ | |
| 2389 int ac_pred= get_bits1(&s->gb); | |
| 544 | 2390 int cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2391 if(cbpy<0){ |
| 2392 fprintf(stderr, "cbpy corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2393 return DECODING_AC_LOST; | |
| 2394 } | |
| 2395 | |
| 2396 s->cbp_table[xy]|= cbpy<<2; | |
| 2397 s->pred_dir_table[xy]|= ac_pred<<7; | |
| 2398 }else{ /* P || S_TYPE */ | |
| 2399 if(s->mb_type[xy]&MB_TYPE_INTRA){ | |
| 2400 int dir=0,i; | |
| 2401 int ac_pred = get_bits1(&s->gb); | |
| 544 | 2402 int cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2403 |
| 2404 if(cbpy<0){ | |
| 2405 fprintf(stderr, "I cbpy corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2406 return DECODING_ACDC_LOST; | |
| 2407 } | |
| 2408 | |
| 2409 if(s->cbp_table[xy] & 8) { | |
| 2410 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2411 if (s->qscale < 1) | |
| 2412 s->qscale = 1; | |
| 2413 else if (s->qscale > 31) | |
| 2414 s->qscale = 31; | |
| 2415 h263_dc_scale(s); | |
| 2416 } | |
| 2417 s->qscale_table[xy]= s->qscale; | |
| 2418 | |
| 2419 for(i=0; i<6; i++){ | |
| 2420 int dc_pred_dir; | |
| 2421 int dc= mpeg4_decode_dc(s, i, &dc_pred_dir); | |
| 2422 if(dc < 0){ | |
| 2423 fprintf(stderr, "DC corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2424 return DECODING_ACDC_LOST; | |
| 2425 } | |
| 2426 dir<<=1; | |
| 2427 if(dc_pred_dir) dir|=1; | |
| 2428 } | |
| 2429 s->cbp_table[xy]&= 3; //remove dquant | |
| 2430 s->cbp_table[xy]|= cbpy<<2; | |
| 2431 s->pred_dir_table[xy]= dir | (ac_pred<<7); | |
| 2432 }else if(s->mb_type[xy]&MB_TYPE_SKIPED){ | |
| 2433 s->qscale_table[xy]= s->qscale; | |
| 2434 s->cbp_table[xy]= 0; | |
| 2435 }else{ | |
| 544 | 2436 int cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2437 |
| 2438 if(cbpy<0){ | |
| 2439 fprintf(stderr, "P cbpy corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2440 return DECODING_ACDC_LOST; | |
| 2441 } | |
| 2442 | |
| 2443 if(s->cbp_table[xy] & 8) { | |
| 2444 //fprintf(stderr, "dquant\n"); | |
| 2445 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2446 if (s->qscale < 1) | |
| 2447 s->qscale = 1; | |
| 2448 else if (s->qscale > 31) | |
| 2449 s->qscale = 31; | |
| 2450 h263_dc_scale(s); | |
| 2451 } | |
| 2452 s->qscale_table[xy]= s->qscale; | |
| 2453 | |
| 2454 s->cbp_table[xy]&= 3; //remove dquant | |
| 2455 s->cbp_table[xy]|= (cbpy^0xf)<<2; | |
| 2456 } | |
| 2457 } | |
| 2458 } | |
| 2459 s->mb_x= 0; | |
| 2460 } | |
| 2461 | |
| 2462 | |
| 2463 return 0; | |
| 2464 } | |
| 2465 | |
| 2466 static int mpeg4_decode_partitioned_mb(MpegEncContext *s, | |
| 2467 DCTELEM block[6][64]) | |
| 2468 { | |
| 2469 int cbp, mb_type; | |
| 2470 const int xy= s->mb_x + s->mb_y*s->mb_width; | |
| 2471 | |
| 2472 if(s->mb_x==s->resync_mb_x && s->mb_y==s->resync_mb_y){ //Note resync_mb_{x,y}==0 at the start | |
| 2473 int i; | |
| 2474 int block_index_backup[6]; | |
| 2475 int qscale= s->qscale; | |
| 2476 | |
| 2477 for(i=0; i<6; i++) block_index_backup[i]= s->block_index[i]; | |
| 2478 | |
| 2479 s->decoding_error= ff_mpeg4_decode_partitions(s); | |
| 2480 | |
| 2481 for(i=0; i<6; i++) s->block_index[i]= block_index_backup[i]; | |
| 2482 s->first_slice_line=1; | |
| 2483 s->mb_x= s->resync_mb_x; | |
| 2484 s->mb_y= s->resync_mb_y; | |
| 2485 s->qscale= qscale; | |
| 2486 h263_dc_scale(s); | |
| 2487 | |
| 2488 if(s->decoding_error==DECODING_DESYNC) return -1; | |
| 2489 } | |
| 2490 | |
| 2491 mb_type= s->mb_type[xy]; | |
| 2492 if(s->decoding_error) | |
| 2493 cbp=0; | |
| 2494 else | |
| 2495 cbp = s->cbp_table[xy]; | |
| 2496 | |
| 2497 if(s->decoding_error!=DECODING_ACDC_LOST && s->qscale_table[xy] != s->qscale){ | |
| 2498 s->qscale= s->qscale_table[xy]; | |
| 2499 h263_dc_scale(s); | |
| 2500 } | |
| 2501 | |
| 2502 if (s->pict_type == P_TYPE || s->pict_type==S_TYPE) { | |
| 2503 int i; | |
| 2504 for(i=0; i<4; i++){ | |
| 2505 s->mv[0][i][0] = s->motion_val[ s->block_index[i] ][0]; | |
| 2506 s->mv[0][i][1] = s->motion_val[ s->block_index[i] ][1]; | |
| 2507 } | |
| 2508 s->mb_intra = mb_type&MB_TYPE_INTRA; | |
| 2509 | |
| 2510 if (mb_type&MB_TYPE_SKIPED) { | |
| 2511 /* skip mb */ | |
| 2512 for(i=0;i<6;i++) | |
| 2513 s->block_last_index[i] = -1; | |
| 2514 s->mv_dir = MV_DIR_FORWARD; | |
| 2515 s->mv_type = MV_TYPE_16X16; | |
| 2516 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE){ | |
| 2517 s->mcsel=1; | |
| 2518 s->mb_skiped = 0; | |
| 2519 }else{ | |
| 2520 s->mcsel=0; | |
| 2521 s->mb_skiped = 1; | |
| 2522 } | |
| 2523 return 0; | |
| 2524 }else if(s->mb_intra && s->decoding_error!=DECODING_ACDC_LOST){ | |
| 2525 s->ac_pred = s->pred_dir_table[xy]>>7; | |
| 2526 | |
| 2527 /* decode each block */ | |
| 2528 for (i = 0; i < 6; i++) { | |
| 575 | 2529 int ret= mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 1); |
| 453 | 2530 if(ret==DECODING_AC_LOST){ |
| 2531 fprintf(stderr, "texture corrupted at %d %d (trying to continue with mc/dc only)\n", s->mb_x, s->mb_y); | |
| 2532 s->decoding_error=DECODING_AC_LOST; | |
| 2533 cbp=0; | |
| 2534 }else if(ret==DECODING_ACDC_LOST){ | |
| 2535 fprintf(stderr, "dc corrupted at %d %d (trying to continue with mc only)\n", s->mb_x, s->mb_y); | |
| 2536 s->decoding_error=DECODING_ACDC_LOST; | |
| 2537 break; | |
| 2538 } | |
| 2539 } | |
| 2540 }else if(!s->mb_intra){ | |
| 2541 // s->mcsel= 0; //FIXME do we need to init that | |
| 2542 | |
| 2543 s->mv_dir = MV_DIR_FORWARD; | |
| 2544 if (mb_type&MB_TYPE_INTER4V) { | |
| 2545 s->mv_type = MV_TYPE_8X8; | |
| 2546 } else { | |
| 2547 s->mv_type = MV_TYPE_16X16; | |
| 2548 } | |
| 2549 if(s->decoding_error==0 && cbp){ | |
| 2550 /* decode each block */ | |
| 2551 for (i = 0; i < 6; i++) { | |
| 575 | 2552 int ret= mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 0); |
| 453 | 2553 if(ret==DECODING_AC_LOST){ |
| 2554 fprintf(stderr, "texture corrupted at %d %d (trying to continue with mc/dc only)\n", s->mb_x, s->mb_y); | |
| 2555 s->decoding_error=DECODING_AC_LOST; | |
| 2556 break; | |
| 2557 } | |
| 2558 } | |
| 2559 } | |
| 2560 } | |
| 2561 } else { /* I-Frame */ | |
| 2562 int i; | |
| 2563 s->mb_intra = 1; | |
| 2564 s->ac_pred = s->pred_dir_table[xy]>>7; | |
| 2565 | |
| 2566 /* decode each block */ | |
| 2567 for (i = 0; i < 6; i++) { | |
| 575 | 2568 int ret= mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 1); |
| 453 | 2569 if(ret==DECODING_AC_LOST){ |
| 2570 fprintf(stderr, "texture corrupted at %d %d (trying to continue with dc only)\n", s->mb_x, s->mb_y); | |
| 2571 s->decoding_error=DECODING_AC_LOST; | |
| 2572 cbp=0; | |
| 2573 }else if(ret==DECODING_ACDC_LOST){ | |
| 2574 fprintf(stderr, "dc corrupted at %d %d\n", s->mb_x, s->mb_y); | |
| 2575 return -1; | |
| 2576 } | |
| 2577 } | |
| 2578 } | |
| 290 | 2579 |
| 2580 return 0; | |
| 2581 } | |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2582 #if 0 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2583 static inline void decode_interlaced_info(MpegEncContext *s, int cbp, int mb_type){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2584 s->mv_type= 0; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2585 if(!s->progressive_sequence){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2586 if(cbp || s->mb_intra) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2587 s->interlaced_dct= get_bits1(&s->gb); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2588 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2589 if(!s->mb_intra){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2590 if( s->pict_type==P_TYPE //FIXME check that 4MV is forbidden |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2591 || (s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE && !s->mcsel) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2592 || (s->pict_type==B_TYPE && mb_type!=0) ){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2593 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2594 if(get_bits1(&s->gb)){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2595 s->mv_type= MV_TYPE_FIELD; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2596 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2597 if( s->pict_type==P_TYPE |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2598 || (s->pict_type==B_TYPE && mb_type!=2)){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2599 s->field_select[0][0]= get_bits1(&s->gb); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2600 s->field_select[0][1]= get_bits1(&s->gb); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2601 } |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2602 if(s->pict_type==B_TYPE && mb_type!=3){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2603 s->field_select[1][0]= get_bits1(&s->gb); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2604 s->field_select[1][1]= get_bits1(&s->gb); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2605 } |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2606 }else |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2607 s->mv_type= 0; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2608 } |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2609 } |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2610 } |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2611 } |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2612 #endif |
| 453 | 2613 |
| 0 | 2614 int h263_decode_mb(MpegEncContext *s, |
| 2615 DCTELEM block[6][64]) | |
| 2616 { | |
| 2617 int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant; | |
| 2618 INT16 *mot_val; | |
| 110 | 2619 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
|
2620 |
| 523 | 2621 if(s->mb_x==0) PRINT_MB_TYPE("\n"); |
| 359 | 2622 |
| 290 | 2623 if(s->resync_marker){ |
| 453 | 2624 if(s->resync_mb_x == s->mb_x && s->resync_mb_y+1 == s->mb_y){ |
| 290 | 2625 s->first_slice_line=0; |
| 2626 } | |
| 2627 } | |
| 2628 | |
| 453 | 2629 if(s->data_partitioning && s->pict_type!=B_TYPE) |
| 2630 return mpeg4_decode_partitioned_mb(s, block); | |
| 2631 | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2632 if (s->pict_type == P_TYPE || s->pict_type==S_TYPE) { |
| 21 | 2633 if (get_bits1(&s->gb)) { |
| 0 | 2634 /* skip mb */ |
| 2635 s->mb_intra = 0; | |
| 2636 for(i=0;i<6;i++) | |
| 2637 s->block_last_index[i] = -1; | |
| 2638 s->mv_dir = MV_DIR_FORWARD; | |
| 2639 s->mv_type = MV_TYPE_16X16; | |
| 255 | 2640 if(s->pict_type==S_TYPE && s->vol_sprite_usage==GMC_SPRITE){ |
| 2641 const int a= s->sprite_warping_accuracy; | |
| 2642 // int l = (1 << (s->f_code - 1)) * 32; | |
| 359 | 2643 PRINT_MB_TYPE("G"); |
| 255 | 2644 s->mcsel=1; |
| 301 | 2645 if(s->divx_version==500 && s->divx_build==413){ |
| 2646 s->mv[0][0][0] = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
| 2647 s->mv[0][0][1] = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); | |
| 2648 }else{ | |
| 2649 s->mv[0][0][0] = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2650 s->mv[0][0][1] = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2651 } | |
| 255 | 2652 /* if (s->mv[0][0][0] < -l) s->mv[0][0][0]= -l; |
| 2653 else if (s->mv[0][0][0] >= l) s->mv[0][0][0]= l-1; | |
| 2654 if (s->mv[0][0][1] < -l) s->mv[0][0][1]= -l; | |
| 2655 else if (s->mv[0][0][1] >= l) s->mv[0][0][1]= l-1;*/ | |
| 2656 | |
| 2657 s->mb_skiped = 0; | |
| 2658 }else{ | |
| 359 | 2659 PRINT_MB_TYPE("S"); |
| 255 | 2660 s->mcsel=0; |
| 2661 s->mv[0][0][0] = 0; | |
| 2662 s->mv[0][0][1] = 0; | |
| 2663 s->mb_skiped = 1; | |
| 2664 } | |
| 0 | 2665 return 0; |
| 2666 } | |
| 544 | 2667 cbpc = get_vlc2(&s->gb, inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2); |
| 144 | 2668 //fprintf(stderr, "\tCBPC: %d", cbpc); |
| 0 | 2669 if (cbpc < 0) |
| 2670 return -1; | |
| 161 | 2671 if (cbpc > 20) |
| 2672 cbpc+=3; | |
| 2673 else if (cbpc == 20) | |
| 2674 fprintf(stderr, "Stuffing !"); | |
| 144 | 2675 |
| 0 | 2676 dquant = cbpc & 8; |
| 2677 s->mb_intra = ((cbpc & 4) != 0); | |
| 262 | 2678 if (s->mb_intra) goto intra; |
| 2679 | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2680 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
|
2681 s->mcsel= get_bits1(&s->gb); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
2682 else s->mcsel= 0; |
| 544 | 2683 cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 0 | 2684 cbp = (cbpc & 3) | ((cbpy ^ 0xf) << 2); |
| 2685 if (dquant) { | |
| 2686 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2687 if (s->qscale < 1) | |
| 2688 s->qscale = 1; | |
| 2689 else if (s->qscale > 31) | |
| 2690 s->qscale = 31; | |
| 290 | 2691 h263_dc_scale(s); |
| 0 | 2692 } |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2693 if((!s->progressive_sequence) && (cbp || s->workaround_bugs==2)) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2694 s->interlaced_dct= get_bits1(&s->gb); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2695 |
| 0 | 2696 s->mv_dir = MV_DIR_FORWARD; |
| 2697 if ((cbpc & 16) == 0) { | |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2698 if(s->mcsel){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2699 const int a= s->sprite_warping_accuracy; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2700 PRINT_MB_TYPE("G"); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2701 /* 16x16 global motion prediction */ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2702 s->mv_type = MV_TYPE_16X16; |
| 255 | 2703 // int l = (1 << (s->f_code - 1)) * 32; |
| 301 | 2704 if(s->divx_version==500 && s->divx_build==413){ |
| 2705 mx = s->sprite_offset[0][0] / (1<<(a-s->quarter_sample)); | |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2706 my = s->sprite_offset[0][1] / (1<<(a-s->quarter_sample)); |
| 301 | 2707 }else{ |
| 2708 mx = RSHIFT(s->sprite_offset[0][0], a-s->quarter_sample); | |
| 2709 my = RSHIFT(s->sprite_offset[0][1], a-s->quarter_sample); | |
| 2710 } | |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2711 // int l = (1 << (s->f_code - 1)) * 32; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2712 s->mv[0][0][0] = mx; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2713 s->mv[0][0][1] = my; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2714 }else if((!s->progressive_sequence) && get_bits1(&s->gb)){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2715 PRINT_MB_TYPE("f"); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2716 /* 16x8 field motion prediction */ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2717 s->mv_type= MV_TYPE_FIELD; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2718 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2719 s->field_select[0][0]= get_bits1(&s->gb); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2720 s->field_select[0][1]= get_bits1(&s->gb); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2721 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2722 h263_pred_motion(s, 0, &pred_x, &pred_y); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2723 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2724 for(i=0; i<2; i++){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2725 mx = h263_decode_motion(s, pred_x, s->f_code); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2726 if (mx >= 0xffff) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2727 return -1; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2728 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2729 my = h263_decode_motion(s, pred_y/2, s->f_code); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2730 if (my >= 0xffff) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2731 return -1; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2732 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2733 s->mv[0][i][0] = mx; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2734 s->mv[0][i][1] = my*2; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2735 } |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2736 }else{ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2737 PRINT_MB_TYPE("P"); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2738 /* 16x16 motion prediction */ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2739 s->mv_type = MV_TYPE_16X16; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2740 h263_pred_motion(s, 0, &pred_x, &pred_y); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2741 if (s->umvplus_dec) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2742 mx = h263p_decode_umotion(s, pred_x); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2743 else |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2744 mx = h263_decode_motion(s, pred_x, s->f_code); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2745 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2746 if (mx >= 0xffff) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2747 return -1; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2748 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2749 if (s->umvplus_dec) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2750 my = h263p_decode_umotion(s, pred_y); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2751 else |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2752 my = h263_decode_motion(s, pred_y, s->f_code); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2753 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2754 if (my >= 0xffff) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2755 return -1; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2756 s->mv[0][0][0] = mx; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2757 s->mv[0][0][1] = my; |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2758 |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2759 if (s->umvplus_dec && (mx - pred_x) == 1 && (my - pred_y) == 1) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2760 skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */ |
| 255 | 2761 } |
| 0 | 2762 } else { |
| 359 | 2763 PRINT_MB_TYPE("4"); |
| 0 | 2764 s->mv_type = MV_TYPE_8X8; |
| 2765 for(i=0;i<4;i++) { | |
| 2766 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
|
2767 if (s->umvplus_dec) |
| 78 | 2768 mx = h263p_decode_umotion(s, pred_x); |
| 2769 else | |
| 262 | 2770 mx = h263_decode_motion(s, pred_x, s->f_code); |
| 0 | 2771 if (mx >= 0xffff) |
| 2772 return -1; | |
| 78 | 2773 |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2774 if (s->umvplus_dec) |
| 78 | 2775 my = h263p_decode_umotion(s, pred_y); |
| 2776 else | |
| 262 | 2777 my = h263_decode_motion(s, pred_y, s->f_code); |
| 0 | 2778 if (my >= 0xffff) |
| 2779 return -1; | |
| 2780 s->mv[0][i][0] = mx; | |
| 2781 s->mv[0][i][1] = my; | |
|
79
82e579c37bc3
Moved some H.263+ variables to MpegEncContext to be thread-safe.
pulento
parents:
78
diff
changeset
|
2782 if (s->umvplus_dec && (mx - pred_x) == 1 && (my - pred_y) == 1) |
| 78 | 2783 skip_bits1(&s->gb); /* Bit stuffing to prevent PSC */ |
| 0 | 2784 mot_val[0] = mx; |
| 2785 mot_val[1] = my; | |
| 2786 } | |
| 2787 } | |
| 262 | 2788 } else if(s->pict_type==B_TYPE) { |
| 2789 int modb1; // first bit of modb | |
| 2790 int modb2; // second bit of modb | |
| 2791 int mb_type; | |
| 324 | 2792 uint16_t time_pp; |
| 2793 uint16_t time_pb; | |
| 262 | 2794 int xy; |
| 2795 | |
| 2796 s->mb_intra = 0; //B-frames never contain intra blocks | |
| 2797 s->mcsel=0; // ... true gmc blocks | |
| 2798 | |
| 2799 if(s->mb_x==0){ | |
| 2800 s->last_mv[0][0][0]= | |
| 2801 s->last_mv[0][0][1]= | |
| 2802 s->last_mv[1][0][0]= | |
| 2803 s->last_mv[1][0][1]= 0; | |
| 2804 } | |
| 2805 | |
| 2806 /* if we skipped it in the future P Frame than skip it now too */ | |
| 2807 s->mb_skiped= s->mbskip_table[s->mb_y * s->mb_width + s->mb_x]; // Note, skiptab=0 if last was GMC | |
| 2808 | |
| 2809 if(s->mb_skiped){ | |
| 2810 /* skip mb */ | |
| 2811 for(i=0;i<6;i++) | |
| 2812 s->block_last_index[i] = -1; | |
| 2813 | |
| 2814 s->mv_dir = MV_DIR_FORWARD; | |
| 2815 s->mv_type = MV_TYPE_16X16; | |
| 2816 s->mv[0][0][0] = 0; | |
| 2817 s->mv[0][0][1] = 0; | |
| 2818 s->mv[1][0][0] = 0; | |
| 2819 s->mv[1][0][1] = 0; | |
| 523 | 2820 PRINT_MB_TYPE("s"); |
| 262 | 2821 return 0; |
| 2822 } | |
| 2823 | |
| 2824 modb1= get_bits1(&s->gb); | |
| 2825 if(modb1==0){ | |
| 2826 modb2= get_bits1(&s->gb); | |
| 544 | 2827 mb_type= get_vlc2(&s->gb, mb_type_b_vlc.table, MB_TYPE_B_VLC_BITS, 1); |
| 262 | 2828 if(modb2==0) cbp= get_bits(&s->gb, 6); |
| 2829 else cbp=0; | |
| 2830 if (mb_type && cbp) { | |
| 2831 if(get_bits1(&s->gb)){ | |
| 2832 s->qscale +=get_bits1(&s->gb)*4 - 2; | |
| 2833 if (s->qscale < 1) | |
| 2834 s->qscale = 1; | |
| 2835 else if (s->qscale > 31) | |
| 2836 s->qscale = 31; | |
| 290 | 2837 h263_dc_scale(s); |
| 262 | 2838 } |
| 2839 } | |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2840 // decode_interlaced_info(s, cbp, mb_type); |
| 262 | 2841 }else{ |
| 2842 mb_type=4; //like 0 but no vectors coded | |
| 2843 cbp=0; | |
| 2844 } | |
| 2845 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 | |
| 2846 mx=my=0; //for case 4, we could put this to the mb_type=4 but than gcc compains about uninitalized mx/my | |
| 2847 switch(mb_type) | |
| 2848 { | |
| 324 | 2849 case 0: /* direct */ |
| 262 | 2850 mx = h263_decode_motion(s, 0, 1); |
| 2851 my = h263_decode_motion(s, 0, 1); | |
| 324 | 2852 case 4: /* direct with mx=my=0 */ |
| 262 | 2853 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT; |
| 266 | 2854 xy= s->block_index[0]; |
| 324 | 2855 time_pp= s->pp_time; |
| 2856 time_pb= time_pp - s->bp_time; | |
| 262 | 2857 //if(time_pp>3000 )printf("%d %d ", time_pp, time_pb); |
| 2858 //FIXME avoid divides | |
| 2859 s->mv[0][0][0] = s->motion_val[xy][0]*time_pb/time_pp + mx; | |
| 2860 s->mv[0][0][1] = s->motion_val[xy][1]*time_pb/time_pp + my; | |
| 2861 s->mv[1][0][0] = mx ? s->mv[0][0][0] - s->motion_val[xy][0] | |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
2862 : s->motion_val[xy][0]*(time_pb - time_pp)/time_pp; |
| 262 | 2863 s->mv[1][0][1] = my ? s->mv[0][0][1] - s->motion_val[xy][1] |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
2864 : s->motion_val[xy][1]*(time_pb - time_pp)/time_pp; |
| 598 | 2865 if(s->non_b_mv4_table[xy]){ |
| 2866 int i; | |
| 2867 s->mv_type = MV_TYPE_8X8; | |
| 2868 for(i=1; i<4; i++){ | |
| 2869 xy= s->block_index[i]; | |
| 2870 s->mv[0][i][0] = s->motion_val[xy][0]*time_pb/time_pp + mx; | |
| 2871 s->mv[0][i][1] = s->motion_val[xy][1]*time_pb/time_pp + my; | |
| 2872 s->mv[1][i][0] = mx ? s->mv[0][i][0] - s->motion_val[xy][0] | |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
2873 : s->motion_val[xy][0]*(time_pb - time_pp)/time_pp; |
| 598 | 2874 s->mv[1][i][1] = my ? s->mv[0][i][1] - s->motion_val[xy][1] |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
2875 : s->motion_val[xy][1]*(time_pb - time_pp)/time_pp; |
| 598 | 2876 } |
| 2877 PRINT_MB_TYPE("4"); | |
| 2878 }else{ | |
| 2879 PRINT_MB_TYPE(mb_type==4 ? "D" : "S"); | |
| 2880 } | |
| 262 | 2881 /* s->mv[0][0][0] = |
| 2882 s->mv[0][0][1] = | |
| 2883 s->mv[1][0][0] = | |
| 2884 s->mv[1][0][1] = 1000;*/ | |
| 2885 break; | |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2886 //FIXME additional MVs for interlaced stuff |
| 262 | 2887 case 1: |
| 2888 s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD; | |
| 2889 mx = h263_decode_motion(s, s->last_mv[0][0][0], s->f_code); | |
| 2890 my = h263_decode_motion(s, s->last_mv[0][0][1], s->f_code); | |
| 2891 s->last_mv[0][0][0]= s->mv[0][0][0] = mx; | |
| 2892 s->last_mv[0][0][1]= s->mv[0][0][1] = my; | |
| 2893 | |
| 2894 mx = h263_decode_motion(s, s->last_mv[1][0][0], s->b_code); | |
| 2895 my = h263_decode_motion(s, s->last_mv[1][0][1], s->b_code); | |
| 2896 s->last_mv[1][0][0]= s->mv[1][0][0] = mx; | |
| 2897 s->last_mv[1][0][1]= s->mv[1][0][1] = my; | |
| 359 | 2898 PRINT_MB_TYPE("i"); |
| 262 | 2899 break; |
| 2900 case 2: | |
| 2901 s->mv_dir = MV_DIR_BACKWARD; | |
| 2902 mx = h263_decode_motion(s, s->last_mv[1][0][0], s->b_code); | |
| 2903 my = h263_decode_motion(s, s->last_mv[1][0][1], s->b_code); | |
| 2904 s->last_mv[1][0][0]= s->mv[1][0][0] = mx; | |
| 2905 s->last_mv[1][0][1]= s->mv[1][0][1] = my; | |
| 359 | 2906 PRINT_MB_TYPE("B"); |
| 262 | 2907 break; |
| 2908 case 3: | |
| 2909 s->mv_dir = MV_DIR_FORWARD; | |
| 2910 mx = h263_decode_motion(s, s->last_mv[0][0][0], s->f_code); | |
| 2911 my = h263_decode_motion(s, s->last_mv[0][0][1], s->f_code); | |
| 2912 s->last_mv[0][0][0]= s->mv[0][0][0] = mx; | |
| 2913 s->last_mv[0][0][1]= s->mv[0][0][1] = my; | |
| 359 | 2914 PRINT_MB_TYPE("F"); |
| 262 | 2915 break; |
|
364
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
2916 default: |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
2917 printf("illegal MB_type\n"); |
|
6b6332e7008a
segfault fix for b-frame encoding with height%16!=0
michaelni
parents:
360
diff
changeset
|
2918 return -1; |
| 262 | 2919 } |
| 2920 } else { /* I-Frame */ | |
| 544 | 2921 cbpc = get_vlc2(&s->gb, intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 1); |
| 262 | 2922 if (cbpc < 0) |
| 2923 return -1; | |
| 2924 dquant = cbpc & 4; | |
| 2925 s->mb_intra = 1; | |
| 2926 intra: | |
| 0 | 2927 s->ac_pred = 0; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2928 if (s->h263_pred || s->h263_aic) { |
| 21 | 2929 s->ac_pred = get_bits1(&s->gb); |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2930 if (s->ac_pred && s->h263_aic) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
2931 s->h263_aic_dir = get_bits1(&s->gb); |
| 0 | 2932 } |
| 591 | 2933 PRINT_MB_TYPE(s->ac_pred ? "A" : "I"); |
| 2934 | |
| 544 | 2935 cbpy = get_vlc2(&s->gb, cbpy_vlc.table, CBPY_VLC_BITS, 1); |
| 453 | 2936 if(cbpy<0) return -1; |
| 0 | 2937 cbp = (cbpc & 3) | (cbpy << 2); |
| 2938 if (dquant) { | |
| 2939 s->qscale += quant_tab[get_bits(&s->gb, 2)]; | |
| 2940 if (s->qscale < 1) | |
| 2941 s->qscale = 1; | |
| 2942 else if (s->qscale > 31) | |
| 2943 s->qscale = 31; | |
| 290 | 2944 h263_dc_scale(s); |
| 0 | 2945 } |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2946 if(!s->progressive_sequence) |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
2947 s->interlaced_dct= get_bits1(&s->gb); |
| 575 | 2948 |
| 2949 /* decode each block */ | |
| 2950 if (s->h263_pred) { | |
| 2951 for (i = 0; i < 6; i++) { | |
| 2952 if (mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 1) < 0) | |
| 2953 return -1; | |
| 2954 } | |
| 2955 } else { | |
| 2956 for (i = 0; i < 6; i++) { | |
| 2957 if (h263_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1) < 0) | |
| 2958 return -1; | |
| 2959 } | |
| 2960 } | |
| 2961 return 0; | |
| 0 | 2962 } |
| 2963 | |
| 2964 /* decode each block */ | |
| 2965 if (s->h263_pred) { | |
| 575 | 2966 for (i = 0; i < 6; i++) { |
| 2967 if (mpeg4_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1, 0) < 0) | |
| 0 | 2968 return -1; |
| 575 | 2969 } |
| 0 | 2970 } else { |
| 575 | 2971 for (i = 0; i < 6; i++) { |
| 2972 if (h263_decode_block(s, block[i], i, (cbp >> (5 - i)) & 1) < 0) | |
| 0 | 2973 return -1; |
| 575 | 2974 } |
| 0 | 2975 } |
| 2976 return 0; | |
| 2977 } | |
| 2978 | |
| 262 | 2979 static int h263_decode_motion(MpegEncContext * s, int pred, int f_code) |
| 0 | 2980 { |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
2981 int code, val, sign, shift, l; |
| 0 | 2982 |
| 544 | 2983 code = get_vlc2(&s->gb, mv_vlc.table, MV_VLC_BITS, 2); |
| 0 | 2984 if (code < 0) |
| 2985 return 0xffff; | |
| 2986 | |
| 2987 if (code == 0) | |
| 2988 return pred; | |
| 21 | 2989 sign = get_bits1(&s->gb); |
| 262 | 2990 shift = f_code - 1; |
| 0 | 2991 val = (code - 1) << shift; |
| 2992 if (shift > 0) | |
| 2993 val |= get_bits(&s->gb, shift); | |
| 2994 val++; | |
| 2995 if (sign) | |
| 2996 val = -val; | |
| 2997 val += pred; | |
| 475 | 2998 |
| 0 | 2999 /* modulo decoding */ |
| 3000 if (!s->h263_long_vectors) { | |
| 262 | 3001 l = (1 << (f_code - 1)) * 32; |
| 0 | 3002 if (val < -l) { |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
3003 val += l<<1; |
| 0 | 3004 } else if (val >= l) { |
|
656
e47fa3e3f2d5
statistics for forw & back p-MBs instead of just one counter for both
michaelni
parents:
654
diff
changeset
|
3005 val -= l<<1; |
| 0 | 3006 } |
| 3007 } else { | |
| 3008 /* horrible h263 long vector mode */ | |
| 3009 if (pred < -31 && val < -63) | |
| 3010 val += 64; | |
| 3011 if (pred > 32 && val > 63) | |
| 3012 val -= 64; | |
|
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
3013 |
| 0 | 3014 } |
| 3015 return val; | |
| 3016 } | |
| 3017 | |
| 78 | 3018 /* Decodes RVLC of H.263+ UMV */ |
| 3019 static int h263p_decode_umotion(MpegEncContext * s, int pred) | |
| 3020 { | |
| 3021 int code = 0, sign; | |
| 3022 | |
| 3023 if (get_bits1(&s->gb)) /* Motion difference = 0 */ | |
| 3024 return pred; | |
| 3025 | |
| 3026 code = 2 + get_bits1(&s->gb); | |
| 3027 | |
| 3028 while (get_bits1(&s->gb)) | |
| 3029 { | |
| 3030 code <<= 1; | |
| 3031 code += get_bits1(&s->gb); | |
| 3032 } | |
| 3033 sign = code & 1; | |
| 3034 code >>= 1; | |
| 3035 | |
| 3036 code = (sign) ? (pred - code) : (pred + code); | |
| 3037 #ifdef DEBUG | |
| 3038 fprintf(stderr,"H.263+ UMV Motion = %d\n", code); | |
| 3039 #endif | |
| 3040 return code; | |
| 3041 | |
| 3042 } | |
| 3043 | |
| 0 | 3044 static int h263_decode_block(MpegEncContext * s, DCTELEM * block, |
| 3045 int n, int coded) | |
| 3046 { | |
| 3047 int code, level, i, j, last, run; | |
| 3048 RLTable *rl = &rl_inter; | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3049 const UINT8 *scan_table; |
| 0 | 3050 |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3051 scan_table = zigzag_direct; |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
3052 if (s->h263_aic && s->mb_intra) { |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3053 rl = &rl_intra_aic; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3054 i = 0; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3055 if (s->ac_pred) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3056 if (s->h263_aic_dir) |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3057 scan_table = ff_alternate_vertical_scan; /* left */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3058 else |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3059 scan_table = ff_alternate_horizontal_scan; /* top */ |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3060 } |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3061 } else if (s->mb_intra) { |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3062 /* DC coef */ |
| 0 | 3063 if (s->h263_rv10 && s->rv10_version == 3 && s->pict_type == I_TYPE) { |
| 3064 int component, diff; | |
| 3065 component = (n <= 3 ? 0 : n - 4 + 1); | |
| 3066 level = s->last_dc[component]; | |
| 3067 if (s->rv10_first_dc_coded[component]) { | |
| 3068 diff = rv_decode_dc(s, n); | |
| 3069 if (diff == 0xffff) | |
| 3070 return -1; | |
| 3071 level += diff; | |
| 3072 level = level & 0xff; /* handle wrap round */ | |
| 3073 s->last_dc[component] = level; | |
| 3074 } else { | |
| 3075 s->rv10_first_dc_coded[component] = 1; | |
| 3076 } | |
| 3077 } else { | |
| 3078 level = get_bits(&s->gb, 8); | |
| 3079 if (level == 255) | |
| 3080 level = 128; | |
| 3081 } | |
| 3082 block[0] = level; | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3083 i = 1; |
| 0 | 3084 } else { |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3085 i = 0; |
| 0 | 3086 } |
| 3087 if (!coded) { | |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
3088 if (s->mb_intra && s->h263_aic) |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
3089 goto not_coded; |
| 0 | 3090 s->block_last_index[n] = i - 1; |
| 3091 return 0; | |
| 3092 } | |
| 3093 | |
| 3094 for(;;) { | |
| 544 | 3095 code = get_vlc2(&s->gb, rl->vlc.table, TEX_VLC_BITS, 2); |
| 0 | 3096 if (code < 0) |
| 3097 return -1; | |
| 3098 if (code == rl->n) { | |
| 3099 /* escape */ | |
| 21 | 3100 last = get_bits1(&s->gb); |
| 0 | 3101 run = get_bits(&s->gb, 6); |
| 3102 level = (INT8)get_bits(&s->gb, 8); | |
| 3103 if (s->h263_rv10 && level == -128) { | |
| 3104 /* XXX: should patch encoder too */ | |
| 3105 level = get_bits(&s->gb, 12); | |
| 617 | 3106 level= (level + ((-1)<<11)) ^ ((-1)<<11); //sign extension |
| 0 | 3107 } |
| 3108 } else { | |
| 3109 run = rl->table_run[code]; | |
| 3110 level = rl->table_level[code]; | |
| 3111 last = code >= rl->last; | |
| 21 | 3112 if (get_bits1(&s->gb)) |
| 0 | 3113 level = -level; |
| 3114 } | |
| 3115 i += run; | |
| 3116 if (i >= 64) | |
| 3117 return -1; | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3118 j = scan_table[i]; |
| 0 | 3119 block[j] = level; |
| 3120 if (last) | |
| 3121 break; | |
| 3122 i++; | |
| 3123 } | |
|
249
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
3124 not_coded: |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
3125 if (s->mb_intra && s->h263_aic) { |
|
42a0b7b16738
- Bug fixes in H.263+ Advanced INTRA Coding decoder.
pulento
parents:
248
diff
changeset
|
3126 h263_pred_acdc(s, block, n); |
|
265
4e9e728021d8
use ac prediction in mpeg4 encoding (5% smaller intra-blocks/keyframes)
michaelni
parents:
264
diff
changeset
|
3127 i = 63; |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3128 } |
| 0 | 3129 s->block_last_index[n] = i; |
| 3130 return 0; | |
| 3131 } | |
| 3132 | |
| 453 | 3133 static inline int mpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr) |
| 0 | 3134 { |
| 3135 int level, pred, code; | |
| 3136 UINT16 *dc_val; | |
| 3137 | |
| 3138 if (n < 4) | |
| 544 | 3139 code = get_vlc2(&s->gb, dc_lum.table, DC_VLC_BITS, 1); |
| 0 | 3140 else |
| 544 | 3141 code = get_vlc2(&s->gb, dc_chrom.table, DC_VLC_BITS, 1); |
| 453 | 3142 if (code < 0 || code > 9 /* && s->nbit<9 */){ |
| 3143 fprintf(stderr, "illegal dc vlc\n"); | |
| 0 | 3144 return -1; |
| 453 | 3145 } |
| 0 | 3146 if (code == 0) { |
| 3147 level = 0; | |
| 3148 } else { | |
| 3149 level = get_bits(&s->gb, code); | |
| 3150 if ((level >> (code - 1)) == 0) /* if MSB not set it is negative*/ | |
| 3151 level = - (level ^ ((1 << code) - 1)); | |
| 453 | 3152 if (code > 8){ |
| 3153 if(get_bits1(&s->gb)==0){ /* marker */ | |
| 3154 fprintf(stderr, "dc marker bit missing\n"); | |
| 3155 return -1; | |
| 3156 } | |
| 3157 } | |
| 0 | 3158 } |
| 3159 | |
| 498 | 3160 pred = ff_mpeg4_pred_dc(s, n, &dc_val, dir_ptr); |
| 0 | 3161 level += pred; |
| 3162 if (level < 0) | |
| 3163 level = 0; | |
| 3164 if (n < 4) { | |
| 3165 *dc_val = level * s->y_dc_scale; | |
| 3166 } else { | |
| 3167 *dc_val = level * s->c_dc_scale; | |
| 3168 } | |
| 3169 return level; | |
| 3170 } | |
| 3171 | |
| 453 | 3172 /** |
| 3173 * decode a block | |
| 3174 * returns 0 if everything went ok | |
| 3175 * returns DECODING_AC_LOST if an error was detected during AC decoding | |
| 3176 * returns DECODING_ACDC_LOST if an error was detected during DC decoding | |
| 3177 */ | |
| 3178 static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block, | |
| 575 | 3179 int n, int coded, int intra) |
| 0 | 3180 { |
| 549 | 3181 int level, i, last, run; |
| 0 | 3182 int dc_pred_dir; |
| 575 | 3183 RLTable * rl; |
| 3184 RL_VLC_ELEM * rl_vlc; | |
| 3185 const UINT8 * scan_table; | |
| 549 | 3186 int qmul, qadd; |
| 0 | 3187 |
| 575 | 3188 if(intra) { |
| 0 | 3189 /* DC coef */ |
| 453 | 3190 if(s->data_partitioning && s->pict_type!=B_TYPE){ |
| 3191 level = s->dc_val[0][ s->block_index[n] ]; | |
| 3192 if(n<4) level= (level + (s->y_dc_scale>>1))/s->y_dc_scale; //FIXME optimizs | |
| 3193 else level= (level + (s->c_dc_scale>>1))/s->c_dc_scale; | |
| 3194 dc_pred_dir= (s->pred_dir_table[s->mb_x + s->mb_y*s->mb_width]<<n)&32; | |
| 3195 }else{ | |
| 3196 level = mpeg4_decode_dc(s, n, &dc_pred_dir); | |
| 3197 if (level < 0) | |
| 3198 return DECODING_ACDC_LOST; | |
| 3199 } | |
| 0 | 3200 block[0] = level; |
| 549 | 3201 i = 0; |
| 0 | 3202 if (!coded) |
| 3203 goto not_coded; | |
| 3204 rl = &rl_intra; | |
| 549 | 3205 rl_vlc = rl_intra.rl_vlc[0]; |
| 0 | 3206 if (s->ac_pred) { |
| 3207 if (dc_pred_dir == 0) | |
| 3208 scan_table = ff_alternate_vertical_scan; /* left */ | |
| 3209 else | |
| 3210 scan_table = ff_alternate_horizontal_scan; /* top */ | |
| 3211 } else { | |
| 3212 scan_table = zigzag_direct; | |
| 3213 } | |
| 549 | 3214 qmul=1; |
| 3215 qadd=0; | |
| 0 | 3216 } else { |
| 549 | 3217 i = -1; |
| 0 | 3218 if (!coded) { |
| 549 | 3219 s->block_last_index[n] = i; |
| 0 | 3220 return 0; |
| 3221 } | |
| 3222 rl = &rl_inter; | |
| 3223 scan_table = zigzag_direct; | |
| 591 | 3224 if(s->mpeg_quant){ |
| 3225 qmul=1; | |
| 3226 qadd=0; | |
| 3227 rl_vlc = rl_inter.rl_vlc[0]; | |
| 3228 }else{ | |
| 3229 qmul = s->qscale << 1; | |
| 3230 qadd = (s->qscale - 1) | 1; | |
| 3231 rl_vlc = rl_inter.rl_vlc[s->qscale]; | |
| 3232 } | |
| 0 | 3233 } |
| 549 | 3234 { |
| 3235 OPEN_READER(re, &s->gb); | |
| 0 | 3236 for(;;) { |
| 549 | 3237 UPDATE_CACHE(re, &s->gb); |
| 3238 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 3239 if (level==0) { | |
| 3240 int cache; | |
| 3241 cache= GET_CACHE(re, &s->gb); | |
| 0 | 3242 /* escape */ |
| 549 | 3243 if (cache&0x80000000) { |
| 3244 if (cache&0x40000000) { | |
| 0 | 3245 /* third escape */ |
| 549 | 3246 SKIP_CACHE(re, &s->gb, 2); |
| 3247 last= SHOW_UBITS(re, &s->gb, 1); SKIP_CACHE(re, &s->gb, 1); | |
| 3248 run= SHOW_UBITS(re, &s->gb, 6); LAST_SKIP_CACHE(re, &s->gb, 6); | |
| 3249 SKIP_COUNTER(re, &s->gb, 2+1+6); | |
| 3250 UPDATE_CACHE(re, &s->gb); | |
| 3251 | |
| 3252 if(SHOW_UBITS(re, &s->gb, 1)==0){ | |
| 453 | 3253 fprintf(stderr, "1. marker bit missing in 3. esc\n"); |
| 3254 return DECODING_AC_LOST; | |
| 549 | 3255 }; SKIP_CACHE(re, &s->gb, 1); |
| 3256 | |
| 3257 level= SHOW_SBITS(re, &s->gb, 12); SKIP_CACHE(re, &s->gb, 12); | |
| 3258 | |
| 3259 if(SHOW_UBITS(re, &s->gb, 1)==0){ | |
| 453 | 3260 fprintf(stderr, "2. marker bit missing in 3. esc\n"); |
| 3261 return DECODING_AC_LOST; | |
| 549 | 3262 }; LAST_SKIP_CACHE(re, &s->gb, 1); |
| 3263 | |
| 3264 SKIP_COUNTER(re, &s->gb, 1+12+1); | |
| 3265 | |
| 597 | 3266 if(level*s->qscale>1024 || level*s->qscale<-1024){ |
| 3267 fprintf(stderr, "|level| overflow in 3. esc, qp=%d\n", s->qscale); | |
| 453 | 3268 return DECODING_AC_LOST; |
| 3269 } | |
| 3270 #if 1 | |
| 3271 { | |
| 3272 const int abs_level= ABS(level); | |
| 3273 if(abs_level<=MAX_LEVEL && run<=MAX_RUN && s->error_resilience>=0){ | |
| 498 | 3274 const int run1= run - rl->max_run[last][abs_level] - 1; |
| 453 | 3275 if(abs_level <= rl->max_level[last][run]){ |
| 3276 fprintf(stderr, "illegal 3. esc, vlc encoding possible\n"); | |
| 3277 return DECODING_AC_LOST; | |
| 3278 } | |
| 3279 if(abs_level <= rl->max_level[last][run]*2){ | |
| 3280 fprintf(stderr, "illegal 3. esc, esc 1 encoding possible\n"); | |
| 3281 return DECODING_AC_LOST; | |
| 3282 } | |
| 475 | 3283 if(run1 >= 0 && abs_level <= rl->max_level[last][run1]){ |
| 453 | 3284 fprintf(stderr, "illegal 3. esc, esc 2 encoding possible\n"); |
| 3285 return DECODING_AC_LOST; | |
| 3286 } | |
| 3287 } | |
| 3288 } | |
| 3289 #endif | |
| 549 | 3290 if (level>0) level= level * qmul + qadd; |
| 3291 else level= level * qmul - qadd; | |
| 3292 | |
| 3293 i+= run + 1; | |
| 3294 if(last) i+=192; | |
| 0 | 3295 } else { |
| 3296 /* second escape */ | |
| 549 | 3297 #if MIN_CACHE_BITS < 20 |
| 3298 LAST_SKIP_BITS(re, &s->gb, 2); | |
| 3299 UPDATE_CACHE(re, &s->gb); | |
| 3300 #else | |
| 3301 SKIP_BITS(re, &s->gb, 2); | |
| 3302 #endif | |
| 3303 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 3304 i+= run + rl->max_run[run>>7][level/qmul] +1; //FIXME opt indexing | |
| 3305 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 3306 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 0 | 3307 } |
| 3308 } else { | |
| 3309 /* first escape */ | |
| 549 | 3310 #if MIN_CACHE_BITS < 19 |
| 3311 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 3312 UPDATE_CACHE(re, &s->gb); | |
| 3313 #else | |
| 3314 SKIP_BITS(re, &s->gb, 1); | |
| 3315 #endif | |
| 3316 GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2); | |
| 3317 i+= run; | |
| 3318 level = level + rl->max_level[run>>7][(run-1)&63] * qmul;//FIXME opt indexing | |
| 3319 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 3320 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 0 | 3321 } |
| 3322 } else { | |
| 549 | 3323 i+= run; |
| 3324 level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1); | |
| 3325 LAST_SKIP_BITS(re, &s->gb, 1); | |
| 0 | 3326 } |
| 549 | 3327 if (i > 62){ |
| 3328 i-= 192; | |
| 3329 if(i&(~63)){ | |
| 3330 fprintf(stderr, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y); | |
| 3331 return DECODING_AC_LOST; | |
| 3332 } | |
| 3333 | |
| 3334 block[scan_table[i]] = level; | |
| 0 | 3335 break; |
| 549 | 3336 } |
| 3337 | |
| 3338 block[scan_table[i]] = level; | |
| 0 | 3339 } |
| 549 | 3340 CLOSE_READER(re, &s->gb); |
| 3341 } | |
| 0 | 3342 not_coded: |
| 3343 if (s->mb_intra) { | |
| 3344 mpeg4_pred_ac(s, block, n, dc_pred_dir); | |
| 3345 if (s->ac_pred) { | |
| 549 | 3346 i = 63; /* XXX: not optimal */ |
| 0 | 3347 } |
| 3348 } | |
| 549 | 3349 s->block_last_index[n] = i; |
| 0 | 3350 return 0; |
| 3351 } | |
| 3352 | |
| 3353 /* most is hardcoded. should extend to handle all h263 streams */ | |
| 3354 int h263_decode_picture_header(MpegEncContext *s) | |
| 3355 { | |
| 3356 int format, width, height; | |
| 3357 | |
| 355 | 3358 /* picture start code */ |
| 3359 if (get_bits(&s->gb, 22) != 0x20) { | |
| 3360 fprintf(stderr, "Bad picture start code\n"); | |
| 0 | 3361 return -1; |
| 355 | 3362 } |
| 3363 /* temporal reference */ | |
| 231 | 3364 s->picture_number = get_bits(&s->gb, 8); /* picture timestamp */ |
| 355 | 3365 |
| 3366 /* PTYPE starts here */ | |
| 3367 if (get_bits1(&s->gb) != 1) { | |
| 3368 /* marker */ | |
| 3369 fprintf(stderr, "Bad marker\n"); | |
| 3370 return -1; | |
| 3371 } | |
| 3372 if (get_bits1(&s->gb) != 0) { | |
| 3373 fprintf(stderr, "Bad H263 id\n"); | |
| 0 | 3374 return -1; /* h263 id */ |
| 355 | 3375 } |
| 21 | 3376 skip_bits1(&s->gb); /* split screen off */ |
| 3377 skip_bits1(&s->gb); /* camera off */ | |
| 3378 skip_bits1(&s->gb); /* freeze picture release off */ | |
| 0 | 3379 |
|
155
3c3449bce692
- Bug fix on MV prediction for MPEG4 caused by new H.263 GOB code.
pulento
parents:
154
diff
changeset
|
3380 /* Reset GOB number */ |
|
154
f914f710b8d0
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
pulento
parents:
144
diff
changeset
|
3381 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
|
3382 |
| 0 | 3383 format = get_bits(&s->gb, 3); |
| 355 | 3384 /* |
| 3385 0 forbidden | |
| 3386 1 sub-QCIF | |
| 3387 10 QCIF | |
| 3388 7 extended PTYPE (PLUSPTYPE) | |
| 3389 */ | |
| 0 | 3390 |
| 161 | 3391 if (format != 7 && format != 6) { |
| 0 | 3392 s->h263_plus = 0; |
| 3393 /* H.263v1 */ | |
| 3394 width = h263_format[format][0]; | |
| 3395 height = h263_format[format][1]; | |
| 3396 if (!width) | |
| 3397 return -1; | |
| 161 | 3398 |
| 3399 s->width = width; | |
| 3400 s->height = height; | |
| 21 | 3401 s->pict_type = I_TYPE + get_bits1(&s->gb); |
| 0 | 3402 |
| 21 | 3403 s->unrestricted_mv = get_bits1(&s->gb); |
| 0 | 3404 s->h263_long_vectors = s->unrestricted_mv; |
| 3405 | |
| 355 | 3406 if (get_bits1(&s->gb) != 0) { |
| 3407 fprintf(stderr, "H263 SAC not supported\n"); | |
| 0 | 3408 return -1; /* SAC: off */ |
| 355 | 3409 } |
| 161 | 3410 if (get_bits1(&s->gb) != 0) { |
| 3411 s->mv_type = MV_TYPE_8X8; /* Advanced prediction mode */ | |
| 3412 } | |
| 3413 | |
| 355 | 3414 if (get_bits1(&s->gb) != 0) { |
| 3415 fprintf(stderr, "H263 PB frame not supported\n"); | |
| 0 | 3416 return -1; /* not PB frame */ |
| 355 | 3417 } |
| 0 | 3418 s->qscale = get_bits(&s->gb, 5); |
| 21 | 3419 skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */ |
| 0 | 3420 } else { |
| 161 | 3421 int ufep; |
| 3422 | |
| 0 | 3423 /* H.263v2 */ |
| 161 | 3424 s->h263_plus = 1; |
| 3425 ufep = get_bits(&s->gb, 3); /* Update Full Extended PTYPE */ | |
| 355 | 3426 |
| 3427 /* ufep other than 0 and 1 are reserved */ | |
| 161 | 3428 if (ufep == 1) { |
| 3429 /* OPPTYPE */ | |
| 3430 format = get_bits(&s->gb, 3); | |
| 355 | 3431 dprintf("ufep=1, format: %d\n", format); |
| 161 | 3432 skip_bits(&s->gb,1); /* Custom PCF */ |
| 3433 s->umvplus_dec = get_bits(&s->gb, 1); /* Unrestricted Motion Vector */ | |
| 3434 skip_bits1(&s->gb); /* Syntax-based Arithmetic Coding (SAC) */ | |
| 3435 if (get_bits1(&s->gb) != 0) { | |
| 3436 s->mv_type = MV_TYPE_8X8; /* Advanced prediction mode */ | |
| 3437 } | |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3438 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
|
3439 s->h263_aic = 1; |
|
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3440 } |
| 355 | 3441 |
|
248
56ee684c48bb
- H.263+ decoder support for Advanded INTRA Coding (buggy)
pulento
parents:
245
diff
changeset
|
3442 skip_bits(&s->gb, 7); |
| 355 | 3443 /* these are the 7 bits: (in order of appearence */ |
| 3444 /* Deblocking Filter */ | |
| 3445 /* Slice Structured */ | |
| 3446 /* Reference Picture Selection */ | |
| 3447 /* Independent Segment Decoding */ | |
| 3448 /* Alternative Inter VLC */ | |
| 3449 /* Modified Quantization */ | |
| 3450 /* Prevent start code emulation */ | |
| 3451 | |
| 161 | 3452 skip_bits(&s->gb, 3); /* Reserved */ |
| 355 | 3453 } else if (ufep != 0) { |
| 3454 fprintf(stderr, "Bad UFEP type (%d)\n", ufep); | |
| 0 | 3455 return -1; |
| 355 | 3456 } |
| 161 | 3457 |
| 78 | 3458 /* MPPTYPE */ |
| 355 | 3459 s->pict_type = get_bits(&s->gb, 3) + I_TYPE; |
| 3460 dprintf("pict_type: %d\n", s->pict_type); | |
| 0 | 3461 if (s->pict_type != I_TYPE && |
| 3462 s->pict_type != P_TYPE) | |
| 3463 return -1; | |
|
250
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
3464 skip_bits(&s->gb, 2); |
|
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
3465 s->no_rounding = get_bits1(&s->gb); |
| 355 | 3466 dprintf("RTYPE: %d\n", s->no_rounding); |
|
250
3449316664b5
- Bug fix on RTYPE (rounding type) not being honoured by H.263+ decoder.
pulento
parents:
249
diff
changeset
|
3467 skip_bits(&s->gb, 4); |
| 78 | 3468 |
| 3469 /* Get the picture dimensions */ | |
| 161 | 3470 if (ufep) { |
| 3471 if (format == 6) { | |
| 3472 /* Custom Picture Format (CPFMT) */ | |
| 355 | 3473 s->aspect_ratio_info = get_bits(&s->gb, 4); |
| 3474 dprintf("aspect: %d\n", s->aspect_ratio_info); | |
| 3475 /* aspect ratios: | |
| 3476 0 - forbidden | |
| 3477 1 - 1:1 | |
| 3478 2 - 12:11 (CIF 4:3) | |
| 3479 3 - 10:11 (525-type 4:3) | |
| 3480 4 - 16:11 (CIF 16:9) | |
| 3481 5 - 40:33 (525-type 16:9) | |
| 3482 6-14 - reserved | |
| 3483 */ | |
| 161 | 3484 width = (get_bits(&s->gb, 9) + 1) * 4; |
| 3485 skip_bits1(&s->gb); | |
| 3486 height = get_bits(&s->gb, 9) * 4; | |
| 355 | 3487 dprintf("\nH.263+ Custom picture: %dx%d\n",width,height); |
| 3488 if (s->aspect_ratio_info == EXTENDED_PAR) { | |
| 3489 /* aspected dimensions */ | |
| 3490 skip_bits(&s->gb, 8); /* width */ | |
| 3491 skip_bits(&s->gb, 8); /* height */ | |
| 3492 } | |
| 3493 } else { | |
| 161 | 3494 width = h263_format[format][0]; |
| 3495 height = h263_format[format][1]; | |
| 3496 } | |
| 3497 if ((width == 0) || (height == 0)) | |
| 3498 return -1; | |
| 3499 s->width = width; | |
| 3500 s->height = height; | |
| 3501 if (s->umvplus_dec) { | |
| 3502 skip_bits1(&s->gb); /* Unlimited Unrestricted Motion Vectors Indicator (UUI) */ | |
| 3503 } | |
| 78 | 3504 } |
| 3505 | |
| 0 | 3506 s->qscale = get_bits(&s->gb, 5); |
| 3507 } | |
| 3508 /* PEI */ | |
| 21 | 3509 while (get_bits1(&s->gb) != 0) { |
| 3510 skip_bits(&s->gb, 8); | |
| 0 | 3511 } |
| 3512 s->f_code = 1; | |
| 498 | 3513 |
| 3514 if(s->h263_aic){ | |
| 3515 s->y_dc_scale_table= | |
| 3516 s->c_dc_scale_table= h263_aic_dc_scale_table; | |
| 3517 }else{ | |
| 3518 s->y_dc_scale_table= | |
| 3519 s->c_dc_scale_table= ff_mpeg1_dc_scale_table; | |
| 3520 } | |
| 3521 | |
| 0 | 3522 return 0; |
| 3523 } | |
| 3524 | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3525 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
|
3526 { |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3527 int i; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3528 int a= 2<<s->sprite_warping_accuracy; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3529 int rho= 3-s->sprite_warping_accuracy; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3530 int r=16/a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3531 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
|
3532 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
|
3533 int sprite_ref[4][2]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3534 int virtual_ref[2][2]; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3535 int w2, h2; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3536 int alpha=0, beta=0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3537 int w= s->width; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3538 int h= s->height; |
| 255 | 3539 //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
|
3540 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
|
3541 int length; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3542 int x=0, y=0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3543 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3544 length= get_vlc(&s->gb, &sprite_trajectory); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3545 if(length){ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3546 x= get_bits(&s->gb, length); |
| 255 | 3547 //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
|
3548 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
|
3549 x = - (x ^ ((1 << length) - 1)); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3550 } |
| 255 | 3551 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
|
3552 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3553 length= get_vlc(&s->gb, &sprite_trajectory); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3554 if(length){ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3555 y=get_bits(&s->gb, length); |
| 255 | 3556 //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
|
3557 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
|
3558 y = - (y ^ ((1 << length) - 1)); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3559 } |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3560 skip_bits1(&s->gb); /* marker bit */ |
| 255 | 3561 //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
|
3562 //if(i>0 && (x!=0 || y!=0)) printf("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\n"); |
| 255 | 3563 //x=y=0; |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3564 d[i][0]= x; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3565 d[i][1]= y; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3566 } |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3567 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3568 while((1<<alpha)<w) alpha++; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3569 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
|
3570 w2= 1<<alpha; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3571 h2= 1<<beta; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3572 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3573 // Note, the 4th point isnt used for GMC |
| 262 | 3574 if(s->divx_version==500 && s->divx_build==413){ |
| 3575 sprite_ref[0][0]= a*vop_ref[0][0] + d[0][0]; | |
| 3576 sprite_ref[0][1]= a*vop_ref[0][1] + d[0][1]; | |
| 3577 sprite_ref[1][0]= a*vop_ref[1][0] + d[0][0] + d[1][0]; | |
| 3578 sprite_ref[1][1]= a*vop_ref[1][1] + d[0][1] + d[1][1]; | |
| 3579 sprite_ref[2][0]= a*vop_ref[2][0] + d[0][0] + d[2][0]; | |
| 3580 sprite_ref[2][1]= a*vop_ref[2][1] + d[0][1] + d[2][1]; | |
| 3581 } else { | |
| 3582 sprite_ref[0][0]= (a>>1)*(2*vop_ref[0][0] + d[0][0]); | |
| 3583 sprite_ref[0][1]= (a>>1)*(2*vop_ref[0][1] + d[0][1]); | |
| 3584 sprite_ref[1][0]= (a>>1)*(2*vop_ref[1][0] + d[0][0] + d[1][0]); | |
| 3585 sprite_ref[1][1]= (a>>1)*(2*vop_ref[1][1] + d[0][1] + d[1][1]); | |
| 3586 sprite_ref[2][0]= (a>>1)*(2*vop_ref[2][0] + d[0][0] + d[2][0]); | |
| 3587 sprite_ref[2][1]= (a>>1)*(2*vop_ref[2][1] + d[0][1] + d[2][1]); | |
| 3588 } | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3589 /* 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
|
3590 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
|
3591 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3592 // 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
|
3593 // 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
|
3594 // 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
|
3595 // 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
|
3596 virtual_ref[0][0]= 16*(vop_ref[0][0] + w2) |
| 359 | 3597 + ROUNDED_DIV(((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
|
3598 virtual_ref[0][1]= 16*vop_ref[0][1] |
| 359 | 3599 + ROUNDED_DIV(((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
|
3600 virtual_ref[1][0]= 16*vop_ref[0][0] |
| 359 | 3601 + ROUNDED_DIV(((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
|
3602 virtual_ref[1][1]= 16*(vop_ref[0][1] + h2) |
| 359 | 3603 + ROUNDED_DIV(((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
|
3604 |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3605 switch(s->num_sprite_warping_points) |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3606 { |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3607 case 0: |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3608 s->sprite_offset[0][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3609 s->sprite_offset[0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3610 s->sprite_offset[1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3611 s->sprite_offset[1][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3612 s->sprite_delta[0][0][0]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3613 s->sprite_delta[0][0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3614 s->sprite_delta[0][1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3615 s->sprite_delta[0][1][1]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3616 s->sprite_delta[1][0][0]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3617 s->sprite_delta[1][0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3618 s->sprite_delta[1][1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3619 s->sprite_delta[1][1][1]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3620 s->sprite_shift[0][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3621 s->sprite_shift[0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3622 s->sprite_shift[1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3623 s->sprite_shift[1][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3624 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3625 case 1: //GMC only |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3626 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
|
3627 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
|
3628 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
|
3629 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
|
3630 s->sprite_delta[0][0][0]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3631 s->sprite_delta[0][0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3632 s->sprite_delta[0][1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3633 s->sprite_delta[0][1][1]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3634 s->sprite_delta[1][0][0]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3635 s->sprite_delta[1][0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3636 s->sprite_delta[1][1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3637 s->sprite_delta[1][1][1]= a; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3638 s->sprite_shift[0][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3639 s->sprite_shift[0][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3640 s->sprite_shift[1][0]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3641 s->sprite_shift[1][1]= 0; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3642 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3643 case 2: |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3644 case 3: //FIXME |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3645 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
|
3646 + ((-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
|
3647 +( 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
|
3648 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
|
3649 + ((-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
|
3650 +(-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
|
3651 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
|
3652 +( 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
|
3653 +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
|
3654 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
|
3655 +(-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
|
3656 +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
|
3657 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
|
3658 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
|
3659 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
|
3660 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
|
3661 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
|
3662 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
|
3663 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
|
3664 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
|
3665 s->sprite_shift[0][0]= alpha+rho; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3666 s->sprite_shift[0][1]= alpha+rho; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3667 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
|
3668 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
|
3669 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3670 // case 3: |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3671 break; |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3672 } |
| 255 | 3673 /*printf("%d %d\n", s->sprite_delta[0][0][0], a<<s->sprite_shift[0][0]); |
| 3674 printf("%d %d\n", s->sprite_delta[0][0][1], 0); | |
| 3675 printf("%d %d\n", s->sprite_delta[0][1][0], 0); | |
| 3676 printf("%d %d\n", s->sprite_delta[0][1][1], a<<s->sprite_shift[0][1]); | |
| 3677 printf("%d %d\n", s->sprite_delta[1][0][0], a<<s->sprite_shift[1][0]); | |
| 3678 printf("%d %d\n", s->sprite_delta[1][0][1], 0); | |
| 3679 printf("%d %d\n", s->sprite_delta[1][1][0], 0); | |
| 3680 printf("%d %d\n", s->sprite_delta[1][1][1], a<<s->sprite_shift[1][1]);*/ | |
| 3681 /* try to simplify the situation */ | |
| 3682 if( s->sprite_delta[0][0][0] == a<<s->sprite_shift[0][0] | |
| 3683 && s->sprite_delta[0][0][1] == 0 | |
| 3684 && s->sprite_delta[0][1][0] == 0 | |
| 3685 && s->sprite_delta[0][1][1] == a<<s->sprite_shift[0][1] | |
| 3686 && s->sprite_delta[1][0][0] == a<<s->sprite_shift[1][0] | |
| 3687 && s->sprite_delta[1][0][1] == 0 | |
| 3688 && s->sprite_delta[1][1][0] == 0 | |
| 3689 && s->sprite_delta[1][1][1] == a<<s->sprite_shift[1][1]) | |
| 3690 { | |
| 3691 s->sprite_offset[0][0]>>=s->sprite_shift[0][0]; | |
| 3692 s->sprite_offset[0][1]>>=s->sprite_shift[0][1]; | |
| 3693 s->sprite_offset[1][0]>>=s->sprite_shift[1][0]; | |
| 3694 s->sprite_offset[1][1]>>=s->sprite_shift[1][1]; | |
| 3695 s->sprite_delta[0][0][0]= a; | |
| 3696 s->sprite_delta[0][0][1]= 0; | |
| 3697 s->sprite_delta[0][1][0]= 0; | |
| 3698 s->sprite_delta[0][1][1]= a; | |
| 3699 s->sprite_delta[1][0][0]= a; | |
| 3700 s->sprite_delta[1][0][1]= 0; | |
| 3701 s->sprite_delta[1][1][0]= 0; | |
| 3702 s->sprite_delta[1][1][1]= a; | |
| 3703 s->sprite_shift[0][0]= 0; | |
| 3704 s->sprite_shift[0][1]= 0; | |
| 3705 s->sprite_shift[1][0]= 0; | |
| 3706 s->sprite_shift[1][1]= 0; | |
| 3707 s->real_sprite_warping_points=1; | |
| 3708 } | |
| 3709 else | |
| 3710 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
|
3711 |
| 301 | 3712 //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
|
3713 } |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3714 |
| 0 | 3715 /* decode mpeg4 VOP header */ |
| 3716 int mpeg4_decode_picture_header(MpegEncContext * s) | |
| 3717 { | |
| 3718 int time_incr, startcode, state, v; | |
| 324 | 3719 int time_increment; |
| 0 | 3720 |
| 3721 redo: | |
| 3722 /* search next start code */ | |
| 3723 align_get_bits(&s->gb); | |
| 3724 state = 0xff; | |
| 3725 for(;;) { | |
| 3726 v = get_bits(&s->gb, 8); | |
| 3727 if (state == 0x000001) { | |
| 3728 state = ((state << 8) | v) & 0xffffff; | |
| 3729 startcode = state; | |
| 3730 break; | |
| 3731 } | |
| 3732 state = ((state << 8) | v) & 0xffffff; | |
| 278 | 3733 if( get_bits_count(&s->gb) > s->gb.size*8-32){ |
| 333 | 3734 if(s->gb.size>50){ |
| 3735 printf("no VOP startcode found, frame size was=%d\n", s->gb.size); | |
| 3736 return -1; | |
| 3737 }else{ | |
| 3738 printf("frame skip\n"); | |
| 3739 return FRAME_SKIPED; | |
| 3740 } | |
| 263 | 3741 } |
| 0 | 3742 } |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3743 //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
|
3744 if (startcode == 0x120) { // Video Object Layer |
| 262 | 3745 int width, height, vo_ver_id; |
| 0 | 3746 |
| 3747 /* vol header */ | |
| 21 | 3748 skip_bits(&s->gb, 1); /* random access */ |
| 336 | 3749 s->vo_type= get_bits(&s->gb, 8); |
| 63 | 3750 if (get_bits1(&s->gb) != 0) { /* is_ol_id */ |
| 3751 vo_ver_id = get_bits(&s->gb, 4); /* vo_ver_id */ | |
| 3752 skip_bits(&s->gb, 3); /* vo_priority */ | |
| 3753 } else { | |
| 3754 vo_ver_id = 1; | |
| 3755 } | |
| 341 | 3756 //printf("vo type:%d\n",s->vo_type); |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3757 s->aspect_ratio_info= get_bits(&s->gb, 4); |
| 355 | 3758 if(s->aspect_ratio_info == EXTENDED_PAR){ |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3759 skip_bits(&s->gb, 8); //par_width |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3760 skip_bits(&s->gb, 8); // par_height |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3761 } |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
278
diff
changeset
|
3762 |
|
365
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3763 if ((s->vol_control_parameters=get_bits1(&s->gb))) { /* vol control parameter */ |
| 336 | 3764 int chroma_format= get_bits(&s->gb, 2); |
| 3765 if(chroma_format!=1){ | |
| 3766 printf("illegal chroma format\n"); | |
| 3767 } | |
| 3768 s->low_delay= get_bits1(&s->gb); | |
| 3769 if(get_bits1(&s->gb)){ /* vbv parameters */ | |
| 3770 printf("vbv parameters not supported\n"); | |
| 3771 return -1; | |
| 3772 } | |
| 3773 }else{ | |
| 564 | 3774 // set low delay flag only once so the smart? low delay detection wont be overriden |
| 3775 if(s->picture_number==0) | |
| 3776 s->low_delay=0; | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3777 } |
| 336 | 3778 |
| 63 | 3779 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
|
3780 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
|
3781 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
|
3782 printf("Gray shape not supported\n"); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3783 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
|
3784 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3785 |
| 21 | 3786 skip_bits1(&s->gb); /* marker */ |
| 0 | 3787 |
| 262 | 3788 s->time_increment_resolution = get_bits(&s->gb, 16); |
| 3789 s->time_increment_bits = av_log2(s->time_increment_resolution - 1) + 1; | |
| 63 | 3790 if (s->time_increment_bits < 1) |
| 3791 s->time_increment_bits = 1; | |
| 21 | 3792 skip_bits1(&s->gb); /* marker */ |
| 0 | 3793 |
| 63 | 3794 if (get_bits1(&s->gb) != 0) { /* fixed_vop_rate */ |
| 3795 skip_bits(&s->gb, s->time_increment_bits); | |
| 3796 } | |
| 0 | 3797 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3798 if (s->shape != BIN_ONLY_SHAPE) { |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3799 if (s->shape == RECT_SHAPE) { |
| 63 | 3800 skip_bits1(&s->gb); /* marker */ |
| 3801 width = get_bits(&s->gb, 13); | |
| 3802 skip_bits1(&s->gb); /* marker */ | |
| 3803 height = get_bits(&s->gb, 13); | |
| 3804 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
|
3805 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
|
3806 s->width = width; |
|
d0c186bcf075
use the width & height from the mpeg4 header ... in the case that its complete
michaelni
parents:
272
diff
changeset
|
3807 s->height = height; |
| 331 | 3808 // printf("width/height: %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
|
3809 } |
| 63 | 3810 } |
| 3811 | |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
3812 s->progressive_sequence= get_bits1(&s->gb)^1; |
| 453 | 3813 if(!get_bits1(&s->gb)) printf("OBMC not supported (very likely buggy encoder)\n"); /* OBMC Disable */ |
| 63 | 3814 if (vo_ver_id == 1) { |
| 3815 s->vol_sprite_usage = get_bits1(&s->gb); /* vol_sprite_usage */ | |
| 3816 } else { | |
| 3817 s->vol_sprite_usage = get_bits(&s->gb, 2); /* vol_sprite_usage */ | |
| 3818 } | |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3819 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
|
3820 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
|
3821 if(s->vol_sprite_usage==STATIC_SPRITE){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3822 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
|
3823 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3824 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
|
3825 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3826 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
|
3827 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3828 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
|
3829 skip_bits1(&s->gb); /* marker */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3830 } |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
3831 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
|
3832 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
|
3833 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
|
3834 if(s->vol_sprite_usage==STATIC_SPRITE) |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3835 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
|
3836 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3837 // 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
|
3838 |
| 63 | 3839 if (get_bits1(&s->gb) == 1) { /* not_8_bit */ |
| 3840 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
|
3841 if(get_bits(&s->gb, 4)!=8) printf("N-bit not supported\n"); /* bits_per_pixel */ |
| 290 | 3842 if(s->quant_precision!=5) printf("quant precission %d\n", s->quant_precision); |
| 63 | 3843 } else { |
| 3844 s->quant_precision = 5; | |
| 3845 } | |
| 3846 | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3847 // FIXME a bunch of grayscale shape things |
| 312 | 3848 |
| 591 | 3849 if((s->mpeg_quant=get_bits1(&s->gb))){ /* vol_quant_type */ |
| 312 | 3850 int i, j, v; |
| 591 | 3851 |
| 312 | 3852 /* load default matrixes */ |
| 3853 for(i=0; i<64; i++){ | |
| 3854 v= ff_mpeg4_default_intra_matrix[i]; | |
| 3855 s->intra_matrix[i]= v; | |
| 3856 s->chroma_intra_matrix[i]= v; | |
| 3857 | |
| 3858 v= ff_mpeg4_default_non_intra_matrix[i]; | |
| 344 | 3859 s->inter_matrix[i]= v; |
| 3860 s->chroma_inter_matrix[i]= v; | |
| 312 | 3861 } |
| 3862 | |
| 3863 /* load custom intra matrix */ | |
| 3864 if(get_bits1(&s->gb)){ | |
| 3865 for(i=0; i<64; i++){ | |
| 3866 v= get_bits(&s->gb, 8); | |
| 3867 if(v==0) break; | |
| 3868 | |
| 3869 j= zigzag_direct[i]; | |
| 3870 s->intra_matrix[j]= v; | |
| 3871 s->chroma_intra_matrix[j]= v; | |
| 3872 } | |
| 3873 } | |
| 3874 | |
| 3875 /* load custom non intra matrix */ | |
| 3876 if(get_bits1(&s->gb)){ | |
| 3877 for(i=0; i<64; i++){ | |
| 3878 v= get_bits(&s->gb, 8); | |
| 3879 if(v==0) break; | |
| 3880 | |
| 3881 j= zigzag_direct[i]; | |
| 344 | 3882 s->inter_matrix[j]= v; |
| 3883 s->chroma_inter_matrix[j]= v; | |
| 312 | 3884 } |
| 3885 | |
| 3886 /* replicate last value */ | |
| 3887 for(; i<64; i++){ | |
| 3888 j= zigzag_direct[i]; | |
| 344 | 3889 s->inter_matrix[j]= v; |
| 3890 s->chroma_inter_matrix[j]= v; | |
| 312 | 3891 } |
| 3892 } | |
| 3893 | |
| 3894 // FIXME a bunch of grayscale shape things | |
| 591 | 3895 } |
| 312 | 3896 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3897 if(vo_ver_id != 1) |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3898 s->quarter_sample= get_bits1(&s->gb); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3899 else s->quarter_sample=0; |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3900 |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3901 if(!get_bits1(&s->gb)) printf("Complexity estimation not supported\n"); |
| 290 | 3902 |
| 3903 s->resync_marker= !get_bits1(&s->gb); /* resync_marker_disabled */ | |
| 3904 | |
| 453 | 3905 s->data_partitioning= get_bits1(&s->gb); |
| 3906 if(s->data_partitioning){ | |
| 3907 s->rvlc= get_bits1(&s->gb); | |
| 3908 if(s->rvlc){ | |
| 3909 printf("reversible vlc not supported\n"); | |
| 3910 } | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3911 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3912 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3913 if(vo_ver_id != 1) { |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3914 s->new_pred= get_bits1(&s->gb); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3915 if(s->new_pred){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3916 printf("new pred not supported\n"); |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3917 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
|
3918 skip_bits1(&s->gb); /* newpred segment type */ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3919 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3920 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
|
3921 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
|
3922 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3923 else{ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3924 s->new_pred=0; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3925 s->reduced_res_vop= 0; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3926 } |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3927 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3928 s->scalability= get_bits1(&s->gb); |
| 575 | 3929 if(s->workaround_bugs==1) s->scalability=0; |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3930 if (s->scalability) { |
| 575 | 3931 int dummy= s->hierachy_type= get_bits1(&s->gb); |
| 3932 int ref_layer_id= get_bits(&s->gb, 4); | |
| 3933 int ref_layer_sampling_dir= get_bits1(&s->gb); | |
| 3934 int h_sampling_factor_n= get_bits(&s->gb, 5); | |
| 3935 int h_sampling_factor_m= get_bits(&s->gb, 5); | |
| 3936 int v_sampling_factor_n= get_bits(&s->gb, 5); | |
| 3937 int v_sampling_factor_m= get_bits(&s->gb, 5); | |
| 3938 s->enhancement_type= get_bits1(&s->gb); | |
| 3939 // bin shape stuff FIXME | |
| 285 | 3940 printf("scalability not supported\n"); |
| 63 | 3941 } |
| 3942 } | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3943 //printf("end Data %X %d\n", show_bits(&s->gb, 32), get_bits_count(&s->gb)&0x7); |
| 0 | 3944 goto redo; |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3945 } else if (startcode == 0x1b2) { //userdata |
| 255 | 3946 char buf[256]; |
| 3947 int i; | |
| 3948 int e; | |
| 3949 int ver, build; | |
| 3950 | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3951 //printf("user Data %X\n", show_bits(&s->gb, 32)); |
| 255 | 3952 buf[0]= show_bits(&s->gb, 8); |
| 3953 for(i=1; i<256; i++){ | |
| 3954 buf[i]= show_bits(&s->gb, 16)&0xFF; | |
| 3955 if(buf[i]==0) break; | |
| 3956 skip_bits(&s->gb, 8); | |
| 3957 } | |
| 3958 buf[255]=0; | |
| 3959 e=sscanf(buf, "DivX%dBuild%d", &ver, &build); | |
| 333 | 3960 if(e!=2) |
| 3961 e=sscanf(buf, "DivX%db%d", &ver, &build); | |
| 255 | 3962 if(e==2){ |
| 3963 s->divx_version= ver; | |
| 3964 s->divx_build= build; | |
| 3965 if(s->picture_number==0){ | |
| 3966 printf("This file was encoded with DivX%d Build%d\n", ver, build); | |
| 333 | 3967 if(ver==500 && build==413){ |
| 255 | 3968 printf("WARNING: this version of DivX is not MPEG4 compatible, trying to workaround these bugs...\n"); |
| 3969 } | |
| 3970 } | |
| 3971 } | |
| 3972 //printf("User Data: %s\n", buf); | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3973 goto redo; |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
3974 } else if (startcode != 0x1b6) { //VOP |
| 0 | 3975 goto redo; |
| 3976 } | |
| 3977 | |
| 355 | 3978 s->pict_type = get_bits(&s->gb, 2) + I_TYPE; /* pict type: I = 0 , P = 1 */ |
| 453 | 3979 //if(s->pict_type!=I_TYPE) return FRAME_SKIPED; |
|
365
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3980 if(s->pict_type==B_TYPE && s->low_delay && s->vol_control_parameters==0){ |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3981 printf("low_delay flag set, but shouldnt, clearing it\n"); |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3982 s->low_delay=0; |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
3983 } |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
3984 // printf("pic: %d, qpel:%d part:%d resync:%d\n", s->pict_type, s->quarter_sample, s->data_partitioning, s->resync_marker); |
| 262 | 3985 time_incr=0; |
| 21 | 3986 while (get_bits1(&s->gb) != 0) |
| 0 | 3987 time_incr++; |
| 3988 | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
3989 check_marker(&s->gb, "before time_increment"); |
| 324 | 3990 time_increment= get_bits(&s->gb, s->time_increment_bits); |
| 3991 //printf(" type:%d incr:%d increment:%d\n", s->pict_type, time_incr, time_increment); | |
| 262 | 3992 if(s->pict_type!=B_TYPE){ |
| 324 | 3993 s->last_time_base= s->time_base; |
| 262 | 3994 s->time_base+= time_incr; |
| 324 | 3995 s->time= s->time_base*s->time_increment_resolution + time_increment; |
| 3996 s->pp_time= s->time - s->last_non_b_time; | |
| 3997 s->last_non_b_time= s->time; | |
| 262 | 3998 }else{ |
| 324 | 3999 s->time= (s->last_time_base + time_incr)*s->time_increment_resolution + time_increment; |
| 4000 s->bp_time= s->last_non_b_time - s->time; | |
| 335 | 4001 if(s->pp_time <=s->bp_time){ |
| 4002 // printf("messed up order, seeking?, skiping current b frame\n"); | |
| 4003 return FRAME_SKIPED; | |
| 4004 } | |
| 262 | 4005 } |
| 654 | 4006 |
| 4007 s->avctx->pts= s->time*1000LL*1000LL / s->time_increment_resolution; | |
| 4008 | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
4009 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
|
4010 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
|
4011 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
|
4012 if(get_bits1(&s->gb)) break; |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
4013 } |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
4014 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
|
4015 } |
| 0 | 4016 /* vop coded */ |
| 21 | 4017 if (get_bits1(&s->gb) != 1) |
| 63 | 4018 goto redo; |
| 262 | 4019 //printf("time %d %d %d || %d %d %d\n", s->time_increment_bits, s->time_increment, s->time_base, |
| 4020 //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
|
4021 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
|
4022 || (s->pict_type == S_TYPE && s->vol_sprite_usage==GMC_SPRITE))) { |
| 0 | 4023 /* rounding type for motion estimation */ |
| 21 | 4024 s->no_rounding = get_bits1(&s->gb); |
| 63 | 4025 } else { |
| 4026 s->no_rounding = 0; | |
| 0 | 4027 } |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4028 //FIXME reduced res stuff |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4029 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4030 if (s->shape != RECT_SHAPE) { |
| 63 | 4031 if (s->vol_sprite_usage != 1 || s->pict_type != I_TYPE) { |
| 4032 int width, height, hor_spat_ref, ver_spat_ref; | |
| 4033 | |
| 4034 width = get_bits(&s->gb, 13); | |
| 4035 skip_bits1(&s->gb); /* marker */ | |
| 4036 height = get_bits(&s->gb, 13); | |
| 4037 skip_bits1(&s->gb); /* marker */ | |
| 4038 hor_spat_ref = get_bits(&s->gb, 13); /* hor_spat_ref */ | |
| 4039 skip_bits1(&s->gb); /* marker */ | |
| 4040 ver_spat_ref = get_bits(&s->gb, 13); /* ver_spat_ref */ | |
| 4041 } | |
| 4042 skip_bits1(&s->gb); /* change_CR_disable */ | |
| 4043 | |
| 4044 if (get_bits1(&s->gb) != 0) { | |
| 4045 skip_bits(&s->gb, 8); /* constant_alpha_value */ | |
| 4046 } | |
| 4047 } | |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4048 //FIXME complexity estimation stuff |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4049 |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4050 if (s->shape != BIN_ONLY_SHAPE) { |
| 290 | 4051 int t; |
| 4052 t=get_bits(&s->gb, 3); /* intra dc VLC threshold */ | |
| 4053 //printf("threshold %d\n", t); | |
|
619
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
4054 if(!s->progressive_sequence){ |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
4055 s->top_field_first= get_bits1(&s->gb); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
4056 s->alternate_scan= get_bits1(&s->gb); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
4057 //printf("top:%d alt:%d\n", s->top_field_first, s->alternate_scan); |
|
2be2cc8fd0a1
mpeg4 interlaced decoding support (not completly implemented/tested due to lack of samples)
michaelni
parents:
617
diff
changeset
|
4058 } |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4059 } |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
4060 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4061 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
|
4062 if(s->num_sprite_warping_points){ |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
4063 mpeg4_decode_sprite_trajectory(s); |
|
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
4064 } |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4065 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
|
4066 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
|
4067 } |
|
254
b4fed8b24e3a
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
michaelni
parents:
253
diff
changeset
|
4068 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4069 if (s->shape != BIN_ONLY_SHAPE) { |
| 63 | 4070 /* note: we do not use quant_precision to avoid problem if no |
| 4071 MPEG4 vol header as it is found on some old opendivx | |
| 4072 movies */ | |
| 4073 s->qscale = get_bits(&s->gb, 5); | |
|
264
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
4074 if(s->qscale==0){ |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
4075 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
|
4076 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
|
4077 } |
| 63 | 4078 |
| 4079 if (s->pict_type != I_TYPE) { | |
| 4080 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
|
4081 if(s->f_code==0){ |
|
28c5c62b1c4c
support decoding (with mplayer) of 3 .mp4 files from mphq
michaelni
parents:
263
diff
changeset
|
4082 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
|
4083 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
|
4084 } |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
4085 }else |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
4086 s->f_code=1; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
4087 |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4088 if (s->pict_type == B_TYPE) { |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4089 s->b_code = get_bits(&s->gb, 3); |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
4090 }else |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
4091 s->b_code=1; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
4092 |
|
648
dddcff6841f2
optimizing mpeg4_encode_block(), generates allso slightly shorter bitstream as some codes can be represented as esc1 and esc2 and esc2 is shorter for a few of them
michaelni
parents:
619
diff
changeset
|
4093 //printf("quant:%d fcode:%d bcode:%d type:%d size:%d\n", s->qscale, s->f_code, s->b_code, s->pict_type, s->gb.size); |
|
253
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4094 if(!s->scalability){ |
|
4448dd55d415
parsing more of the mpeg4 header & print some "not supported" stuff
michaelni
parents:
250
diff
changeset
|
4095 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
|
4096 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
|
4097 } |
| 575 | 4098 }else{ |
| 4099 if(s->enhancement_type){ | |
| 4100 int load_backward_shape= get_bits1(&s->gb); | |
| 4101 if(load_backward_shape){ | |
| 4102 printf("load backward shape isnt supported\n"); | |
| 4103 } | |
| 4104 } | |
| 4105 skip_bits(&s->gb, 2); //ref_select_code | |
| 63 | 4106 } |
| 4107 } | |
|
346
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
4108 /* detect buggy encoders which dont set the low_delay flag (divx4/xvid/opendivx)*/ |
|
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
4109 // note we cannot detect divx5 without b-frames easyly (allthough its buggy too) |
|
365
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
4110 if(s->vo_type==0 && s->vol_control_parameters==0 && s->divx_version==0 && s->picture_number==0){ |
|
fdeec2834c79
there are divx5? encoded files without a userdata section but with b-frames :(
michaelni
parents:
364
diff
changeset
|
4111 printf("looks like this file was encoded with (divx4/(old)xvid/opendivx) -> forcing low_delay flag\n"); |
|
346
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
4112 s->low_delay=1; |
|
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
4113 } |
|
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
4114 |
| 255 | 4115 s->picture_number++; // better than pic number==0 allways ;) |
|
346
c2f789fe4945
detecting xvid/divx4/opendivx and set low_delay flag
michaelni
parents:
344
diff
changeset
|
4116 |
| 498 | 4117 s->y_dc_scale_table= ff_mpeg4_y_dc_scale_table; //FIXME add short header support |
| 4118 s->c_dc_scale_table= ff_mpeg4_c_dc_scale_table; | |
| 4119 | |
|
582
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
4120 if(s->divx_version==0 || s->divx_version < 500){ |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
4121 s->h_edge_pos= s->width; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
4122 s->v_edge_pos= s->height; |
|
5132a4ee50cd
different edge positions fixed with edge emu / dr1
michaelni
parents:
575
diff
changeset
|
4123 } |
| 63 | 4124 return 0; |
| 0 | 4125 } |
| 4126 | |
| 4127 /* don't understand why they choose a different header ! */ | |
| 4128 int intel_h263_decode_picture_header(MpegEncContext *s) | |
| 4129 { | |
| 4130 int format; | |
| 4131 | |
| 4132 /* picture header */ | |
| 355 | 4133 if (get_bits(&s->gb, 22) != 0x20) { |
| 4134 fprintf(stderr, "Bad picture start code\n"); | |
| 0 | 4135 return -1; |
| 355 | 4136 } |
| 4137 s->picture_number = get_bits(&s->gb, 8); /* picture timestamp */ | |
| 0 | 4138 |
| 355 | 4139 if (get_bits1(&s->gb) != 1) { |
| 4140 fprintf(stderr, "Bad marker\n"); | |
| 0 | 4141 return -1; /* marker */ |
| 355 | 4142 } |
| 4143 if (get_bits1(&s->gb) != 0) { | |
| 4144 fprintf(stderr, "Bad H263 id\n"); | |
| 0 | 4145 return -1; /* h263 id */ |
| 355 | 4146 } |
| 21 | 4147 skip_bits1(&s->gb); /* split screen off */ |
| 4148 skip_bits1(&s->gb); /* camera off */ | |
| 4149 skip_bits1(&s->gb); /* freeze picture release off */ | |
| 0 | 4150 |
| 4151 format = get_bits(&s->gb, 3); | |
| 355 | 4152 if (format != 7) { |
| 4153 fprintf(stderr, "Intel H263 free format not supported\n"); | |
| 0 | 4154 return -1; |
| 355 | 4155 } |
| 0 | 4156 s->h263_plus = 0; |
| 4157 | |
| 21 | 4158 s->pict_type = I_TYPE + get_bits1(&s->gb); |
| 0 | 4159 |
| 21 | 4160 s->unrestricted_mv = get_bits1(&s->gb); |
| 0 | 4161 s->h263_long_vectors = s->unrestricted_mv; |
| 4162 | |
| 355 | 4163 if (get_bits1(&s->gb) != 0) { |
| 4164 fprintf(stderr, "SAC not supported\n"); | |
| 0 | 4165 return -1; /* SAC: off */ |
| 355 | 4166 } |
| 4167 if (get_bits1(&s->gb) != 0) { | |
| 4168 fprintf(stderr, "Advanced Prediction Mode not supported\n"); | |
| 0 | 4169 return -1; /* advanced prediction mode: off */ |
| 355 | 4170 } |
| 4171 if (get_bits1(&s->gb) != 0) { | |
| 4172 fprintf(stderr, "PB frame mode no supported\n"); | |
| 4173 return -1; /* PB frame mode */ | |
| 4174 } | |
| 0 | 4175 |
| 4176 /* skip unknown header garbage */ | |
| 21 | 4177 skip_bits(&s->gb, 41); |
| 0 | 4178 |
| 4179 s->qscale = get_bits(&s->gb, 5); | |
| 21 | 4180 skip_bits1(&s->gb); /* Continuous Presence Multipoint mode: off */ |
| 0 | 4181 |
| 4182 /* PEI */ | |
| 21 | 4183 while (get_bits1(&s->gb) != 0) { |
| 4184 skip_bits(&s->gb, 8); | |
| 0 | 4185 } |
| 4186 s->f_code = 1; | |
| 4187 return 0; | |
| 4188 } | |
| 144 | 4189 |
