Skip to content

Commit

Permalink
fourcc: add HDMV text subtitles
Browse files Browse the repository at this point in the history
  • Loading branch information
fcartegnie committed Jan 28, 2017
1 parent dec6fe0 commit adfff58
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/vlc_fourcc.h
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,7 @@
#define VLC_CODEC_ARIB_C VLC_FOURCC('a','r','b','c')
/* Blu-ray Presentation Graphics */
#define VLC_CODEC_BD_PG VLC_FOURCC('b','d','p','g')
#define VLC_CODEC_BD_TEXT VLC_FOURCC('b','d','t','x')
/* EBU STL (TECH. 3264-E) */
#define VLC_CODEC_EBU_STL VLC_FOURCC('S','T','L',' ')
#define VLC_CODEC_SCTE_18 VLC_FOURCC('S','C','1','8')
Expand Down
5 changes: 4 additions & 1 deletion src/misc/fourcc_list.h
Original file line number Diff line number Diff line change
Expand Up @@ -1577,9 +1577,12 @@ static const staticentry_t p_list_spu[] = {
B(VLC_CODEC_ARIB_C, "ARIB subtitles (C-profile)"),
A("arbc"),

B(VLC_CODEC_BD_PG, "BD subtitles"),
B(VLC_CODEC_BD_PG, "BD PGS subtitles"),
A("bdpg"),

B(VLC_CODEC_BD_TEXT, "BD Text subtitles"),
A("bdtx"),

B(VLC_CODEC_EBU_STL, "EBU STL subtitles"),
A("STL "),

Expand Down

0 comments on commit adfff58

Please sign in to comment.