@@ -189,6 +189,7 @@ impl VideoDecoder {
189
189
& mut self ,
190
190
render_ctx : & RenderContext ,
191
191
presentation_timestamp_s : f64 ,
192
+ video_data : & [ u8 ] ,
192
193
) -> Result < VideoFrameTexture , DecodingError > {
193
194
if presentation_timestamp_s < 0.0 {
194
195
return Err ( DecodingError :: NegativeTimestamp ) ;
@@ -197,7 +198,7 @@ impl VideoDecoder {
197
198
let presentation_timestamp = presentation_timestamp. min ( self . data . duration ) ; // Don't seek past the end of the video.
198
199
199
200
let error_on_last_frame_at = self . last_error . is_some ( ) ;
200
- let result = self . frame_at_internal ( render_ctx, presentation_timestamp) ;
201
+ let result = self . frame_at_internal ( render_ctx, presentation_timestamp, video_data ) ;
201
202
202
203
match result {
203
204
Ok ( ( ) ) => {
@@ -248,6 +249,7 @@ impl VideoDecoder {
248
249
& mut self ,
249
250
render_ctx : & RenderContext ,
250
251
presentation_timestamp : Time ,
252
+ video_data : & [ u8 ] ,
251
253
) -> Result < ( ) , DecodingError > {
252
254
re_tracing:: profile_function!( ) ;
253
255
@@ -322,21 +324,21 @@ impl VideoDecoder {
322
324
if requested_gop_idx != self . current_gop_idx {
323
325
if self . current_gop_idx . saturating_add ( 1 ) == requested_gop_idx {
324
326
// forward seek to next GOP - queue up the one _after_ requested
325
- self . enqueue_gop ( requested_gop_idx + 1 ) ?;
327
+ self . enqueue_gop ( requested_gop_idx + 1 , video_data ) ?;
326
328
} else {
327
329
// forward seek by N>1 OR backward seek across GOPs - reset
328
330
self . reset ( ) ?;
329
- self . enqueue_gop ( requested_gop_idx) ?;
330
- self . enqueue_gop ( requested_gop_idx + 1 ) ?;
331
+ self . enqueue_gop ( requested_gop_idx, video_data ) ?;
332
+ self . enqueue_gop ( requested_gop_idx + 1 , video_data ) ?;
331
333
}
332
334
} else if requested_sample_idx != self . current_sample_idx {
333
335
// special case: handle seeking backwards within a single GOP
334
336
// this is super inefficient, but it's the only way to handle it
335
337
// while maintaining a buffer of only 2 GOPs
336
338
if requested_sample_idx < self . current_sample_idx {
337
339
self . reset ( ) ?;
338
- self . enqueue_gop ( requested_gop_idx) ?;
339
- self . enqueue_gop ( requested_gop_idx + 1 ) ?;
340
+ self . enqueue_gop ( requested_gop_idx, video_data ) ?;
341
+ self . enqueue_gop ( requested_gop_idx + 1 , video_data ) ?;
340
342
}
341
343
}
342
344
@@ -384,15 +386,15 @@ impl VideoDecoder {
384
386
/// Enqueue all samples in the given GOP.
385
387
///
386
388
/// Does nothing if the index is out of bounds.
387
- fn enqueue_gop ( & mut self , gop_idx : usize ) -> Result < ( ) , DecodingError > {
389
+ fn enqueue_gop ( & mut self , gop_idx : usize , video_data : & [ u8 ] ) -> Result < ( ) , DecodingError > {
388
390
let Some ( gop) = self . data . gops . get ( gop_idx) else {
389
391
return Ok ( ( ) ) ;
390
392
} ;
391
393
392
394
let samples = & self . data . samples [ gop. range ( ) ] ;
393
395
394
396
for ( i, sample) in samples. iter ( ) . enumerate ( ) {
395
- let chunk = self . data . get ( sample ) . ok_or ( DecodingError :: BadData ) ?;
397
+ let chunk = sample . get ( video_data ) . ok_or ( DecodingError :: BadData ) ?;
396
398
let is_keyframe = i == 0 ;
397
399
self . chunk_decoder . decode ( chunk, is_keyframe) ?;
398
400
}
0 commit comments