Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[The feature associated with this page, Microsoft TV Technologies, is a legacy feature. Microsoft strongly recommends that new code does not use this feature.]
The DVDTextStringType enumeration type indicates the type of information contained in a DVD text string.
Syntax
typedef enum DVDTextStringType {
dvdStruct_Volume = 0x1,
dvdStruct_Title = 0x2,
dvdStruct_ParentalID = 0x3,
dvdStruct_PartOfTitle = 0x4,
dvdStruct_Cell = 0x5,
dvdStream_Audio = 0x10,
dvdStream_Subpicture = 0x11,
dvdStream_Angle = 0x12,
dvdChannel_Audio = 0x20,
dvdGeneral_Name = 0x30,
dvdGeneral_Comments = 0x31,
dvdTitle_Series = 0x38,
dvdTitle_Movie = 0x39,
dvdTitle_Video = 0x3a,
dvdTitle_Album = 0x3b,
dvdTitle_Song = 0x3c,
dvdTitle_Other = 0x3f,
dvdTitle_Sub_Series = 0x40,
dvdTitle_Sub_Movie = 0x41,
dvdTitle_Sub_Video = 0x42,
dvdTitle_Sub_Album = 0x43,
dvdTitle_Sub_Song = 0x44,
dvdTitle_Sub_Other = 0x47,
dvdTitle_Orig_Series = 0x48,
dvdTitle_Orig_Movie = 0x49,
dvdTitle_Orig_Video = 0x4a,
dvdTitle_Orig_Album = 0x4b,
dvdTitle_Orig_Song = 0x4c,
dvdTitle_Orig_Other = 0x4f,
dvdOther_Scene = 0x50,
dvdOther_Cut = 0x51,
dvdOther_Take = 0x52
} ;
Constants
dvdStruct_VolumeValue: 0x1 Indicates the top level of the logical hierarchy. Refers to the entire contents of a one-sided disc or one side of a two-sided disc. |
dvdStruct_TitleValue: 0x2 Indicates that all content strings, until the next dvd_Struct_Title, belong to one title. |
dvdStruct_ParentalIDValue: 0x3 Indicates the parental ID of the following strings. |
dvdStruct_PartOfTitleValue: 0x4 Indicates that all content strings, until the next dvd_Struct_PartOfTitle, belong to one chapter. |
dvdStruct_CellValue: 0x5 Indicates that all content strings, until the next dvd_Struct_Cell, belong to one cell, which can be a scene from a chapter. |
dvdStream_AudioValue: 0x10 Indicates that the following content strings refer to the audio stream. |
dvdStream_SubpictureValue: 0x11 Indicates that the following content strings refer to the subpicture stream. |
dvdStream_AngleValue: 0x12 Indicates that the following content strings refer to the angle. |
dvdChannel_AudioValue: 0x20 Indicates that the following content strings refer to the audio channel. |
dvdGeneral_NameValue: 0x30 Indicates the most important content string. Strings of this type contain the name of the volume, title, chapter, and so on, and can follow any structure identifiers. |
dvdGeneral_CommentsValue: 0x31 Identifies a content string with additional information about the title, chapter, and so on, described by the dvd_General_Name string. The exact nature or structure of these comments is not defined. |
dvdTitle_SeriesValue: 0x38 Identifies a content string containing the name of a series to which the title belongs. |
dvdTitle_MovieValue: 0x39 Identifies a content string with the main movie title. |
dvdTitle_VideoValue: 0x3a Identifies a content string containing the name of the video title. |
dvdTitle_AlbumValue: 0x3b Identifies a content string containing the name of the album title. |
dvdTitle_SongValue: 0x3c Identifies a content string containing the name of the song title. |
dvdTitle_OtherValue: 0x3f Identifies a content string containing the name of the title of some other genre. |
dvdTitle_Sub_SeriesValue: 0x40 Identifies a content string with the name of the series localized to a particular country/region. |
dvdTitle_Sub_MovieValue: 0x41 Identifies a content string with the movie title localized to a particular country/region. |
dvdTitle_Sub_VideoValue: 0x42 Identifies a content string with the video title localized to a particular country/region. |
dvdTitle_Sub_AlbumValue: 0x43 Identifies a content string with the album title localized to a particular country/region. |
dvdTitle_Sub_SongValue: 0x44 Identifies a content string with the song title localized to a particular country/region. |
dvdTitle_Sub_OtherValue: 0x47 Identifies a content string with the title of some other genre localized to a particular country/region. |
dvdTitle_Orig_SeriesValue: 0x48 Identifies a content string with the original name of the series. |
dvdTitle_Orig_MovieValue: 0x49 Identifies a content string with the original name of the movie. |
dvdTitle_Orig_VideoValue: 0x4a Identifies a content string with the original name of the video. |
dvdTitle_Orig_AlbumValue: 0x4b Identifies a content string with the original name of the album. |
dvdTitle_Orig_SongValue: 0x4c Identifies a content string with the original name of the song. |
dvdTitle_Orig_OtherValue: 0x4f Identifies a content string with the original name of the content. |
dvdOther_SceneValue: 0x50 Identifies a content string pertaining to a particular scene in a movie or video. |
dvdOther_CutValue: 0x51 Identifies a content string pertaining to a particular cut in a movie or video. |
dvdOther_TakeValue: 0x52 Identifies a content string pertaining to a particular take in a movie or video. |
Remarks
A DVD_TextStringType value is returned in the DVDTextStringType method to identify how the disc authors have categorized the specified text string.
Not every DVD text string identifier is included in this enumeration, so an authored DVD might include other values.
One important text string type not defined in this enumeration is 0xF0, the extension-sorting text string type. You can use this type of string in many ways to enable players to sort the string data. It can be a unique number or a repetition of a previous string with the word order changed. For example, a string of type 0x30 that has the name "The Greatest Hits" might be followed by a string of type 0xF0 that says "Greatest Hits, The." As with content strings, the use of the sorting string is not strictly defined.
Requirements
| Requirement | Value |
|---|---|
| Header | segment.h (include DShow.h) |