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

◆ plm_buffer_has_start_code()

int fl::third_party::plm_buffer_has_start_code ( plm_buffer_t * self,
int code )

Definition at line 1089 of file pl_mpeg.hpp.

1089 {
1090 size_t previous_bit_index = self->bit_index;
1091 int previous_discard_read_bytes = self->discard_read_bytes;
1092
1093 self->discard_read_bytes = FALSE;
1094 int current = plm_buffer_find_start_code(self, code);
1095
1096 self->bit_index = previous_bit_index;
1097 self->discard_read_bytes = previous_discard_read_bytes;
1098 return current;
1099}
int plm_buffer_find_start_code(plm_buffer_t *self, int code) FL_NOEXCEPT
Definition pl_mpeg.hpp:1078
#define FALSE
Definition pl_mpeg.hpp:175

References FALSE, FL_NOEXCEPT, and plm_buffer_find_start_code().

Referenced by plm_video_decode().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: