Home
last modified time | relevance | path

Searched refs:has_h264 (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstplugins_good/gst/isomp4/
Dgstqtmuxmap.c305 gboolean has_h264 = FALSE; in gst_qt_mux_map_check_tracks() local
313 has_h264 = TRUE; in gst_qt_mux_map_check_tracks()
323 *_has_h264 = has_h264; in gst_qt_mux_map_check_tracks()
373 gboolean has_h264; in gst_qt_mux_map_format_to_header() local
375 gst_qt_mux_map_check_tracks (moov, &video, &audio, &has_h264); in gst_qt_mux_map_format_to_header()
379 major = has_h264 ? FOURCC_3gp6 : FOURCC_3gp4; in gst_qt_mux_map_format_to_header()
380 version = has_h264 ? 0x100 : 0x200; in gst_qt_mux_map_format_to_header()
/third_party/ffmpeg/libavformat/
Dmovenc.c5044 int has_h264, int has_video, int write_minor) in mov_write_ftyp_tag_internal() argument
5052 ffio_wfourcc(pb, has_h264 ? "3gp6" : "3gp4"); in mov_write_ftyp_tag_internal()
5053 minor = has_h264 ? 0x100 : 0x200; in mov_write_ftyp_tag_internal()
5055 ffio_wfourcc(pb, has_h264 ? "3g2b" : "3g2a"); in mov_write_ftyp_tag_internal()
5056 minor = has_h264 ? 0x20000 : 0x10000; in mov_write_ftyp_tag_internal()
5085 int has_h264 = 0, has_av1 = 0, has_video = 0; in mov_write_ftyp_tag() local
5095 has_h264 = 1; in mov_write_ftyp_tag()
5104 mov_write_ftyp_tag_internal(pb, s, has_h264, has_video, 1); in mov_write_ftyp_tag()
5106 mov_write_ftyp_tag_internal(pb, s, has_h264, has_video, 0); in mov_write_ftyp_tag()
5137 if (has_h264) in mov_write_ftyp_tag()