1
mirror of https://code.videolan.org/videolan/vlc synced 2024-07-17 05:01:41 +02:00

Added VLC_CODEC_BD_PG codec.

It will be used for blu-ray subtitles.
This commit is contained in:
Laurent Aimar 2009-08-27 23:26:26 +02:00
parent 48d3c3a8e6
commit 9d80dd1a4b
2 changed files with 5 additions and 0 deletions

View File

@ -280,6 +280,8 @@
#define VLC_CODEC_USF VLC_FOURCC('u','s','f',' ')
#define VLC_CODEC_OGT VLC_FOURCC('o','g','t',' ')
#define VLC_CODEC_CVD VLC_FOURCC('c','v','d',' ')
/* Blu-ray Presentation Graphics */
#define VLC_CODEC_BD_PG VLC_FOURCC('b','d','p','g')
/* Special endian dependant values

View File

@ -1119,6 +1119,9 @@ static const entry_t p_list_spu[] = {
B(VLC_CODEC_CVD, "CVD subtitles"),
A("cvd "),
B(VLC_CODEC_BD_PG, "BD subtitles"),
A("bdpg"),
B(0, "")
};