Home
last modified time | relevance | path

Searched refs:type_e (Results 1 – 25 of 275) sorted by relevance

1234567891011

/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/tests/unit/common/
H A Dcodec.cpp23 EXPECT_TRUE(codec_c::look_up("mp4a").is(codec_c::type_e::A_AAC)); in TEST()
24 EXPECT_TRUE(codec_c::look_up("aac ").is(codec_c::type_e::A_AAC)); in TEST()
25 EXPECT_TRUE(codec_c::look_up("aacl").is(codec_c::type_e::A_AAC)); in TEST()
26 EXPECT_TRUE(codec_c::look_up("aach").is(codec_c::type_e::A_AAC)); in TEST()
27 EXPECT_TRUE(codec_c::look_up("raac").is(codec_c::type_e::A_AAC)); in TEST()
28 EXPECT_TRUE(codec_c::look_up("racp").is(codec_c::type_e::A_AAC)); in TEST()
32 EXPECT_TRUE(codec_c::look_up("a52 ").is(codec_c::type_e::A_AC3)); in TEST()
33 EXPECT_TRUE(codec_c::look_up("a52b").is(codec_c::type_e::A_AC3)); in TEST()
34 EXPECT_TRUE(codec_c::look_up("ac-3").is(codec_c::type_e::A_AC3)); in TEST()
245 EXPECT_TRUE(codec_c::look_up(codec_c::type_e::S_KATE).is(codec_c::type_e::S_KATE)); in TEST()
[all …]
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/src/common/
H A Dcodec.cpp36 codec_c::type_e type{codec_c::type_e::UNKNOWN};
55 codec_c::type_e p_type, in codec_private_c()
78 type_e type, in codec_c()
89 type_e type, in codec_c()
99 type_e type, in codec_c()
109 type_e type, in codec_c()
210 return p_func()->type != type_e::UNKNOWN; in valid()
219 codec_c::is(type_e type) in is()
224 codec_c::type_e
278 codec_c::look_up(type_e type) { in look_up()
[all …]
H A Dcodec.h103 enum class type_e { enum
184 …codec_c(std::string const &name, type_e type, track_type p_track_type, std::string const &match_re…
185 …codec_c(std::string const &name, type_e type, track_type p_track_type, std::string const &match_re…
186 …codec_c(std::string const &name, type_e type, track_type p_track_type, std::string const &match_re…
187 …codec_c(std::string const &name, type_e type, track_type p_track_type, std::string const &match_re…
197 bool is(type_e type) const;
200 type_e get_type() const;
216 static codec_c const look_up(type_e type);
221 static std::string const get_name(type_e type, std::string const &fallback);
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/src/input/
H A Dr_wav.cpp45 wav_reader_c::type_e
48 return type_e::unknown; in determine_type()
57 return type_e::unknown; in determine_type()
65 return type_e::wave; in determine_type()
69 return type_e::rf64; in determine_type()
73 return type_e::wave64; in determine_type()
76 return type_e::unknown; in determine_type()
79 return type_e::unknown; in determine_type()
147 if ((m_type == type_e::rf64) || (m_type == type_e::wave)) in dump_headers()
156 if (m_type == type_e::rf64) in dump_headers()
[all …]
H A Dr_ivf.cpp37 …return m_codec.is(codec_c::type_e::V_AV1) || m_codec.is(codec_c::type_e::V_VP8) || m_codec.is(code… in probe_file()
64 if (m_codec.is(codec_c::type_e::V_AV1)) in create_packetizer()
67 else if (m_codec.is(codec_c::type_e::V_VP8) || m_codec.is(codec_c::type_e::V_VP9)) in create_packetizer()
H A Dr_mpeg_ps.cpp1047 if (track->codec.is(codec_c::type_e::V_MPEG12)) in found_new_stream()
1050 else if (track->codec.is(codec_c::type_e::A_MP3)) in found_new_stream()
1053 else if (track->codec.is(codec_c::type_e::A_AC3)) in found_new_stream()
1056 else if (track->codec.is(codec_c::type_e::A_DTS)) in found_new_stream()
1059 else if (track->codec.is(codec_c::type_e::V_VC1)) in found_new_stream()
1062 else if (track->codec.is(codec_c::type_e::A_TRUEHD)) in found_new_stream()
1065 else if (track->codec.is(codec_c::type_e::A_PCM)) in found_new_stream()
1209 if (track->codec.is(codec_c::type_e::A_MP3)) { in create_packetizer()
1213 } else if (track->codec.is(codec_c::type_e::A_AC3)) { in create_packetizer()
1233 if (track->codec.is(codec_c::type_e::V_MPEG12)) { in create_packetizer()
[all …]
H A Dr_mpeg_ts.cpp624 if (codec.is(codec_c::type_e::S_HDMV_PGS)) in handle_bogus_subtitle_timestamps()
655 codec = codec_c::look_up(codec_c::type_e::A_AC3); in parse_ac3_pmt_descriptor()
667 codec = codec_c::look_up(codec_c::type_e::A_DTS); in parse_dts_pmt_descriptor()
819 if (codec.is(codec_c::type_e::S_HDMV_TEXTST)) in derive_pts_from_content()
2153 if (track.codec.is(codec_c::type_e::V_MPEG12)) in determine_track_parameters()
2174 if (track.codec.is(codec_c::type_e::A_MP3)) in determine_track_parameters()
2176 else if (track.codec.is(codec_c::type_e::A_AAC)) in determine_track_parameters()
2178 else if (track.codec.is(codec_c::type_e::A_AC3)) in determine_track_parameters()
2180 else if (track.codec.is(codec_c::type_e::A_DTS)) in determine_track_parameters()
2182 else if (track.codec.is(codec_c::type_e::A_PCM)) in determine_track_parameters()
[all …]
/dports/multimedia/mkvtoolnix/mkvtoolnix-65.0.0/src/common/tags/
H A Dvorbis.h28 enum class type_e { enum
36 type_e m_type{type_e::Unknown};
41 return type_e::Unknown != m_type; in valid()
H A Dvorbis.cpp132 parse_metadata_block_picture(vorbis_comments_t::type_e comments_type, in parse_metadata_block_picture()
134 if (vorbis_comments_t::type_e::Unknown == comments_type) in parse_metadata_block_picture()
232 comments.m_type = vorbis_comments_t::type_e::Opus; in parse_vorbis_comments_from_packet()
236 comments.m_type = vorbis_comments_t::type_e::Vorbis; in parse_vorbis_comments_from_packet()
240 comments.m_type = vorbis_comments_t::type_e::VP8; in parse_vorbis_comments_from_packet()
283 if (vorbis_comments_t::type_e::Vorbis == comments.m_type) in assemble_vorbis_comments_into_packet()
286 else if (vorbis_comments_t::type_e::Opus == comments.m_type) in assemble_vorbis_comments_into_packet()
289 else if (vorbis_comments_t::type_e::VP8 == comments.m_type) in assemble_vorbis_comments_into_packet()
307 if (vorbis_comments_t::type_e::Vorbis == comments.m_type) in assemble_vorbis_comments_into_packet()
/dports/astro/qmapshack/qmapshack-V_1.16.1/src/qmapshack/gis/db/
H A DIDBFolder.h38 enum type_e enum
47 IDBFolder(bool isLoadable, QSqlDatabase& db, type_e type, quint64 id, QTreeWidgetItem* parent);
48 IDBFolder(bool isLoadable, QSqlDatabase& db, type_e type, quint64 id, QTreeWidget* parent);
90 virtual quint64 addFolder(type_e type, const QString& name);
133 …static quint64 addFolderToDb(type_e type, const QString& name, quint64 idParent, QSqlDatabase& db);
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/graphics/llvm-mesa/llvm-13.0.1.src/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/llvm10/llvm-10.0.1.src/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/llvm11/llvm-11.0.1.src/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/llvm90/llvm-9.0.1.src/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/llvm80/llvm-8.0.1.src/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4
/dports/devel/llvm70/llvm-7.0.1.src/test/CodeGen/X86/
H A Dremat-fold-load.ll17 %type_e = type { %type_c, i64 }
58 %tmp9 = load %type_e*, %type_e** undef, align 4
59 %len_.i.i.i.i86 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 0
69 %tmp12 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1
76 %i_.i.i.i.i93 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 0, i32 1, i32 0
81 %second3.i.i97 = getelementptr inbounds %type_e, %type_e* %tmp9, i32 0, i32 1
127 %.pre = load %type_e*, %type_e** undef, align 4

1234567891011