Commit 80b1c2b4 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Allow vorbis.h to be included in C++

parent 855f0b7d
...@@ -172,7 +172,8 @@ static inline void vorbis_ParseComment( vlc_meta_t **pp_meta, const uint8_t *p_d ...@@ -172,7 +172,8 @@ static inline void vorbis_ParseComment( vlc_meta_t **pp_meta, const uint8_t *p_d
snprintf( psz_url, sizeof(psz_url), "attachment://%s", p_attachment->psz_name ); snprintf( psz_url, sizeof(psz_url), "attachment://%s", p_attachment->psz_name );
vlc_meta_Set( p_meta, vlc_meta_ArtworkURL, psz_url ); vlc_meta_Set( p_meta, vlc_meta_ArtworkURL, psz_url );
i_attach++; i_attach++;
TAB_APPEND( *i_attachments, *attachments, p_attachment ); TAB_APPEND_CAST( (input_attachment_t**),
*i_attachments, *attachments, p_attachment );
} }
} }
else if( strchr( psz, '=' ) ) else if( strchr( psz, '=' ) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment