| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * This file is part of FFmpeg. | ||
| 3 | * | ||
| 4 | * FFmpeg is free software; you can redistribute it and/or | ||
| 5 | * modify it under the terms of the GNU Lesser General Public | ||
| 6 | * License as published by the Free Software Foundation; either | ||
| 7 | * version 2.1 of the License, or (at your option) any later version. | ||
| 8 | * | ||
| 9 | * FFmpeg is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 12 | * Lesser General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU Lesser General Public | ||
| 15 | * License along with FFmpeg; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 17 | */ | ||
| 18 | |||
| 19 | #include <stdint.h> | ||
| 20 | |||
| 21 | #include "avcodec.h" | ||
| 22 | #include "parser_internal.h" | ||
| 23 | |||
| 24 | extern const FFCodecParser ff_aac_parser; | ||
| 25 | extern const FFCodecParser ff_aac_latm_parser; | ||
| 26 | extern const FFCodecParser ff_ac3_parser; | ||
| 27 | extern const FFCodecParser ff_adx_parser; | ||
| 28 | extern const FFCodecParser ff_ahx_parser; | ||
| 29 | extern const FFCodecParser ff_amr_parser; | ||
| 30 | extern const FFCodecParser ff_apv_parser; | ||
| 31 | extern const FFCodecParser ff_av1_parser; | ||
| 32 | extern const FFCodecParser ff_avs2_parser; | ||
| 33 | extern const FFCodecParser ff_avs3_parser; | ||
| 34 | extern const FFCodecParser ff_bmp_parser; | ||
| 35 | extern const FFCodecParser ff_cavsvideo_parser; | ||
| 36 | extern const FFCodecParser ff_cook_parser; | ||
| 37 | extern const FFCodecParser ff_cri_parser; | ||
| 38 | extern const FFCodecParser ff_dca_parser; | ||
| 39 | extern const FFCodecParser ff_dirac_parser; | ||
| 40 | extern const FFCodecParser ff_dnxhd_parser; | ||
| 41 | extern const FFCodecParser ff_dnxuc_parser; | ||
| 42 | extern const FFCodecParser ff_dolby_e_parser; | ||
| 43 | extern const FFCodecParser ff_dpx_parser; | ||
| 44 | extern const FFCodecParser ff_dvaudio_parser; | ||
| 45 | extern const FFCodecParser ff_dvbsub_parser; | ||
| 46 | extern const FFCodecParser ff_dvdsub_parser; | ||
| 47 | extern const FFCodecParser ff_dvd_nav_parser; | ||
| 48 | extern const FFCodecParser ff_evc_parser; | ||
| 49 | extern const FFCodecParser ff_flac_parser; | ||
| 50 | extern const FFCodecParser ff_ftr_parser; | ||
| 51 | extern const FFCodecParser ff_ffv1_parser; | ||
| 52 | extern const FFCodecParser ff_g723_1_parser; | ||
| 53 | extern const FFCodecParser ff_g729_parser; | ||
| 54 | extern const FFCodecParser ff_gif_parser; | ||
| 55 | extern const FFCodecParser ff_gsm_parser; | ||
| 56 | extern const FFCodecParser ff_h261_parser; | ||
| 57 | extern const FFCodecParser ff_h263_parser; | ||
| 58 | extern const FFCodecParser ff_h264_parser; | ||
| 59 | extern const FFCodecParser ff_hevc_parser; | ||
| 60 | extern const FFCodecParser ff_hdr_parser; | ||
| 61 | extern const FFCodecParser ff_ipu_parser; | ||
| 62 | extern const FFCodecParser ff_jpeg2000_parser; | ||
| 63 | extern const FFCodecParser ff_jpegxl_parser; | ||
| 64 | extern const FFCodecParser ff_jpegxs_parser; | ||
| 65 | extern const FFCodecParser ff_lcevc_parser; | ||
| 66 | extern const FFCodecParser ff_misc4_parser; | ||
| 67 | extern const FFCodecParser ff_mjpeg_parser; | ||
| 68 | extern const FFCodecParser ff_mlp_parser; | ||
| 69 | extern const FFCodecParser ff_mpeg4video_parser; | ||
| 70 | extern const FFCodecParser ff_mpegaudio_parser; | ||
| 71 | extern const FFCodecParser ff_mpegvideo_parser; | ||
| 72 | extern const FFCodecParser ff_opus_parser; | ||
| 73 | extern const FFCodecParser ff_prores_parser; | ||
| 74 | extern const FFCodecParser ff_png_parser; | ||
| 75 | extern const FFCodecParser ff_pnm_parser; | ||
| 76 | extern const FFCodecParser ff_prores_raw_parser; | ||
| 77 | extern const FFCodecParser ff_qoi_parser; | ||
| 78 | extern const FFCodecParser ff_rv34_parser; | ||
| 79 | extern const FFCodecParser ff_sbc_parser; | ||
| 80 | extern const FFCodecParser ff_sipr_parser; | ||
| 81 | extern const FFCodecParser ff_tak_parser; | ||
| 82 | extern const FFCodecParser ff_vc1_parser; | ||
| 83 | extern const FFCodecParser ff_vorbis_parser; | ||
| 84 | extern const FFCodecParser ff_vp3_parser; | ||
| 85 | extern const FFCodecParser ff_vp8_parser; | ||
| 86 | extern const FFCodecParser ff_vp9_parser; | ||
| 87 | extern const FFCodecParser ff_vvc_parser; | ||
| 88 | extern const FFCodecParser ff_webp_parser; | ||
| 89 | extern const FFCodecParser ff_xbm_parser; | ||
| 90 | extern const FFCodecParser ff_xma_parser; | ||
| 91 | extern const FFCodecParser ff_xwd_parser; | ||
| 92 | |||
| 93 | #include "libavcodec/parser_list.c" | ||
| 94 | |||
| 95 | 587744 | const AVCodecParser *av_parser_iterate(void **opaque) | |
| 96 | { | ||
| 97 | 587744 | uintptr_t i = (uintptr_t)*opaque; | |
| 98 | 587744 | const FFCodecParser *p = parser_list[i]; | |
| 99 | |||
| 100 |
2/2✓ Branch 0 taken 584125 times.
✓ Branch 1 taken 3619 times.
|
587744 | if (p) { |
| 101 | 584125 | *opaque = (void*)(i + 1); | |
| 102 | 584125 | return &p->p; | |
| 103 | } | ||
| 104 | |||
| 105 | 3619 | return NULL; | |
| 106 | } | ||
| 107 |