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