From 7d9488cf0055fb8baf3b1d619d30824e7f8c4a10 Mon Sep 17 00:00:00 2001 From: Jai Menon Date: Sun, 18 Jul 2010 18:43:31 +0530 Subject: [PATCH] AVFormat : Don't drop metadata keys. The current code seems to require _all_ metadata fields to be populated which seems a bit unreasonable. Signed-off-by: Jean-Baptiste Kempf --- modules/demux/avformat/demux.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/modules/demux/avformat/demux.c b/modules/demux/avformat/demux.c index 91092438e4..91608f032a 100644 --- a/modules/demux/avformat/demux.c +++ b/modules/demux/avformat/demux.c @@ -766,13 +766,6 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) { vlc_meta_t *p_meta = (vlc_meta_t*)va_arg( args, vlc_meta_t* ); - if( !p_sys->ic->title[0] || !p_sys->ic->author[0] || - !p_sys->ic->copyright[0] || !p_sys->ic->comment[0] || - /*!p_sys->ic->album[0] ||*/ !p_sys->ic->genre[0] ) - { - return VLC_EGENERIC; - } - if( p_sys->ic->title[0] ) vlc_meta_SetTitle( p_meta, p_sys->ic->title ); if( p_sys->ic->author[0] ) -- 2.39.2