FastLED 3.9.15
Loading...
Searching...
No Matches

◆ plm_probe()

int fl::third_party::plm_probe ( plm_t * self,
size_t probesize )

Definition at line 331 of file pl_mpeg.hpp.

331 {
332 int found_streams = plm_demux_probe(self->demux, probesize);
333 if (!found_streams) {
334 return FALSE;
335 }
336
337 // Re-init decoders
338 self->has_decoders = FALSE;
339 self->video_packet_type = 0;
340 self->audio_packet_type = 0;
341 return plm_init_decoders(self);
342}
int plm_init_decoders(plm_t *self) FL_NOEXCEPT
Definition pl_mpeg.hpp:261
int plm_demux_probe(plm_demux_t *self, size_t probesize) FL_NOEXCEPT
Definition pl_mpeg.hpp:1241
plm_demux_t * demux
Definition pl_mpeg.hpp:196
#define FALSE
Definition pl_mpeg.hpp:175

References FALSE, FL_NOEXCEPT, plm_demux_probe(), and plm_init_decoders().

+ Here is the call graph for this function: