Skip to content

Commit

Permalink
missed some
Browse files Browse the repository at this point in the history
  • Loading branch information
frostbyte73 committed Jan 30, 2024
1 parent f477c09 commit afb3bdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/pipeline/builder/video.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func (b *VideoBin) buildWebInput() error {
return errors.ErrGstPipelineError(err)
}

videoQueue, err := gstreamer.BuildQueue("video_input_queue", b.conf.Latency, true)
videoQueue, err := gstreamer.BuildQueue("video_input_queue", config.Latency, true)
if err != nil {
return err
}
Expand Down Expand Up @@ -499,7 +499,7 @@ func (b *VideoBin) addSelector() error {
}

func (b *VideoBin) addEncoder() error {
videoQueue, err := gstreamer.BuildQueue("video_encoder_queue", b.conf.Latency, false)
videoQueue, err := gstreamer.BuildQueue("video_encoder_queue", config.Latency, false)
if err != nil {
return err
}
Expand Down

0 comments on commit afb3bdb

Please sign in to comment.