From 8e9cbd5a7917b42e58d28c157f555b2d333f2dc9 Mon Sep 17 00:00:00 2001 From: Trek H Date: Tue, 9 Apr 2019 15:48:54 +0930 Subject: [PATCH] pcm: updated import statements using pcm --- exp/pcm/resample/resample.go | 2 +- exp/pcm/stereo-to-mono/stereo-to-mono.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exp/pcm/resample/resample.go b/exp/pcm/resample/resample.go index aaa8f77c..eab7a342 100644 --- a/exp/pcm/resample/resample.go +++ b/exp/pcm/resample/resample.go @@ -32,7 +32,7 @@ import ( "io/ioutil" "log" - "bitbucket.org/ausocean/av/audio/pcm" + "bitbucket.org/ausocean/av/codec/pcm" "github.com/yobert/alsa" ) diff --git a/exp/pcm/stereo-to-mono/stereo-to-mono.go b/exp/pcm/stereo-to-mono/stereo-to-mono.go index 231591f0..ccbf87bf 100644 --- a/exp/pcm/stereo-to-mono/stereo-to-mono.go +++ b/exp/pcm/stereo-to-mono/stereo-to-mono.go @@ -32,7 +32,7 @@ import ( "io/ioutil" "log" - "bitbucket.org/ausocean/av/audio/pcm" + "bitbucket.org/ausocean/av/codec/pcm" "github.com/yobert/alsa" )