vlc | branch: master | Laurent Aimar <[email protected]> | Mon Dec 3 23:34:55 2012 +0100| [d2b19589f2b03df444c657f3a09446c0a2bcad98] | committer: Laurent Aimar
Added SCTE-27 codec definition. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d2b19589f2b03df444c657f3a09446c0a2bcad98 --- include/vlc_fourcc.h | 1 + src/misc/fourcc.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h index 964656f..391a9a2 100644 --- a/include/vlc_fourcc.h +++ b/include/vlc_fourcc.h @@ -361,6 +361,7 @@ #define VLC_CODEC_BD_PG VLC_FOURCC('b','d','p','g') /* EBU STL (TECH. 3264-E) */ #define VLC_CODEC_EBU_STL VLC_FOURCC('S','T','L',' ') +#define VLC_CODEC_SCTE_27 VLC_FOURCC('S','C','2','7') /* Special endian dependant values diff --git a/src/misc/fourcc.c b/src/misc/fourcc.c index ce6d471..1ac3300 100644 --- a/src/misc/fourcc.c +++ b/src/misc/fourcc.c @@ -1391,6 +1391,9 @@ static const staticentry_t p_list_spu[] = { B(VLC_CODEC_EBU_STL, "EBU STL subtitles"), A("STL "), + B(VLC_CODEC_SCTE_27, "SCTE-27 subtitles"), + A("SC27"), + B(0, "") }; _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
