mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
uridecodebin: remove commented code
This is dead since ~6 years.
This commit is contained in:
parent
8c390fe80a
commit
f19acfc60b
1 changed files with 0 additions and 9 deletions
|
@ -1182,14 +1182,6 @@ static const gchar *queue_uris[] = { "cdda://", NULL };
|
||||||
/* blacklisted URIs, we know they will always fail. */
|
/* blacklisted URIs, we know they will always fail. */
|
||||||
static const gchar *blacklisted_uris[] = { NULL };
|
static const gchar *blacklisted_uris[] = { NULL };
|
||||||
|
|
||||||
/* mime types that we don't consider to be media types */
|
|
||||||
#if 0
|
|
||||||
static const gchar *no_media_mimes[] = {
|
|
||||||
"application/x-executable", "application/x-bzip", "application/x-gzip",
|
|
||||||
"application/zip", "application/x-compress", NULL
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* media types we can download */
|
/* media types we can download */
|
||||||
static const gchar *download_media[] = {
|
static const gchar *download_media[] = {
|
||||||
"video/quicktime", "video/mj2", "audio/x-m4a", "application/x-3gp",
|
"video/quicktime", "video/mj2", "audio/x-m4a", "application/x-3gp",
|
||||||
|
@ -1199,7 +1191,6 @@ static const gchar *download_media[] = {
|
||||||
#define IS_STREAM_URI(uri) (array_has_uri_value (stream_uris, uri))
|
#define IS_STREAM_URI(uri) (array_has_uri_value (stream_uris, uri))
|
||||||
#define IS_QUEUE_URI(uri) (array_has_uri_value (queue_uris, uri))
|
#define IS_QUEUE_URI(uri) (array_has_uri_value (queue_uris, uri))
|
||||||
#define IS_BLACKLISTED_URI(uri) (array_has_uri_value (blacklisted_uris, uri))
|
#define IS_BLACKLISTED_URI(uri) (array_has_uri_value (blacklisted_uris, uri))
|
||||||
#define IS_NO_MEDIA_MIME(mime) (array_has_value (no_media_mimes, mime))
|
|
||||||
#define IS_DOWNLOAD_MEDIA(media) (array_has_value (download_media, media))
|
#define IS_DOWNLOAD_MEDIA(media) (array_has_value (download_media, media))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue