Home
last modified time | relevance | path

Searched refs:mimeType (Results 1 – 25 of 47) sorted by relevance

12

/third_party/gstreamer/gstplugins_bad/ext/dash/
Dgstmpdhelper.c137 gst_mpd_helper_mimetype_to_caps (const gchar * mimeType) in gst_mpd_helper_mimetype_to_caps() argument
139 if (mimeType == NULL) in gst_mpd_helper_mimetype_to_caps()
141 if (strcmp (mimeType, "video/mp2t") == 0) { in gst_mpd_helper_mimetype_to_caps()
143 } else if (strcmp (mimeType, "video/mp4") == 0) { in gst_mpd_helper_mimetype_to_caps()
145 } else if (strcmp (mimeType, "audio/mp4") == 0) { in gst_mpd_helper_mimetype_to_caps()
147 } else if (strcmp (mimeType, "text/vtt") == 0) { in gst_mpd_helper_mimetype_to_caps()
150 return mimeType; in gst_mpd_helper_mimetype_to_caps()
Dgstmpdrepresentationbasenode.c92 g_free (self->mimeType); in gst_mpd_representation_base_node_set_property()
93 self->mimeType = g_value_dup_string (value); in gst_mpd_representation_base_node_set_property()
157 g_value_set_string (value, self->mimeType); in gst_mpd_representation_base_node_get_property()
201 if (self->mimeType) in gst_mpd_representation_base_node_finalize()
202 xmlFree (self->mimeType); in gst_mpd_representation_base_node_finalize()
249 self->mimeType); in gst_mpd_representation_base_get_xml_node()
325 self->mimeType = NULL; in gst_mpd_representation_base_node_init()
Dgstmpdclient.c1641 stream->mimeType = in gst_mpd_client_setup_streaming()
1643 if (stream->mimeType == GST_STREAM_UNKNOWN) { in gst_mpd_client_setup_streaming()
1656 stream->mimeType); in gst_mpd_client_setup_streaming()
2681 const gchar *mimeType; in gst_mpd_client_active_stream_contains_subtitles() local
2685 mimeType = in gst_mpd_client_active_stream_contains_subtitles()
2686 GST_MPD_REPRESENTATION_BASE_NODE (stream->cur_representation)->mimeType; in gst_mpd_client_active_stream_contains_subtitles()
2687 if (!mimeType) in gst_mpd_client_active_stream_contains_subtitles()
2688 mimeType = in gst_mpd_client_active_stream_contains_subtitles()
2689 GST_MPD_REPRESENTATION_BASE_NODE (stream->cur_adapt_set)->mimeType; in gst_mpd_client_active_stream_contains_subtitles()
2691 if (g_strcmp0 (mimeType, "application/ttml+xml") == 0 || in gst_mpd_client_active_stream_contains_subtitles()
[all …]
Dgstmpdrepresentationbasenode.h43 gchar *mimeType; member
Dgstmpdhelper.h63 const gchar * gst_mpd_helper_mimetype_to_caps (const gchar * mimeType);
Dgstmpdparser.h129 GstStreamMimeType mimeType; /* video/audio/application */ member
Dgstdashdemux.c806 && active_stream->mimeType == GST_STREAM_AUDIO) { in gst_dash_demux_setup_all_streams()
1073 switch (stream->mimeType) { in gst_dash_demux_create_pad()
1217 switch (stream->mimeType) { in gst_dash_demux_get_input_caps()
2097 dashstream->active_stream->mimeType == GST_STREAM_VIDEO) { in gst_dash_demux_stream_advance_fragment()
2203 if (active_stream->mimeType == GST_STREAM_VIDEO && demux->max_bitrate) { in gst_dash_demux_stream_select_bitrate()
2641 && dashstream->active_stream->mimeType == GST_STREAM_VIDEO) in gst_dash_demux_stream_fragment_start()
2662 && dashstream->active_stream->mimeType == GST_STREAM_VIDEO) in gst_dash_demux_stream_fragment_finished()
2699 && dashstream->active_stream->mimeType == GST_STREAM_VIDEO in gst_dash_demux_need_another_chunk()
3305 if (dash_stream->active_stream->mimeType == GST_STREAM_VIDEO in gst_dash_demux_handle_isobmff()
3386 if (dash_stream->active_stream->mimeType == GST_STREAM_VIDEO in gst_dash_demux_handle_isobmff()
Dgstmpdparser.c539 &representation_base->mimeType); in gst_mpdparser_parse_representation_base()
1406 mime = GST_MPD_REPRESENTATION_BASE_NODE (rep)->mimeType; in gst_mpdparser_representation_get_mimetype()
1408 mime = GST_MPD_REPRESENTATION_BASE_NODE (adapt_set)->mimeType; in gst_mpdparser_representation_get_mimetype()
/third_party/node/deps/npm/node_modules/request/lib/
Dhar.js65 return data.postData.mimeType.indexOf(type) === 0
75 data.postData.mimeType = 'multipart/form-data'
91 data.postData.mimeType = 'application/json'
100 data.postData.mimeType = 'text/plain'
129 har.postData.mimeType = har.postData.mimeType || 'application/octet-stream'
160 return req.postData.mimeType.indexOf(type) === 0
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/audio/
DNDKExtractor.cpp80 const char *mimeType; in decode() local
81 if (AMediaFormat_getString(format, AMEDIAFORMAT_KEY_MIME, &mimeType)) { in decode()
82 LOGD("Got mime type %s", mimeType); in decode()
91 codec = AMediaCodec_createDecoderByType(mimeType); in decode()
/third_party/skia/src/ports/
DSkImageGeneratorNDK.cpp114 const char* mimeType = AImageDecoderHeaderInfo_getMimeType(headerInfo); in set_target_size() local
115 if (0 == strcmp(mimeType, "image/jpeg")) { in set_target_size()
127 } else if (0 == strcmp(mimeType, "image/webp")) { in set_target_size()
/third_party/libxml2/
Dnanohttp.c147 char *mimeType; /* Mime-Type extracted from the contentType */ member
434 if (ctxt->mimeType != NULL) xmlFree(ctxt->mimeType); in xmlNanoHTTPFreeCtxt()
755 if (ctxt->mimeType != NULL) in xmlNanoHTTPScanAnswer()
756 xmlFree(ctxt->mimeType); in xmlNanoHTTPScanAnswer()
757 ctxt->mimeType = (char *) xmlStrndup(mime, last - mime); in xmlNanoHTTPScanAnswer()
780 if (ctxt->mimeType != NULL) in xmlNanoHTTPScanAnswer()
781 xmlFree(ctxt->mimeType); in xmlNanoHTTPScanAnswer()
782 ctxt->mimeType = (char *) xmlStrndup(mime, last - mime); in xmlNanoHTTPScanAnswer()
1806 return ( ( ctxt == NULL ) ? NULL : ctxt->mimeType ); in xmlNanoHTTPMimeType()
/third_party/gettext/gnulib-local/lib/libxml/
Dnanohttp.c176 char *mimeType; /* Mime-Type extracted from the contentType */ member
463 if (ctxt->mimeType != NULL) xmlFree(ctxt->mimeType); in xmlNanoHTTPFreeCtxt()
784 if (ctxt->mimeType != NULL) in xmlNanoHTTPScanAnswer()
785 xmlFree(ctxt->mimeType); in xmlNanoHTTPScanAnswer()
786 ctxt->mimeType = (char *) xmlStrndup(mime, last - mime); in xmlNanoHTTPScanAnswer()
809 if (ctxt->mimeType != NULL) in xmlNanoHTTPScanAnswer()
810 xmlFree(ctxt->mimeType); in xmlNanoHTTPScanAnswer()
811 ctxt->mimeType = (char *) xmlStrndup(mime, last - mime); in xmlNanoHTTPScanAnswer()
1835 return ( ( ctxt == NULL ) ? NULL : ctxt->mimeType ); in xmlNanoHTTPMimeType()
/third_party/cef/libcef_dll/ctocpp/
Dresponse_ctocpp.cc144 void CefResponseCToCpp::SetMimeType(const CefString& mimeType) { in SetMimeType() argument
154 _struct->set_mime_type(_struct, mimeType.GetStruct()); in SetMimeType()
Dresponse_ctocpp.h45 void SetMimeType(const CefString& mimeType) override;
/third_party/cef/libcef/common/
Dresponse_impl.cc83 void CefResponseImpl::SetMimeType(const CefString& mimeType) { in SetMimeType() argument
86 mime_type_ = mimeType; in SetMimeType()
Dresponse_impl.h35 void SetMimeType(const CefString& mimeType) override;
/third_party/cef/libcef_dll/cpptoc/
Dresponse_cpptoc.cc144 const cef_string_t* mimeType) { in response_set_mime_type() argument
153 CefResponseCppToC::Get(self)->SetMimeType(CefString(mimeType)); in response_set_mime_type()
/third_party/cef/include/
Dcef_response.h112 virtual void SetMimeType(const CefString& mimeType) = 0;
/third_party/cef/include/capi/
Dcef_response_capi.h110 const cef_string_t* mimeType);
/third_party/flutter/flutter/dev/bots/
Dunpublish_package.dart370 String mimeType;
372 mimeType = 'application/x-gtar';
375 mimeType = 'application/zip';
378 mimeType = 'application/json';
383 if (mimeType != null) ...<String>['-h', 'Content-Type:$mimeType'],
Dprepare_package.dart594 String mimeType;
596 mimeType = 'application/x-gtar';
599 mimeType = 'application/zip';
602 mimeType = 'application/json';
607 if (mimeType != null) ...<String>['-h', 'Content-Type:$mimeType'],
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_pasteboard.js123 mimeType: '[PC preview] unknow mimeType', property
/third_party/cef/tests/ceftests/
Dtest_handler.h35 const std::string& mimeType() const { return mime_type_; } in mimeType() function
/third_party/gstreamer/gstplugins_bad/tests/check/elements/
Ddash_mpd.c1281 assert_equals_string (representationBase->mimeType, "TestMimeType"); in GST_START_TEST()
3131 assert_equals_int (activeStream->mimeType, GST_STREAM_VIDEO); in GST_START_TEST()
3147 assert_equals_int (activeStream->mimeType, GST_STREAM_AUDIO); in GST_START_TEST()
3691 assert_equals_int (activeStream->mimeType, GST_STREAM_VIDEO); in GST_START_TEST()
3696 assert_equals_int (activeStream->mimeType, GST_STREAM_AUDIO); in GST_START_TEST()
3701 assert_equals_int (activeStream->mimeType, GST_STREAM_APPLICATION); in GST_START_TEST()
3771 assert_equals_int (activeStream->mimeType, GST_STREAM_VIDEO); in GST_START_TEST()
6417 (first_adap_set)->mimeType, in GST_START_TEST()
6418 GST_MPD_REPRESENTATION_BASE_NODE (second_adap_set)->mimeType); in GST_START_TEST()
6428 assert_equals_string (GST_MPD_REPRESENTATION_BASE_NODE (first_rep)->mimeType, in GST_START_TEST()
[all …]

12