meta.c
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * meta.c : Metadata handling
- *****************************************************************************
- * Copyright (C) 1998-2004 the VideoLAN team
- * $Id: ad97c296753d4eba7885cad125eba49b0c1cb568 $
- *
- * Authors: Antoine Cellerier <dionoea@videolan.org>
- * Clément Stenac <zorglub@videolan.org
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 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 General Public License for more details.
- *
- * You should have received a copy of the GNU 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_playlist.h>
- #include "input_internal.h"
- #include "../playlist/art.h"
- /* FIXME bad name convention */
- const char * input_MetaTypeToLocalizedString( vlc_meta_type_t meta_type )
- {
- switch( meta_type )
- {
- case vlc_meta_Title: return _("Title");
- case vlc_meta_Artist: return _("Artist");
- case vlc_meta_Genre: return _("Genre");
- case vlc_meta_Copyright: return _("Copyright");
- case vlc_meta_Album: return _("Album");
- case vlc_meta_TrackNumber: return _("Track number");
- case vlc_meta_Description: return _("Description");
- case vlc_meta_Rating: return _("Rating");
- case vlc_meta_Date: return _("Date");
- case vlc_meta_Setting: return _("Setting");
- case vlc_meta_URL: return _("URL");
- case vlc_meta_Language: return _("Language");
- case vlc_meta_NowPlaying: return _("Now Playing");
- case vlc_meta_Publisher: return _("Publisher");
- case vlc_meta_EncodedBy: return _("Encoded by");
- case vlc_meta_ArtworkURL: return _("Artwork URL");
- case vlc_meta_TrackID: return _("Track ID");
- default: abort();
- }
- };
- void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input )
- {
- input_item_t *p_item = p_input->p->p_item;
- /* */
- char *psz_arturl = input_item_GetArtURL( p_item );
- if( !psz_arturl || strncmp( psz_arturl, "attachment://", strlen("attachment://") ) )
- {
- msg_Err( p_input, "internal input error with input_ExtractAttachmentAndCacheArt" );
- free( psz_arturl );
- return;
- }
- playlist_t *p_playlist = pl_Hold( p_input );
- if( !p_playlist )
- {
- free( psz_arturl );
- return;
- }
- if( input_item_IsArtFetched( p_item ) )
- {
- /* XXX Weird, we should not have end up with attachment:// art url unless there is a race
- * condition */
- msg_Warn( p_input, "internal input error with input_ExtractAttachmentAndCacheArt" );
- playlist_FindArtInCache( p_item );
- goto exit;
- }
- /* */
- input_attachment_t *p_attachment = NULL;
- vlc_mutex_lock( &p_item->lock );
- for( int i_idx = 0; i_idx < p_input->p->i_attachment; i_idx++ )
- {
- if( !strcmp( p_input->p->attachment[i_idx]->psz_name,
- &psz_arturl[strlen("attachment://")] ) )
- {
- p_attachment = vlc_input_attachment_Duplicate( p_input->p->attachment[i_idx] );
- break;
- }
- }
- vlc_mutex_unlock( &p_item->lock );
- if( !p_attachment || p_attachment->i_data <= 0 )
- {
- if( p_attachment )
- vlc_input_attachment_Delete( p_attachment );
- msg_Warn( p_input, "internal input error with input_ExtractAttachmentAndCacheArt" );
- goto exit;
- }
- /* */
- const char *psz_type = NULL;
- if( !strcmp( p_attachment->psz_mime, "image/jpeg" ) )
- psz_type = ".jpg";
- else if( !strcmp( p_attachment->psz_mime, "image/png" ) )
- psz_type = ".png";
- /* */
- playlist_SaveArt( p_playlist, p_item,
- p_attachment->p_data, p_attachment->i_data, psz_type );
- vlc_input_attachment_Delete( p_attachment );
- exit:
- pl_Release( p_input );
- free( psz_arturl );
- }