Commit 6041d1db authored by Rémi Duraffort's avatar Rémi Duraffort

taglib: factorize.

parent cedacbef
...@@ -578,35 +578,23 @@ static int WriteMeta( vlc_object_t *p_this ) ...@@ -578,35 +578,23 @@ static int WriteMeta( vlc_object_t *p_this )
char *psz_meta; char *psz_meta;
#define SET( a, b ) \ #define SET( a, b ) \
if( b ) \ psz_meta = input_item_Get ## a( p_item ); \
{ \ if( psz_meta ) \
String* psz_tmp = new String( b, String::UTF8 ); \ { \
p_tag->set##a( *psz_tmp ); \ String* psz_tmp = new String( psz_meta, String::UTF8 ); \
delete psz_tmp; \ p_tag->set##b( *psz_tmp ); \
} delete psz_tmp; \
} \
free( psz_meta );
// Saving all common fields // Saving all common fields
// If the title is empty, use the name // If the title is empty, use the name
psz_meta = input_item_GetTitleFbName( p_item ); SET( TitleFbName, Title );
SET( Title, psz_meta ); SET( Artist, Artist );
free( psz_meta ); SET( Album, Album );
SET( Description, Comment );
psz_meta = input_item_GetArtist( p_item ); SET( Genre, Genre );
SET( Artist, psz_meta );
free( psz_meta );
psz_meta = input_item_GetAlbum( p_item );
SET( Album, psz_meta );
free( psz_meta );
psz_meta = input_item_GetDescription( p_item );
SET( Comment, psz_meta );
free( psz_meta );
psz_meta = input_item_GetGenre( p_item );
SET( Genre, psz_meta );
free( psz_meta );
#undef SET #undef SET
......
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