Hi Kieran, Thank you for the patch. On Tue, Dec 04, 2018 at 03:51:45PM +0000, Kieran Bingham wrote: > Provide the pass-through option of --queue-late to vsp-runner, to request > that yavta will queue frames after the stream has started. As with 5/7, what is the use case for this ? > Signed-off-by: Kieran Bingham <kieran.bingham@xxxxxxxxxxxxxxxx> > --- > scripts/vsp-lib.sh | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/scripts/vsp-lib.sh b/scripts/vsp-lib.sh > index 9140254c7459..3d2792707d24 100755 > --- a/scripts/vsp-lib.sh > +++ b/scripts/vsp-lib.sh > @@ -898,6 +898,7 @@ vsp_runner() { > local count=10 > local pause= > local skip=7 > + local queue_late= > > for option in $* ; do > case $option in > @@ -916,6 +917,8 @@ vsp_runner() { > --skip=*) > skip=${option/--skip=/} > ;; > + --queue-late) > + queue_late=queue-late > > *) > return 1 > @@ -959,6 +962,7 @@ vsp_runner() { > > $yavta -c$count -n $buffers ${format:+-f $format} ${size:+-s $size} \ > ${skip:+--skip $skip} ${file:+--file=$file} ${pause:+-p$pause} \ > + ${queue_late:+--$queue_late} \ > $videodev | ./logger.sh $entity >> $logfile > } > -- Regards, Laurent Pinchart