forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move mime type guessing by extension to separate file and export it
Signed-off-by: Jean-Baptiste Kempf <[email protected]>
- Loading branch information
Showing
6 changed files
with
145 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/***************************************************************************** | ||
* vlc_mime.h: Mime type recognition | ||
***************************************************************************** | ||
* Copyright (C) 2012 VLC authors and VideoLAN | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation; either version 2.1 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. | ||
*****************************************************************************/ | ||
|
||
#ifndef VLC_MIME_H | ||
#define VLC_MIME_H 1 | ||
|
||
/** | ||
* \file | ||
* Mime type recognition helpers. | ||
*/ | ||
|
||
VLC_API const char * vlc_mime_Ext2Mime( const char *psz_url ); | ||
|
||
#endif /* _VLC_MIME_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
/***************************************************************************** | ||
* mime.c | ||
***************************************************************************** | ||
* Copyright © 2004-2012 VLC authors and VideoLAN | ||
* Copyright © 2004-2007 Rémi Denis-Courmont | ||
* | ||
* Authors: Laurent Aimar <[email protected]> | ||
* Rémi Denis-Courmont <rem # videolan.org> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation; either version 2.1 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. | ||
*****************************************************************************/ | ||
|
||
#ifdef HAVE_CONFIG_H | ||
# include "config.h" | ||
#endif | ||
|
||
#include <vlc_common.h> | ||
#include <vlc_mime.h> | ||
|
||
#include <string.h> | ||
|
||
static const struct | ||
{ | ||
const char psz_ext[8]; | ||
const char *psz_mime; | ||
} ext_mime[] = | ||
{ | ||
{ ".htm", "text/html" }, | ||
{ ".html", "text/html" }, | ||
{ ".txt", "text/plain" }, | ||
{ ".xml", "text/xml" }, | ||
{ ".dtd", "text/dtd" }, | ||
|
||
{ ".css", "text/css" }, | ||
|
||
/* image mime */ | ||
{ ".gif", "image/gif" }, | ||
{ ".jpe", "image/jpeg" }, | ||
{ ".jpg", "image/jpeg" }, | ||
{ ".jpeg", "image/jpeg" }, | ||
{ ".png", "image/png" }, | ||
/* same as modules/mux/mpjpeg.c here: */ | ||
{ ".mpjpeg","multipart/x-mixed-replace; boundary=7b3cc56e5f51db803f790dad720ed50a" }, | ||
|
||
/* media mime */ | ||
{ ".avi", "video/avi" }, | ||
{ ".asf", "video/x-ms-asf" }, | ||
{ ".m1a", "audio/mpeg" }, | ||
{ ".m2a", "audio/mpeg" }, | ||
{ ".m1v", "video/mpeg" }, | ||
{ ".m2v", "video/mpeg" }, | ||
{ ".mp2", "audio/mpeg" }, | ||
{ ".mp3", "audio/mpeg" }, | ||
{ ".mpa", "audio/mpeg" }, | ||
{ ".mpg", "video/mpeg" }, | ||
{ ".mpeg", "video/mpeg" }, | ||
{ ".mpe", "video/mpeg" }, | ||
{ ".mov", "video/quicktime" }, | ||
{ ".moov", "video/quicktime" }, | ||
{ ".oga", "audio/ogg" }, | ||
{ ".ogg", "application/ogg" }, | ||
{ ".ogm", "application/ogg" }, | ||
{ ".ogv", "video/ogg" }, | ||
{ ".ogx", "application/ogg" }, | ||
{ ".spx", "audio/ogg" }, | ||
{ ".wav", "audio/wav" }, | ||
{ ".wma", "audio/x-ms-wma" }, | ||
{ ".wmv", "video/x-ms-wmv" }, | ||
{ ".webm", "video/webm" }, | ||
|
||
/* end */ | ||
{ "", "" } | ||
}; | ||
|
||
const char *vlc_mime_Ext2Mime( const char *psz_url ) | ||
{ | ||
|
||
char *psz_ext; | ||
|
||
psz_ext = strrchr( psz_url, '.' ); | ||
if( psz_ext ) | ||
{ | ||
int i; | ||
|
||
for( i = 0; ext_mime[i].psz_ext[0] ; i++ ) | ||
{ | ||
if( !strcasecmp( ext_mime[i].psz_ext, psz_ext ) ) | ||
{ | ||
return ext_mime[i].psz_mime; | ||
} | ||
} | ||
} | ||
return "application/octet-stream"; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters