Commit 9d80dd1a authored by Laurent Aimar's avatar Laurent Aimar

Added VLC_CODEC_BD_PG codec.

It will be used for blu-ray subtitles.
parent 48d3c3a8
...@@ -280,6 +280,8 @@ ...@@ -280,6 +280,8 @@
#define VLC_CODEC_USF VLC_FOURCC('u','s','f',' ') #define VLC_CODEC_USF VLC_FOURCC('u','s','f',' ')
#define VLC_CODEC_OGT VLC_FOURCC('o','g','t',' ') #define VLC_CODEC_OGT VLC_FOURCC('o','g','t',' ')
#define VLC_CODEC_CVD VLC_FOURCC('c','v','d',' ') #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 /* Special endian dependant values
......
...@@ -1119,6 +1119,9 @@ static const entry_t p_list_spu[] = { ...@@ -1119,6 +1119,9 @@ static const entry_t p_list_spu[] = {
B(VLC_CODEC_CVD, "CVD subtitles"), B(VLC_CODEC_CVD, "CVD subtitles"),
A("cvd "), A("cvd "),
B(VLC_CODEC_BD_PG, "BD subtitles"),
A("bdpg"),
B(0, "") B(0, "")
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment