Home
last modified time | relevance | path

Searched refs:h264 (Results 1 – 11 of 11) sorted by relevance

/webrtc/examples/examples/play-from-disk-h264/
H A DREADME.md1 # play-from-disk-h264
3 play-from-disk-h264 demonstrates how to send h264 video and/or audio to your browser from files sav…
14 ### Build play-from-disk-h264
17 cargo build --example play-from-disk-h264
20 ### Open play-from-disk-h264 example page
24 ### Run play-from-disk-h264 with your browsers SessionDescription as stdin
26 The `output.h264` you created should be in the same directory as `play-from-disk-h264`. In the jsfi…
30 …ho $BROWSER_SDP | ./target/debug/examples/play-from-disk-h264 -v examples/test-data/output.h264 -a…
35 1. Run `./target/debug/examples/play-from-disk-h264 -v examples/test-data/output.h264 -a examples/t…
37 ### Input play-from-disk-h264's SessionDescription into your browser
[all …]
H A Dplay-from-disk-h264.rs175 let mut h264 = H264Reader::new(reader, 1_048_576); in main() localVariable
187 let nal = match h264.next_nal() { in main()
/webrtc/examples/examples/save-to-disk-h264/
H A DREADME.md1 # save-to-disk-h264
3 save-to-disk-h264 is a simple application that shows how to record your webcam/microphone using Web…
7 ### Build save-to-disk-h264
10 cargo build --example save-to-disk-h264
17 ### Run save-to-disk-h264, with your browsers SessionDescription as stdin
23 Run `echo $BROWSER_SDP | ./target/debug/examples/save-to-disk-h264`
28 1. Run `./target/debug/examples/save-to-disk-h264 < my_file`
30 ### Input save-to-disk-h264's SessionDescription into your browser
32 Copy the text that `save-to-disk-h264` just emitted and copy into second text area
36 In the folder you ran `save-to-disk-h264` you should now have a file `output.h264` play with your v…
/webrtc/rtp/src/codecs/h264/
H A Dh264_test.rs196 let h264 = H264Packet::default(); in test_h264_partition_head_checker_is_partition_head() localVariable
199 !h264.is_partition_head(&empty_nalu), in test_h264_partition_head_checker_is_partition_head()
205 h264.is_partition_head(&single_nalu), in test_h264_partition_head_checker_is_partition_head()
211 h264.is_partition_head(&stapa_nalu), in test_h264_partition_head_checker_is_partition_head()
217 h264.is_partition_head(&fua_start_nalu), in test_h264_partition_head_checker_is_partition_head()
223 !h264.is_partition_head(&fua_end_nalu), in test_h264_partition_head_checker_is_partition_head()
229 h264.is_partition_head(&fub_start_nalu), in test_h264_partition_head_checker_is_partition_head()
235 !h264.is_partition_head(&fub_end_nalu), in test_h264_partition_head_checker_is_partition_head()
/webrtc/examples/
H A DCargo.toml88 name = "play-from-disk-h264"
89 path = "examples/play-from-disk-h264/play-from-disk-h264.rs"
118 name = "save-to-disk-h264"
119 path = "examples/save-to-disk-h264/save-to-disk-h264.rs"
/webrtc/webrtc/src/rtp_transceiver/fmtp/
H A Dmod.rs2 pub(crate) mod h264; module
5 use crate::rtp_transceiver::fmtp::h264::H264Fmtp;
/webrtc/rtp/src/codecs/
H A Dmod.rs2 pub mod h264; module
/webrtc/media/src/io/h264_writer/
H A Dmod.rs7 use rtp::codecs::h264::H264Packet;
/webrtc/examples/examples/
H A DREADME.md10 - [x] [Play from Disk H264](play-from-disk-h264): The play-from-disk-h264 example demonstrates how …
14 - [x] [Save to Disk H264](save-to-disk-h264): The save-to-disk example shows how to record your web…
/webrtc/webrtc/src/rtp_transceiver/
H A Drtp_codec.rs68 Ok(Box::<rtp::codecs::h264::H264Payloader>::default()) in payloader_for_codec()
/webrtc/
H A DREADME.md125 cargo build --example play-from-disk-h264 # build play-from-disk-h264 example only