1 /*****************************************************************************
2 * stl.c: EBU STL demuxer
3 *****************************************************************************
4 * Copyright (C) 2010 Laurent Aimar
7 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
26 *****************************************************************************/
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_demux.h>
36 /*****************************************************************************
38 *****************************************************************************/
39 static int Open (vlc_object_t
*);
40 static void Close(vlc_object_t
*);
43 set_description(N_("EBU STL subtitles parser"))
44 set_category(CAT_INPUT
)
45 set_subcategory(SUBCAT_INPUT_DEMUX
)
46 set_capability("demux", 1)
47 set_callbacks(Open
, Close
)
48 add_shortcut("stl", "subtitle")
51 /*****************************************************************************
52 * Local definitions/prototypes
53 *****************************************************************************/
73 static size_t ParseInteger(uint8_t *data
, size_t size
)
76 assert(size
< sizeof(tmp
));
77 memcpy(tmp
, data
, size
);
80 return strtol(tmp
, NULL
, 10);
82 static int64_t ParseTimeCode(uint8_t *data
, double fps
)
84 return INT64_C(1000000) * (data
[0] * 3600 +
89 static int64_t ParseTextTimeCode(uint8_t *data
, double fps
)
92 for (int i
= 0; i
< 4; i
++)
93 tmp
[i
] = ParseInteger(&data
[2 * i
], 2);
94 return ParseTimeCode(tmp
, fps
);
97 static int Control(demux_t
*demux
, int query
, va_list args
)
99 demux_sys_t
*sys
= demux
->p_sys
;
102 return vlc_stream_vaControl(demux
->s
, query
, args
);
103 case DEMUX_GET_LENGTH
: {
104 int64_t *l
= va_arg(args
, int64_t *);
105 *l
= sys
->count
> 0 ? sys
->index
[sys
->count
-1].stop
: 0;
108 case DEMUX_GET_TIME
: {
109 int64_t *t
= va_arg(args
, int64_t *);
110 *t
= sys
->next_date
- var_GetInteger(demux
->obj
.parent
, "spu-delay");
115 case DEMUX_SET_NEXT_DEMUX_TIME
: {
117 sys
->next_date
= va_arg(args
, int64_t);
120 case DEMUX_SET_TIME
: {
121 int64_t t
= va_arg(args
, int64_t);
122 for( size_t i
= 0; i
+ 1< sys
->count
; i
++ )
124 if( sys
->index
[i
+ 1].start
>= t
&&
125 vlc_stream_Seek(demux
->s
, 1024 + 128LL * sys
->index
[i
].blocknumber
) == VLC_SUCCESS
)
129 sys
->b_first_time
= true;
135 case DEMUX_SET_POSITION
:
137 double f
= va_arg( args
, double );
138 if(sys
->count
&& sys
->index
[sys
->count
-1].stop
> 0)
140 int64_t i64
= f
* sys
->index
[sys
->count
-1].stop
;
141 return demux_Control(demux
, DEMUX_SET_TIME
, i64
);
145 case DEMUX_GET_POSITION
:
147 double *pf
= va_arg(args
, double *);
148 if(sys
->current
>= sys
->count
)
152 else if(sys
->count
> 0 && sys
->index
[sys
->count
-1].stop
> 0)
154 *pf
= sys
->next_date
- var_GetInteger(demux
->obj
.parent
, "spu-delay");
156 *pf
= sys
->next_date
;
157 *pf
/= sys
->index
[sys
->count
-1].stop
;
165 case DEMUX_CAN_PAUSE
:
166 case DEMUX_SET_PAUSE_STATE
:
167 case DEMUX_CAN_CONTROL_PACE
:
168 case DEMUX_GET_PTS_DELAY
: {
169 return demux_vaControlHelper( demux
->s
, 0, -1, 0, 1, query
, args
);
177 static int Demux(demux_t
*demux
)
179 demux_sys_t
*sys
= demux
->p_sys
;
181 int64_t i_barrier
= sys
->next_date
- var_GetInteger(demux
->obj
.parent
, "spu-delay");
183 i_barrier
= sys
->next_date
;
185 while(sys
->current
< sys
->count
&&
186 sys
->index
[sys
->current
].start
<= i_barrier
)
188 stl_entry_t
*s
= &sys
->index
[sys
->current
];
190 if (!sys
->b_slave
&& sys
->b_first_time
)
192 es_out_SetPCR(demux
->out
, VLC_TS_0
+ i_barrier
);
193 sys
->b_first_time
= false;
196 /* Might be a gap in block # */
197 const uint64_t i_pos
= 1024 + 128LL * s
->blocknumber
;
198 if(i_pos
!= vlc_stream_Tell(demux
->s
) &&
199 vlc_stream_Seek( demux
->s
, i_pos
) != VLC_SUCCESS
)
200 return VLC_DEMUXER_EOF
;
202 block_t
*b
= vlc_stream_Block(demux
->s
, 128);
203 if (b
&& b
->i_buffer
== 128)
206 b
->i_pts
= VLC_TS_0
+ s
->start
;
207 if (s
->stop
> s
->start
)
208 b
->i_length
= s
->stop
- s
->start
;
209 es_out_Send(demux
->out
, sys
->es
, b
);
215 return VLC_DEMUXER_EOF
;
222 es_out_SetPCR(demux
->out
, VLC_TS_0
+ i_barrier
);
223 sys
->next_date
+= CLOCK_FREQ
/ 8;
226 return sys
->current
< sys
->count
? VLC_DEMUXER_SUCCESS
: VLC_DEMUXER_EOF
;
229 static int Open(vlc_object_t
*object
)
231 demux_t
*demux
= (demux_t
*)object
;
234 if (vlc_stream_Peek(demux
->s
, &peek
, 11) != 11)
237 bool is_stl_25
= !memcmp(&peek
[3], "STL25.01", 8);
238 bool is_stl_30
= !memcmp(&peek
[3], "STL30.01", 8);
239 if (!is_stl_25
&& !is_stl_30
)
241 const double fps
= is_stl_25
? 25 : 30;
243 uint8_t header
[1024];
244 if (vlc_stream_Read(demux
->s
, header
, sizeof(header
)) != sizeof(header
)) {
245 msg_Err(demux
, "Incomplete EBU STL header");
248 const int cct
= ParseInteger(&header
[12], 2);
249 const mtime_t program_start
= ParseTextTimeCode(&header
[256], fps
);
250 const size_t tti_count
= ParseInteger(&header
[238], 5);
253 msg_Dbg(demux
, "Detected EBU STL : CCT=%d TTI=%zu start=%8.8s %"PRId64
, cct
, tti_count
, &header
[256], program_start
);
255 demux_sys_t
*sys
= malloc(sizeof(*sys
));
259 sys
->b_slave
= false;
260 sys
->b_first_time
= true;
264 sys
->index
= calloc(tti_count
, sizeof(*sys
->index
));
271 bool comment
= false;
272 stl_entry_t
*s
= &sys
->index
[0];
275 for (size_t i
= 0; i
< tti_count
; i
++) {
277 if (vlc_stream_Read(demux
->s
, tti
, 16) != 16 ||
278 vlc_stream_Read(demux
->s
, NULL
, 112) != 112) {
279 msg_Warn(demux
, "Incomplete EBU STL file");
282 const int ebn
= tti
[3];
283 if (ebn
>= 0xf0 && ebn
<= 0xfd)
289 comment
= tti
[15] != 0;
290 s
->start
= ParseTimeCode(&tti
[5], fps
) - program_start
;
291 s
->stop
= ParseTimeCode(&tti
[9], fps
) - program_start
;
295 if (ebn
== 0xff && !comment
)
296 s
= &sys
->index
[++sys
->count
];
297 if (ebn
== 0xff && sys
->count
< tti_count
)
302 if (sys
->count
== 0 ||
303 vlc_stream_Seek(demux
->s
, 1024 + 128LL * sys
->index
[0].blocknumber
) != VLC_SUCCESS
)
310 es_format_Init(&fmt
, SPU_ES
, VLC_CODEC_EBU_STL
);
311 fmt
.i_extra
= sizeof(header
);
312 fmt
.p_extra
= header
;
314 sys
->es
= es_out_Add(demux
->out
, &fmt
);
317 es_format_Clean(&fmt
);
326 demux
->pf_demux
= Demux
;
327 demux
->pf_control
= Control
;
331 static void Close(vlc_object_t
*object
)
333 demux_t
*demux
= (demux_t
*)object
;
334 demux_sys_t
*sys
= demux
->p_sys
;