Lines Matching refs:ext
64 static void apm_parse_extradata(APMExtraData *ext, const uint8_t *buf)
66 ext->magic = AV_RL32(buf + 0);
67 ext->file_size = AV_RL32(buf + 4);
68 ext->data_size = AV_RL32(buf + 8);
69 ext->unk1 = AV_RL32(buf + 12);
70 ext->unk2 = AV_RL32(buf + 16);
72 ext->state.has_saved = AV_RL32(buf + 20);
73 ext->state.predictor_r = AV_RL32(buf + 24);
74 ext->state.step_index_r = AV_RL32(buf + 28);
75 ext->state.saved_r = AV_RL32(buf + 32);
76 ext->state.predictor_l = AV_RL32(buf + 36);
77 ext->state.step_index_l = AV_RL32(buf + 40);
78 ext->state.saved_l = AV_RL32(buf + 44);
80 for (int i = 0; i < FF_ARRAY_ELEMS(ext->unk3); i++)
81 ext->unk3[i] = AV_RL32(buf + 48 + (i * 4));
83 ext->data = AV_RL32(buf + 76);