Commit 2a89d905 authored by Laurent Aimar's avatar Laurent Aimar

Used VLC_CODEC_BD_PG in TS demuxer.

parent 9d80dd1a
...@@ -3649,6 +3649,9 @@ static void PMTSetupEsHDMV( demux_t *p_demux, ts_pid_t *pid, ...@@ -3649,6 +3649,9 @@ static void PMTSetupEsHDMV( demux_t *p_demux, ts_pid_t *pid,
p_fmt->i_codec = VLC_CODEC_EAC3; p_fmt->i_codec = VLC_CODEC_EAC3;
break; break;
case 0x90: /* Presentation graphics */ case 0x90: /* Presentation graphics */
p_fmt->i_cat = SPU_ES;
p_fmt->i_codec = VLC_CODEC_BD_PG;
break;
case 0x91: /* Interactive graphics */ case 0x91: /* Interactive graphics */
case 0x92: /* Subtitle */ case 0x92: /* Subtitle */
default: default:
......
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