]> git.sesse.net Git - ffmpeg/blob - libavformat/h261dec.c
configure: Drop weak dependencies on external libraries for webm muxer
[ffmpeg] / libavformat / h261dec.c
1 /*
2  * RAW H.261 video demuxer
3  * Copyright (c) 2009 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavcodec/bitstream.h"
23
24 #include "avformat.h"
25 #include "rawdec.h"
26
27 static int h261_probe(AVProbeData *p)
28 {
29     uint32_t code= -1;
30     int i;
31     int valid_psc=0;
32     int invalid_psc=0;
33     int next_gn=0;
34     int src_fmt=0;
35     BitstreamContext bc;
36
37     bitstream_init(&bc, p->buf, p->buf_size * 8);
38
39     for(i=0; i<p->buf_size*8; i++){
40         if ((code & 0x01ff0000) || !(code & 0xff00)) {
41             code = (code << 8) + bitstream_read(&bc, 8);
42             i += 7;
43         } else
44             code = (code << 1) + bitstream_read_bit(&bc);
45         if ((code & 0xffff0000) == 0x10000) {
46             int gn= (code>>12)&0xf;
47             if(!gn)
48                 src_fmt= code&8;
49             if(gn != next_gn) invalid_psc++;
50             else              valid_psc++;
51
52             if(src_fmt){ // CIF
53                 next_gn= (gn+1     )%13;
54             }else{       //QCIF
55                 next_gn= (gn+1+!!gn)% 7;
56             }
57         }
58     }
59     if(valid_psc > 2*invalid_psc + 6){
60         return AVPROBE_SCORE_EXTENSION;
61     }else if(valid_psc > 2*invalid_psc + 2)
62         return AVPROBE_SCORE_EXTENSION / 2;
63     return 0;
64 }
65
66 FF_DEF_RAWVIDEO_DEMUXER(h261, "raw H.261", h261_probe, "h261", AV_CODEC_ID_H261)