]> git.sesse.net Git - vlc/commitdiff
Added VLC_CODEC_BD_PG codec.
authorLaurent Aimar <fenrir@videolan.org>
Thu, 27 Aug 2009 21:26:26 +0000 (23:26 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Thu, 27 Aug 2009 21:46:32 +0000 (23:46 +0200)
It will be used for blu-ray subtitles.

include/vlc_fourcc.h
src/misc/fourcc.c

index 53998756e3718b4bc9352848fbdd4d68e905924f..aec860255c068f3ac2271323fa855ec5709c4c74 100644 (file)
 #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
index 676f91e68c38e7befa95cfedb0cf3fc27aa04fcd..c473fa248e2f0dd6aa3cbbb079d99da4bf5adc41 100644 (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, "")
 };