2 * RAW H.264 video demuxer
3 * Copyright (c) 2008 Michael Niedermayer <michaelni@gmx.at>
5 * This file is part of FFmpeg.
7 * FFmpeg 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.
12 * FFmpeg 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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavcodec/get_bits.h"
23 #include "libavcodec/golomb.h"
27 #define MAX_SPS_COUNT 32
28 #define MAX_PPS_COUNT 256
30 static int h264_probe(const AVProbeData
*p
)
33 int sps
= 0, pps
= 0, idr
= 0, res
= 0, sli
= 0;
35 int pps_ids
[MAX_PPS_COUNT
+1] = {0};
36 int sps_ids
[MAX_SPS_COUNT
+1] = {0};
37 unsigned pps_id
, sps_id
;
40 for (i
= 0; i
+ 2 < p
->buf_size
; i
++) {
41 code
= (code
<< 8) + p
->buf
[i
];
42 if ((code
& 0xffffff00) == 0x100) {
43 int ref_idc
= (code
>> 5) & 3;
44 int type
= code
& 0x1F;
45 static const int8_t ref_zero
[] = {
46 2, 0, 0, 0, 0, -1, 1, -1,
47 -1, 1, 1, 1, 1, -1, 2, 2,
48 2, 2, 2, 0, 2, 2, 2, 2,
49 2, 2, 2, 2, 2, 2, 2, 2
52 if (code
& 0x80) // forbidden_bit
55 if (ref_zero
[type
] == 1 && ref_idc
)
57 if (ref_zero
[type
] == -1 && !ref_idc
)
59 if (ref_zero
[type
] == 2) {
60 if (!(code
== 0x100 && !p
->buf
[i
+ 1] && !p
->buf
[i
+ 2]))
64 ret
= init_get_bits8(&gb
, p
->buf
+ i
+ 1, p
->buf_size
- i
- 1);
71 get_ue_golomb_long(&gb
);
72 if (get_ue_golomb_long(&gb
) > 9U)
74 pps_id
= get_ue_golomb_long(&gb
);
75 if (pps_id
> MAX_PPS_COUNT
)
90 sps_id
= get_ue_golomb_long(&gb
);
91 if (sps_id
> MAX_SPS_COUNT
)
97 pps_id
= get_ue_golomb_long(&gb
);
98 if (pps_id
> MAX_PPS_COUNT
)
100 sps_id
= get_ue_golomb_long(&gb
);
101 if (sps_id
> MAX_SPS_COUNT
)
103 if (!sps_ids
[sps_id
])
111 ff_tlog(NULL
, "sps:%d pps:%d idr:%d sli:%d res:%d\n", sps
, pps
, idr
, sli
, res
);
113 if (sps
&& pps
&& (idr
|| sli
> 3) && res
< (sps
+ pps
+ idr
))
114 return AVPROBE_SCORE_EXTENSION
+ 1; // 1 more than .mpg
119 FF_DEF_RAWVIDEO_DEMUXER(h264
, "raw H.264 video", h264_probe
, "h26l,h264,264,avc", AV_CODEC_ID_H264
)