~ubuntu-branches/ubuntu/maverick/vlc/maverick

« back to all changes in this revision

Viewing changes to include/vlc_iso_lang.h

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2010-06-25 01:09:16 UTC
  • mfrom: (1.1.30 upstream)
  • Revision ID: james.westby@ubuntu.com-20100625010916-asxhep2mutg6g6pd
Tags: 1.1.0-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - build and install the libx264 plugin
  - add Xb-Npp header to vlc package
  - Add apport hook to include more vlc dependencies in bug reports
* Drop xulrunner patches.
* Drop 502_xulrunner_191.diff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * iso_lang.h: function to decode language code (in dvd or a52 for instance).
3
3
 *****************************************************************************
4
4
 * Copyright (C) 1998-2001 the VideoLAN team
5
 
 * $Id: 2d8ddb6fa9ac4593c3d80482bc62815c596cb866 $
 
5
 * $Id: e37739fcd51aa910ea33a9c5486c2e25386808e0 $
6
6
 *
7
7
 * Author: Stéphane Borel <stef@via.ecp.fr>
8
8
 *         Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr>
29
29
 
30
30
struct iso639_lang_t
31
31
{
32
 
    const char * psz_eng_name;        /* Description in English */
33
 
    const char * psz_native_name;     /* Description in native language */
34
 
    const char * psz_iso639_1;        /* ISO-639-1 (2 characters) code */
35
 
    const char * psz_iso639_2T;       /* ISO-639-2/T (3 characters) English code */
36
 
    const char * psz_iso639_2B;       /* ISO-639-2/B (3 characters) native code */
 
32
    const char *psz_eng_name;    /* Description in English */
 
33
    const char *psz_native_name; /* Description in native language */
 
34
    const char psz_iso639_1[3];  /* ISO-639-1 (2 characters) code */
 
35
    const char psz_iso639_2T[4]; /* ISO-639-2/T (3 characters) English code */
 
36
    const char psz_iso639_2B[4]; /* ISO-639-2/B (3 characters) native code */
37
37
};
38
38
 
39
39
#if defined( __cplusplus )