@camstack/types 1.1.26 → 1.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/capabilities/decoder.cap.d.ts +2 -0
- package/dist/index.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
|
@@ -61,6 +61,8 @@ export declare const decoderCapability: {
|
|
|
61
61
|
name: z.ZodString;
|
|
62
62
|
isPullMode: z.ZodOptional<z.ZodBoolean>;
|
|
63
63
|
priority: z.ZodOptional<z.ZodNumber>;
|
|
64
|
+
hwaccel: z.ZodOptional<z.ZodString>;
|
|
65
|
+
probedBestHwaccel: z.ZodOptional<z.ZodString>;
|
|
64
66
|
}, z.core.$strip>, import("./capability-definition.js").CapabilityMethodKind>;
|
|
65
67
|
readonly createSession: import("./capability-definition.js").CapabilityMethodSchema<z.ZodObject<{
|
|
66
68
|
codec: z.ZodString;
|
package/dist/index.js
CHANGED
|
@@ -14264,7 +14264,9 @@ var decoderCapability = {
|
|
|
14264
14264
|
id: zod.z.string(),
|
|
14265
14265
|
name: zod.z.string(),
|
|
14266
14266
|
isPullMode: zod.z.boolean().optional(),
|
|
14267
|
-
priority: zod.z.number().optional()
|
|
14267
|
+
priority: zod.z.number().optional(),
|
|
14268
|
+
hwaccel: zod.z.string().optional(),
|
|
14269
|
+
probedBestHwaccel: zod.z.string().optional()
|
|
14268
14270
|
})),
|
|
14269
14271
|
createSession: require_sleep.method(DecoderSessionConfigSchema, zod.z.object({
|
|
14270
14272
|
sessionId: zod.z.string(),
|
package/dist/index.mjs
CHANGED
|
@@ -14263,7 +14263,9 @@ var decoderCapability = {
|
|
|
14263
14263
|
id: z.string(),
|
|
14264
14264
|
name: z.string(),
|
|
14265
14265
|
isPullMode: z.boolean().optional(),
|
|
14266
|
-
priority: z.number().optional()
|
|
14266
|
+
priority: z.number().optional(),
|
|
14267
|
+
hwaccel: z.string().optional(),
|
|
14268
|
+
probedBestHwaccel: z.string().optional()
|
|
14267
14269
|
})),
|
|
14268
14270
|
createSession: method(DecoderSessionConfigSchema, z.object({
|
|
14269
14271
|
sessionId: z.string(),
|