| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * RAW H.264 video demuxer | ||
| 3 | * Copyright (c) 2008 Michael Niedermayer <michaelni@gmx.at> | ||
| 4 | * | ||
| 5 | * This file is part of FFmpeg. | ||
| 6 | * | ||
| 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. | ||
| 11 | * | ||
| 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. | ||
| 16 | * | ||
| 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 | ||
| 20 | */ | ||
| 21 | |||
| 22 | #include "libavcodec/get_bits.h" | ||
| 23 | #include "libavcodec/golomb.h" | ||
| 24 | #include "avformat.h" | ||
| 25 | #include "rawdec.h" | ||
| 26 | |||
| 27 | #define MAX_SPS_COUNT 32 | ||
| 28 | #define MAX_PPS_COUNT 256 | ||
| 29 | |||
| 30 | 8042 | static int h264_probe(const AVProbeData *p) | |
| 31 | { | ||
| 32 | 8042 | uint32_t code = -1; | |
| 33 | 8042 | int sps = 0, pps = 0, idr = 0, res = 0, sli = 0; | |
| 34 | int i, ret; | ||
| 35 | 8042 | int pps_ids[MAX_PPS_COUNT+1] = {0}; | |
| 36 | 8042 | int sps_ids[MAX_SPS_COUNT+1] = {0}; | |
| 37 | unsigned pps_id, sps_id; | ||
| 38 | GetBitContext gb; | ||
| 39 | |||
| 40 |
2/2✓ Branch 0 taken 404261544 times.
✓ Branch 1 taken 6093 times.
|
404267637 | for (i = 0; i + 2 < p->buf_size; i++) { |
| 41 | 404261544 | code = (code << 8) + p->buf[i]; | |
| 42 |
2/2✓ Branch 0 taken 17382 times.
✓ Branch 1 taken 404244162 times.
|
404261544 | if ((code & 0xffffff00) == 0x100) { |
| 43 | 17382 | int ref_idc = (code >> 5) & 3; | |
| 44 | 17382 | 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 | ||
| 50 | }; | ||
| 51 | |||
| 52 |
2/2✓ Branch 0 taken 1294 times.
✓ Branch 1 taken 16088 times.
|
17382 | if (code & 0x80) // forbidden_bit |
| 53 | 1294 | return 0; | |
| 54 | |||
| 55 |
4/4✓ Branch 0 taken 476 times.
✓ Branch 1 taken 15612 times.
✓ Branch 2 taken 319 times.
✓ Branch 3 taken 157 times.
|
16088 | if (ref_zero[type] == 1 && ref_idc) |
| 56 | 319 | return 0; | |
| 57 |
4/4✓ Branch 0 taken 1175 times.
✓ Branch 1 taken 14594 times.
✓ Branch 2 taken 107 times.
✓ Branch 3 taken 1068 times.
|
15769 | if (ref_zero[type] == -1 && !ref_idc) |
| 58 | 107 | return 0; | |
| 59 |
2/2✓ Branch 0 taken 13257 times.
✓ Branch 1 taken 2405 times.
|
15662 | if (ref_zero[type] == 2) { |
| 60 |
6/6✓ Branch 0 taken 12251 times.
✓ Branch 1 taken 1006 times.
✓ Branch 2 taken 4831 times.
✓ Branch 3 taken 7420 times.
✓ Branch 4 taken 743 times.
✓ Branch 5 taken 4088 times.
|
13257 | if (!(code == 0x100 && !p->buf[i + 1] && !p->buf[i + 2])) |
| 61 | 9169 | res++; | |
| 62 | } | ||
| 63 | |||
| 64 | 15662 | ret = init_get_bits8(&gb, p->buf + i + 1, p->buf_size - i - 1); | |
| 65 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 15662 times.
|
15662 | if (ret < 0) |
| 66 | ✗ | return 0; | |
| 67 | |||
| 68 |
4/4✓ Branch 0 taken 615 times.
✓ Branch 1 taken 378 times.
✓ Branch 2 taken 310 times.
✓ Branch 3 taken 14359 times.
|
15662 | switch (type) { |
| 69 | 615 | case 1: | |
| 70 | case 5: | ||
| 71 | 615 | get_ue_golomb_long(&gb); | |
| 72 |
2/2✓ Branch 1 taken 70 times.
✓ Branch 2 taken 545 times.
|
615 | if (get_ue_golomb_long(&gb) > 9U) |
| 73 | 70 | return 0; | |
| 74 | 545 | pps_id = get_ue_golomb_long(&gb); | |
| 75 |
2/2✓ Branch 0 taken 21 times.
✓ Branch 1 taken 524 times.
|
545 | if (pps_id > MAX_PPS_COUNT) |
| 76 | 21 | return 0; | |
| 77 |
2/2✓ Branch 0 taken 115 times.
✓ Branch 1 taken 409 times.
|
524 | if (!pps_ids[pps_id]) |
| 78 | 115 | break; | |
| 79 | |||
| 80 |
2/2✓ Branch 0 taken 145 times.
✓ Branch 1 taken 264 times.
|
409 | if (type == 1) |
| 81 | 145 | sli++; | |
| 82 | else | ||
| 83 | 264 | idr++; | |
| 84 | 409 | break; | |
| 85 | 378 | case 7: | |
| 86 | 378 | skip_bits(&gb, 14); | |
| 87 |
2/2✓ Branch 1 taken 114 times.
✓ Branch 2 taken 264 times.
|
378 | if (get_bits(&gb, 2)) |
| 88 | 114 | return 0; | |
| 89 | 264 | skip_bits(&gb, 8); | |
| 90 | 264 | sps_id = get_ue_golomb_long(&gb); | |
| 91 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 264 times.
|
264 | if (sps_id > MAX_SPS_COUNT) |
| 92 | ✗ | return 0; | |
| 93 | 264 | sps_ids[sps_id] = 1; | |
| 94 | 264 | sps++; | |
| 95 | 264 | break; | |
| 96 | 310 | case 8: | |
| 97 | 310 | pps_id = get_ue_golomb_long(&gb); | |
| 98 |
2/2✓ Branch 0 taken 23 times.
✓ Branch 1 taken 287 times.
|
310 | if (pps_id > MAX_PPS_COUNT) |
| 99 | 23 | return 0; | |
| 100 | 287 | sps_id = get_ue_golomb_long(&gb); | |
| 101 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 286 times.
|
287 | if (sps_id > MAX_SPS_COUNT) |
| 102 | 1 | return 0; | |
| 103 |
2/2✓ Branch 0 taken 17 times.
✓ Branch 1 taken 269 times.
|
286 | if (!sps_ids[sps_id]) |
| 104 | 17 | break; | |
| 105 | 269 | pps_ids[pps_id] = 1; | |
| 106 | 269 | pps++; | |
| 107 | 269 | break; | |
| 108 | } | ||
| 109 | } | ||
| 110 | } | ||
| 111 | ff_tlog(NULL, "sps:%d pps:%d idr:%d sli:%d res:%d\n", sps, pps, idr, sli, res); | ||
| 112 | |||
| 113 |
9/10✓ Branch 0 taken 247 times.
✓ Branch 1 taken 5846 times.
✓ Branch 2 taken 246 times.
✓ Branch 3 taken 1 times.
✓ Branch 4 taken 23 times.
✓ Branch 5 taken 223 times.
✓ Branch 6 taken 8 times.
✓ Branch 7 taken 15 times.
✓ Branch 8 taken 231 times.
✗ Branch 9 not taken.
|
6093 | if (sps && pps && (idr || sli > 3) && res < (sps + pps + idr)) |
| 114 | 231 | return AVPROBE_SCORE_EXTENSION + 1; // 1 more than .mpg | |
| 115 | |||
| 116 | 5862 | return 0; | |
| 117 | } | ||
| 118 | |||
| 119 | FF_DEF_RAWVIDEO_DEMUXER(h264, "raw H.264 video", h264_probe, "h26l,h264,264,avc", AV_CODEC_ID_H264) | ||
| 120 |