// Copyright (c) 2023 QRTC. All rights reserved. // Use of this source code is governed by a MIT // license that can be found in the LICENSE file. package ffmpeg /* #include */ import "C" // AvGetRandomSeed gets a seed to use in conjunction with random functions. func AvGetRandomSeed() uint32 { return (uint32)(C.av_get_random_seed()) }