From 9d80dd1a4b632505d4f645cccadf82baacb48e4e Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Thu, 27 Aug 2009 23:26:26 +0200 Subject: [PATCH 1/1] Added VLC_CODEC_BD_PG codec. It will be used for blu-ray subtitles. --- include/vlc_fourcc.h | 2 ++ src/misc/fourcc.c | 3 +++ 2 files changed, 5 insertions(+) diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h index 53998756e3..aec860255c 100644 --- a/include/vlc_fourcc.h +++ b/include/vlc_fourcc.h @@ -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 diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c index 676f91e68c..c473fa248e 100644 --- a/src/misc/fourcc.c +++ b/src/misc/fourcc.c @@ -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, "") }; -- 2.39.2