use parking_lot::Once in ffmpeg

I'm getting deprecation warnings for std::sync::ONCE_INIT, and I'm
not sure when std::sync::Once::new() became a const fn. Just as easy to
switch to parking_lot.
This commit is contained in:
Scott Lamb
2019-12-28 08:03:05 -06:00
parent 154d0c30c0
commit e8a00d4639
3 changed files with 4 additions and 2 deletions

View File

@@ -29,13 +29,13 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
use log::info;
use parking_lot::Once;
use std::cell::{Ref, RefCell};
use std::ffi::CStr;
use std::fmt::{self, Write};
use std::ptr;
use std::sync;
static START: sync::Once = sync::ONCE_INIT;
static START: Once = Once::new();
//#[link(name = "avcodec")]
extern "C" {