Changeset 6645
- Timestamp:
- 06/18/09 17:11:29 (15 months ago)
- Location:
- branches/bugfix-0.9.1
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
src/operators/noblank.ml (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/bugfix-0.9.1/CHANGES
r6644 r6645 9 9 - Disconnect idle harbor sources after timeout has expired. 10 10 Thanks to Roman Savrulin for reporting and fixing ! 11 New: 12 - Get a node's striping status when stripping 13 blank with strip_blank (#260). 11 14 12 15 0.9.0 (01-03-2009) -
branches/bugfix-0.9.1/src/operators/noblank.ml
-
Property
svn:mergeinfo set
to
(toggle deleted branches)
/trunk/liquidsoap/src/operators/noblank.ml merged eligible /branches/liquidsoap-video/src/operators/noblank.ml 5931-5945
r6344 r6645 120 120 val mutable stripping = false 121 121 122 val mutable ns = [] 123 122 124 method stype = Fallible 123 125 method is_ready = not stripping && source#is_ready … … 148 150 if stripping && AFrame.is_partial memo then self#get_frame memo 149 151 150 method output_get_ready = () 152 method output_get_ready = 153 if ns = [] then 154 ns <- Server.register [self#id] "strip_blank" ; 155 let status _ = string_of_bool stripping in 156 Server.add 157 ~ns "is_stripping" ~descr:"Check if the source is stripping." status 158 151 159 method output_reset = () 152 160 method is_active = true -
Property
svn:mergeinfo set
to
(toggle deleted branches)
