]> git.sesse.net Git - ffmpeg/blob - libavcodec/mpeg12.c
mpeg12decdata.h: Move all tables to the only place they are used
[ffmpeg] / libavcodec / mpeg12.c
1 /*
2  * MPEG-1/2 decoder
3  * Copyright (c) 2000, 2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of Libav.
7  *
8  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * MPEG-1/2 decoder
26  */
27
28 #include "libavutil/attributes.h"
29 #include "internal.h"
30 #include "avcodec.h"
31 #include "dsputil.h"
32 #include "mpegvideo.h"
33 #include "error_resilience.h"
34 #include "mpeg12.h"
35 #include "mpeg12data.h"
36 #include "bytestream.h"
37 #include "xvmc_internal.h"
38 #include "thread.h"
39
40 uint8_t ff_mpeg12_static_rl_table_store[2][2][2*MAX_RUN + MAX_LEVEL + 3];
41
42 static const uint8_t table_mb_ptype[7][2] = {
43     { 3, 5 }, // 0x01 MB_INTRA
44     { 1, 2 }, // 0x02 MB_PAT
45     { 1, 3 }, // 0x08 MB_FOR
46     { 1, 1 }, // 0x0A MB_FOR|MB_PAT
47     { 1, 6 }, // 0x11 MB_QUANT|MB_INTRA
48     { 1, 5 }, // 0x12 MB_QUANT|MB_PAT
49     { 2, 5 }, // 0x1A MB_QUANT|MB_FOR|MB_PAT
50 };
51
52 static const uint8_t table_mb_btype[11][2] = {
53     { 3, 5 }, // 0x01 MB_INTRA
54     { 2, 3 }, // 0x04 MB_BACK
55     { 3, 3 }, // 0x06 MB_BACK|MB_PAT
56     { 2, 4 }, // 0x08 MB_FOR
57     { 3, 4 }, // 0x0A MB_FOR|MB_PAT
58     { 2, 2 }, // 0x0C MB_FOR|MB_BACK
59     { 3, 2 }, // 0x0E MB_FOR|MB_BACK|MB_PAT
60     { 1, 6 }, // 0x11 MB_QUANT|MB_INTRA
61     { 2, 6 }, // 0x16 MB_QUANT|MB_BACK|MB_PAT
62     { 3, 6 }, // 0x1A MB_QUANT|MB_FOR|MB_PAT
63     { 2, 5 }, // 0x1E MB_QUANT|MB_FOR|MB_BACK|MB_PAT
64 };
65
66 #define INIT_2D_VLC_RL(rl, static_size)\
67 {\
68     static RL_VLC_ELEM rl_vlc_table[static_size];\
69     INIT_VLC_STATIC(&rl.vlc, TEX_VLC_BITS, rl.n + 2,\
70                     &rl.table_vlc[0][1], 4, 2,\
71                     &rl.table_vlc[0][0], 4, 2, static_size);\
72 \
73     rl.rl_vlc[0] = rl_vlc_table;\
74     init_2d_vlc_rl(&rl);\
75 }
76
77 static av_cold void init_2d_vlc_rl(RLTable *rl)
78 {
79     int i;
80
81     for (i = 0; i < rl->vlc.table_size; i++) {
82         int code = rl->vlc.table[i][0];
83         int len  = rl->vlc.table[i][1];
84         int level, run;
85
86         if (len == 0) { // illegal code
87             run   = 65;
88             level = MAX_LEVEL;
89         } else if (len<0) { //more bits needed
90             run   = 0;
91             level = code;
92         } else {
93             if (code == rl->n) { //esc
94                 run   = 65;
95                 level = 0;
96             } else if (code == rl->n+1) { //eob
97                 run   = 0;
98                 level = 127;
99             } else {
100                 run   = rl->table_run  [code] + 1;
101                 level = rl->table_level[code];
102             }
103         }
104         rl->rl_vlc[0][i].len   = len;
105         rl->rl_vlc[0][i].level = level;
106         rl->rl_vlc[0][i].run   = run;
107     }
108 }
109
110 av_cold void ff_mpeg12_common_init(MpegEncContext *s)
111 {
112
113     s->y_dc_scale_table =
114     s->c_dc_scale_table = ff_mpeg2_dc_scale_table[s->intra_dc_precision];
115
116 }
117
118 void ff_mpeg1_clean_buffers(MpegEncContext *s)
119 {
120     s->last_dc[0] = 1 << (7 + s->intra_dc_precision);
121     s->last_dc[1] = s->last_dc[0];
122     s->last_dc[2] = s->last_dc[0];
123     memset(s->last_mv, 0, sizeof(s->last_mv));
124 }
125
126
127 /******************************************/
128 /* decoding */
129
130 VLC ff_mv_vlc;
131
132 VLC ff_dc_lum_vlc;
133 VLC ff_dc_chroma_vlc;
134
135 VLC ff_mbincr_vlc;
136 VLC ff_mb_ptype_vlc;
137 VLC ff_mb_btype_vlc;
138 VLC ff_mb_pat_vlc;
139
140 av_cold void ff_mpeg12_init_vlcs(void)
141 {
142     static int done = 0;
143
144     if (!done) {
145         done = 1;
146
147         INIT_VLC_STATIC(&ff_dc_lum_vlc, DC_VLC_BITS, 12,
148                         ff_mpeg12_vlc_dc_lum_bits, 1, 1,
149                         ff_mpeg12_vlc_dc_lum_code, 2, 2, 512);
150         INIT_VLC_STATIC(&ff_dc_chroma_vlc,  DC_VLC_BITS, 12,
151                         ff_mpeg12_vlc_dc_chroma_bits, 1, 1,
152                         ff_mpeg12_vlc_dc_chroma_code, 2, 2, 514);
153         INIT_VLC_STATIC(&ff_mv_vlc, MV_VLC_BITS, 17,
154                         &ff_mpeg12_mbMotionVectorTable[0][1], 2, 1,
155                         &ff_mpeg12_mbMotionVectorTable[0][0], 2, 1, 518);
156         INIT_VLC_STATIC(&ff_mbincr_vlc, MBINCR_VLC_BITS, 36,
157                         &ff_mpeg12_mbAddrIncrTable[0][1], 2, 1,
158                         &ff_mpeg12_mbAddrIncrTable[0][0], 2, 1, 538);
159         INIT_VLC_STATIC(&ff_mb_pat_vlc, MB_PAT_VLC_BITS, 64,
160                         &ff_mpeg12_mbPatTable[0][1], 2, 1,
161                         &ff_mpeg12_mbPatTable[0][0], 2, 1, 512);
162
163         INIT_VLC_STATIC(&ff_mb_ptype_vlc, MB_PTYPE_VLC_BITS, 7,
164                         &table_mb_ptype[0][1], 2, 1,
165                         &table_mb_ptype[0][0], 2, 1, 64);
166         INIT_VLC_STATIC(&ff_mb_btype_vlc, MB_BTYPE_VLC_BITS, 11,
167                         &table_mb_btype[0][1], 2, 1,
168                         &table_mb_btype[0][0], 2, 1, 64);
169         ff_init_rl(&ff_rl_mpeg1, ff_mpeg12_static_rl_table_store[0]);
170         ff_init_rl(&ff_rl_mpeg2, ff_mpeg12_static_rl_table_store[1]);
171
172         INIT_2D_VLC_RL(ff_rl_mpeg1, 680);
173         INIT_2D_VLC_RL(ff_rl_mpeg2, 674);
174     }
175 }
176
177 /**
178  * Find the end of the current frame in the bitstream.
179  * @return the position of the first byte of the next frame, or -1
180  */
181 int ff_mpeg1_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size, AVCodecParserContext *s)
182 {
183     int i;
184     uint32_t state = pc->state;
185
186     /* EOF considered as end of frame */
187     if (buf_size == 0)
188         return 0;
189
190 /*
191  0  frame start         -> 1/4
192  1  first_SEQEXT        -> 0/2
193  2  first field start   -> 3/0
194  3  second_SEQEXT       -> 2/0
195  4  searching end
196 */
197
198     for (i = 0; i < buf_size; i++) {
199         assert(pc->frame_start_found >= 0 && pc->frame_start_found <= 4);
200         if (pc->frame_start_found & 1) {
201             if (state == EXT_START_CODE && (buf[i] & 0xF0) != 0x80)
202                 pc->frame_start_found--;
203             else if (state == EXT_START_CODE + 2) {
204                 if ((buf[i] & 3) == 3)
205                     pc->frame_start_found = 0;
206                 else
207                     pc->frame_start_found = (pc->frame_start_found + 1) & 3;
208             }
209             state++;
210         } else {
211             i = avpriv_find_start_code(buf + i, buf + buf_size, &state) - buf - 1;
212             if (pc->frame_start_found == 0 && state >= SLICE_MIN_START_CODE && state <= SLICE_MAX_START_CODE) {
213                 i++;
214                 pc->frame_start_found = 4;
215             }
216             if (state == SEQ_END_CODE) {
217                 pc->frame_start_found = 0;
218                 pc->state=-1;
219                 return i+1;
220             }
221             if (pc->frame_start_found == 2 && state == SEQ_START_CODE)
222                 pc->frame_start_found = 0;
223             if (pc->frame_start_found  < 4 && state == EXT_START_CODE)
224                 pc->frame_start_found++;
225             if (pc->frame_start_found == 4 && (state & 0xFFFFFF00) == 0x100) {
226                 if (state < SLICE_MIN_START_CODE || state > SLICE_MAX_START_CODE) {
227                     pc->frame_start_found = 0;
228                     pc->state             = -1;
229                     return i - 3;
230                 }
231             }
232             if (pc->frame_start_found == 0 && s && state == PICTURE_START_CODE) {
233                 ff_fetch_timestamp(s, i - 3, 1);
234             }
235         }
236     }
237     pc->state = state;
238     return END_NOT_FOUND;
239 }