mirror of
https://github.com/go-gst/go-gst.git
synced 2025-10-05 07:56:51 +08:00
cleanup plugin examples
This commit is contained in:
@@ -72,20 +72,6 @@ var sinkProperties = []*glib.ParamSpec{
|
||||
nil,
|
||||
glib.ParameterReadWrite,
|
||||
),
|
||||
glib.NewInt64Param(
|
||||
"chunk-size",
|
||||
"Chunk size",
|
||||
"The size of each chunk uploaded to S3/MinIO in bytes. The final output cannot exceed this value * 10000. Note that buffers will be held in memory until they reach this size.",
|
||||
defaultChunkSize, 1024*1024*1024, defaultChunkSize, // Min: 5MB Max: 1GB Default: 5MB
|
||||
glib.ParameterReadWrite,
|
||||
),
|
||||
glib.NewUintParam(
|
||||
"max-memory-chunks",
|
||||
"Maximum Chunks in Memory",
|
||||
"The maximum number of chunks to keep in memory at any given point in time. Setting this to a higher value will reduce load on the destination at the expense of increased memory consumption. There needs to be room for the head chunk and at least one more at all times.",
|
||||
2, ^uint(0), defaultMaxMemChunks,
|
||||
glib.ParameterReadWrite,
|
||||
),
|
||||
}
|
||||
|
||||
var srcProperties = []*glib.ParamSpec{
|
||||
|
Reference in New Issue
Block a user