[vlc-commits] input: es_out: don't expect extra meta for valid	update
    Francois Cartegnie 
    git at videolan.org
       
    Sun Oct 16 19:47:13 CEST 2016
    
    
  
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sun Oct 16 19:23:33 2016 +0200| [36e35e75d83f8022df12c06b0526ba4f587efb95] | committer: Francois Cartegnie
input: es_out: don't expect extra meta for valid update
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=36e35e75d83f8022df12c06b0526ba4f587efb95
---
 src/input/es_out.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/input/es_out.c b/src/input/es_out.c
index ca7a113..901af55 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -1206,8 +1206,7 @@ static void EsOutProgramMeta( es_out_t *out, int i_group, const vlc_meta_t *p_me
     /* Check against empty meta data (empty for what we handle) */
     if( !vlc_meta_Get( p_meta, vlc_meta_Title) &&
         !vlc_meta_Get( p_meta, vlc_meta_ESNowPlaying) &&
-        !vlc_meta_Get( p_meta, vlc_meta_Publisher) &&
-        vlc_meta_GetExtraCount( p_meta ) <= 0 )
+        !vlc_meta_Get( p_meta, vlc_meta_Publisher) )
     {
         return;
     }
    
    
More information about the vlc-commits
mailing list