1 /*
2 * MPEG4 decoder / encoder common code.
3 * Copyright (c) 2000,2001 Fabrice Bellard
4 * Copyright (c) 2002-2010 Michael Niedermayer <michaelni@gmx.at>
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
26
28
32 return 16;
38 default:
39 return -1;
40 }
41 }
42
44 {
45 int c_wrap, c_xy, l_wrap, l_xy;
46
48 l_xy= (2*s->
mb_y-1)*l_wrap + s->
mb_x*2 - 1;
50 c_xy= (s->
mb_y-1)*c_wrap + s->
mb_x - 1;
51
52 #if 0
53 /* clean DC */
57 #endif
58
59 /* clean AC */
60 memset(s->
ac_val[0] + l_xy, 0, (l_wrap*2+1)*16*
sizeof(int16_t));
61 memset(s->
ac_val[1] + c_xy, 0, (c_wrap +1)*16*
sizeof(int16_t));
62 memset(s->
ac_val[2] + c_xy, 0, (c_wrap +1)*16*
sizeof(int16_t));
63
64 /* clean MV */
65 // we can't clear the MVs as they might be needed by a b frame
66 // memset(s->motion_val + l_xy, 0, (l_wrap*2+1)*2*sizeof(int16_t));
67 // memset(s->motion_val, 0, 2*sizeof(int16_t)*(2 + s->mb_width*2)*(2 + s->mb_height*2));
72 }
73
74 #define tab_size ((signed)FF_ARRAY_ELEMS(s->direct_scale_mv[0]))
75 #define tab_bias (tab_size/2)
76
77 //used by mpeg4 and rv10 decoder
79 int i;
83 }
84 }
85
90 int p_mx, p_my;
91
95 s->
mv[1][i][0] = mx ? s->
mv[0][i][0] - p_mx
97 }else{
98 s->
mv[0][i][0] = p_mx*time_pb/time_pp + mx;
99 s->
mv[1][i][0] = mx ? s->
mv[0][i][0] - p_mx
100 : p_mx*(time_pb - time_pp)/time_pp;
101 }
105 s->
mv[1][i][1] = my ? s->
mv[0][i][1] - p_my
107 }else{
108 s->
mv[0][i][1] = p_my*time_pb/time_pp + my;
109 s->
mv[1][i][1] = my ? s->
mv[0][i][1] - p_my
110 : p_my*(time_pb - time_pp)/time_pp;
111 }
112 }
113
114 #undef tab_size
115 #undef tab_bias
116
117 /**
118 *
119 * @return the mb_type
120 */
124 uint16_t time_pp;
125 uint16_t time_pb;
126 int i;
127
128 //FIXME avoid divides
129 // try special case with shifts for 1 and 3 B-frames?
130
131 if(
IS_8X8(colocated_mb_type)){
133 for(i=0; i<4; i++){
135 }
139 for(i=0; i<2; i++){
146 }else{
149 }
156 }
158 }else{
160 s->
mv[0][1][0] = s->
mv[0][2][0] = s->
mv[0][3][0] = s->
mv[0][0][0];
161 s->
mv[0][1][1] = s->
mv[0][2][1] = s->
mv[0][3][1] = s->
mv[0][0][1];
162 s->
mv[1][1][0] = s->
mv[1][2][0] = s->
mv[1][3][0] = s->
mv[1][0][0];
163 s->
mv[1][1][1] = s->
mv[1][2][1] = s->
mv[1][3][1] = s->
mv[1][0][1];
166 else
169 }
170 }