1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/*****************************************************************************
* xiph_metadata.h: Vorbis Comment parser
*****************************************************************************
* Copyright © 2008-2013 VLC authors and VideoLAN
* $Id: f465243b3eb101e633927be0e42bf5e53dadfcb1 $
*
* Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
* Jean-Baptiste Kempf <jb@videolan.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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.
*****************************************************************************/
#include <vlc_charset.h>
#include <vlc_strings.h>
# ifdef __cplusplus
extern "C" {
# endif
input_attachment_t* ParseFlacPicture( const uint8_t *p_data, size_t i_data,
int i_attachments, int *i_cover_score, int *i_cover_idx );
void vorbis_ParseComment( es_format_t *p_fmt, vlc_meta_t **pp_meta,
const uint8_t *p_data, size_t i_data,
int *i_attachments, input_attachment_t ***attachments,
int *i_cover_score, int *i_cover_idx,
int *i_seekpoint, seekpoint_t ***ppp_seekpoint,
float (* ppf_replay_gain)[AUDIO_REPLAY_GAIN_MAX],
float (* ppf_replay_peak)[AUDIO_REPLAY_GAIN_MAX] );
static const struct {
const char *psz_tag;
const char *psz_i18n;
} Katei18nCategories[] = {
/* From Silvia's Mozilla list */
{ "CC", N_("Closed captions") },
{ "SUB", N_("Subtitles") },
{ "TAD", N_("Textual audio descriptions") },
{ "KTV", N_("Karaoke") },
{ "TIK", N_("Ticker text") },
{ "AR", N_("Active regions") },
{ "NB", N_("Semantic annotations") },
{ "META", N_("Metadata") },
{ "TRX", N_("Transcript") },
{ "LRC", N_("Lyrics") },
{ "LIN", N_("Linguistic markup") },
{ "CUE", N_("Cue points") },
/* Grandfathered */
{ "subtitles", N_("Subtitles") },
{ "spu-subtitles", N_("Subtitles (images)") },
{ "lyrics", N_("Lyrics") },
/* Kate specific */
{ "K-SPU", N_("Subtitles (images)") },
{ "K-SLD-T", N_("Slides (text)") },
{ "K-SLD-I", N_("Slides (images)") },
};
const char *FindKateCategoryName( const char *psz_tag );
# ifdef __cplusplus
}
# endif
|