Skip to content

Commit

Permalink
Revert example changes
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechBarczynski committed Oct 11, 2024
1 parent 2e0f3de commit efdb73f
Showing 1 changed file with 13 additions and 22 deletions.
35 changes: 13 additions & 22 deletions integration_tests/examples/simple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,35 +51,26 @@ fn client_code() -> Result<()> {
"ip": IP,
"video": {
"resolution": {
"width": 1920,
"height": 1080,
"width": VIDEO_RESOLUTION.width,
"height": VIDEO_RESOLUTION.height,
},
"encoder": {
"type": "ffmpeg_h264",
"preset": "ultrafast"
},
// "initial": {
// "root": {
// "type": "shader",
// "id": "shader_node_1",
// "shader_id": "shader_example_1",
// "children": [
// {
// "id": "input_1",
// "type": "input_stream",
// "input_id": "input_1",
// }
// ],
// "resolution": { "width": VIDEO_RESOLUTION.width, "height": VIDEO_RESOLUTION.height },
// }
// }
"initial": {
"root": {
"type": "view",
"children": [{
"type": "input_stream",
"input_id": "input_1"
}]
"type": "shader",
"id": "shader_node_1",
"shader_id": "shader_example_1",
"children": [
{
"id": "input_1",
"type": "input_stream",
"input_id": "input_1",
}
],
"resolution": { "width": VIDEO_RESOLUTION.width, "height": VIDEO_RESOLUTION.height },
}
}
}
Expand Down

0 comments on commit efdb73f

Please sign in to comment.