[vlc-devel] commit: Added VLC_CODEC_BD_PG codec. (Laurent Aimar )

git version control git at videolan.org
Thu Aug 27 23:47:58 CEST 2009


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Thu Aug 27 23:26:26 2009 +0200| [9d80dd1a4b632505d4f645cccadf82baacb48e4e] | committer: Laurent Aimar 

Added VLC_CODEC_BD_PG codec.

It will be used for blu-ray subtitles.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9d80dd1a4b632505d4f645cccadf82baacb48e4e
---

 include/vlc_fourcc.h |    2 ++
 src/misc/fourcc.c    |    3 +++
 2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h
index 5399875..aec8602 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 676f91e..c473fa2 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, "")
 };
 




More information about the vlc-devel mailing list