Home
last modified time | relevance | path

Searched refs:ivf (Results 1 – 8 of 8) sorted by relevance

/webrtc/media/src/io/ivf_reader/
H A Divf_reader_test.rs21 let mut ivf = BytesMut::new(); in build_ivf_container() localVariable
22 ivf.extend(header); in build_ivf_container()
25 ivf.extend(frame); in build_ivf_container()
28 ivf.freeze() in build_ivf_container()
33 let ivf = build_ivf_container(&[]); in test_ivf_reader_parse_valid_file_header() localVariable
35 let r = BufReader::new(&ivf[..]); in test_ivf_reader_parse_valid_file_header()
76 let r = BufReader::new(&ivf[..]); in test_ivf_reader_parse_valid_frames()
123 let r = BufReader::new(&ivf[..]); in test_ivf_reader_parse_incomplete_frame_header()
142 let r = BufReader::new(&ivf[..]); in test_ivf_reader_parse_incomplete_frame_payload()
154 let ivf = build_ivf_container(&[]); in test_ivf_reader_eof_when_no_frames_left() localVariable
[all …]
/webrtc/examples/examples/play-from-disk-vpx/
H A DREADME.md7 ### Create IVF named `output_vp8.ivf` or `output_vp9.ivf` that contains a VP8/VP9 track and/or `out…
10 ffmpeg -i $INPUT_FILE -g 30 output_vp8.ivf
11 ffmpeg -i $INPUT_FILE -g 30 -c libvpx-vp9 output_vp9.ivf
27 The `output_vp8.ivf`/`output_vp9.ivf` you created should be in the same directory as `play-from-dis…
31 …/target/debug/examples/play-from-disk-vpx -v examples/test-data/output_vp8.ivf -a examples/test-da…
32 …/target/debug/examples/play-from-disk-vpx -v examples/test-data/output_vp9.ivf -a examples/test-da…
37 2. Run `./target/debug/examples/play-from-disk-vpx -v examples/test-data/output_vp8.ivf -a examples…
38 3. Run `./target/debug/examples/play-from-disk-vpx -v examples/test-data/output_vp9.ivf -a examples…
H A Dplay-from-disk-vpx.rs185 let (mut ivf, header) = IVFReader::new(reader)?; in main()
202 let frame = match ivf.parse_next_frame() { in main()
/webrtc/examples/examples/play-from-disk-renegotiation/
H A DREADME.md15 ### Create IVF named `output.ivf` that contains a VP8 track
18 ffmpeg -i $INPUT_FILE -g 30 output.ivf
23 The `output.ivf` you created should be in the same directory as `play-from-disk-renegotiation`.
H A Dplay-from-disk-renegotiation.rs381 let (mut ivf, header) = IVFReader::new(reader)?; in write_video_to_track()
393 let frame = match ivf.parse_next_frame() { in write_video_to_track()
/webrtc/examples/examples/insertable-streams/
H A DREADME.md12 ### Create IVF named `output.ivf` that contains a VP8 track
15 ffmpeg -i $INPUT_FILE -g 30 output.ivf
31 The `output.ivf` you created should be in the same directory as `insertable-streams`. In the jsfidd…
H A Dinsertable-streams.rs155 let (mut ivf, header) = IVFReader::new(reader)?; in main()
168 let mut frame = match ivf.parse_next_frame() { in main()
/webrtc/examples/examples/save-to-disk-vpx/
H A DREADME.md36 In the folder you ran `save-to-disk-vpx` you should now have a file `output_vpx.ivf` play with your…