0
1
mirror of https://github.com/radio95-rnt/rds95.git synced 2026-02-27 12:53:53 +01:00
This commit is contained in:
2025-12-27 15:28:56 +01:00
parent e32558ecf5
commit 5e8f5dc98e
2 changed files with 32 additions and 21 deletions

View File

@@ -560,7 +560,7 @@ int lua_group(RDSGroup* group, const char grp) {
} }
lua_pushlstring(L, &grp, 1); lua_pushlstring(L, &grp, 1);
if (lua_pcall(L, 1, 4, 0) != LUA_OK) { if (lua_pcall(L, 1, 4, 0) != LUA_OK) {
fprintf(stderr, "Lua error: %s\n", lua_tostring(L, -1)); fprintf(stderr, "Lua error: %s\n", lua_tostring(L, -1));
lua_pop(L, 1); lua_pop(L, 1);
@@ -571,7 +571,7 @@ int lua_group(RDSGroup* group, const char grp) {
int success = 0; int success = 0;
if (lua_isboolean(L, -4) && lua_toboolean(L, -4) && if (lua_isboolean(L, -4) && lua_toboolean(L, -4) &&
lua_isinteger(L, -3) && lua_isinteger(L, -2) && lua_isinteger(L, -1)) { lua_isinteger(L, -3) && lua_isinteger(L, -2) && lua_isinteger(L, -1)) {
group->b = (uint16_t)lua_tointeger(L, -3); group->b = (uint16_t)lua_tointeger(L, -3);
group->c = (uint16_t)lua_tointeger(L, -2); group->c = (uint16_t)lua_tointeger(L, -2);
group->d = (uint16_t)lua_tointeger(L, -1); group->d = (uint16_t)lua_tointeger(L, -1);
@@ -590,38 +590,49 @@ int lua_rds2_group(RDSGroup* group, int stream) {
if (lua_isfunction(L, -1)) { if (lua_isfunction(L, -1)) {
lua_pushinteger(L, stream); lua_pushinteger(L, stream);
if (lua_pcall(L, 1, 5, 0) == LUA_OK) { if (lua_pcall(L, 1, 5, 0) == LUA_OK) {
if (!lua_isboolean(L, -1)) { if (!lua_isboolean(L, -5)) {
pthread_mutex_unlock(&lua_mutex); lua_pop(L, 5);
return 0;
}
if (!lua_isinteger(L, -2)) {
pthread_mutex_unlock(&lua_mutex);
return 0;
}
if (!lua_isinteger(L, -3)) {
pthread_mutex_unlock(&lua_mutex); pthread_mutex_unlock(&lua_mutex);
return 0; return 0;
} }
if (!lua_isinteger(L, -4)) { if (!lua_isinteger(L, -4)) {
lua_pop(L, 5);
pthread_mutex_unlock(&lua_mutex); pthread_mutex_unlock(&lua_mutex);
return 0; return 0;
} }
if (!lua_isinteger(L, -5)) { if (!lua_isinteger(L, -3)) {
lua_pop(L, 5);
pthread_mutex_unlock(&lua_mutex); pthread_mutex_unlock(&lua_mutex);
return 0; return 0;
} }
if(lua_toboolean(L, -1) == 0) { if (!lua_isinteger(L, -2)) {
lua_pop(L, 5);
pthread_mutex_unlock(&lua_mutex); pthread_mutex_unlock(&lua_mutex);
return 0; return 0;
} }
group->d = luaL_checkinteger(L, -2); if (!lua_isinteger(L, -1)) {
group->c = luaL_checkinteger(L, -3); lua_pop(L, 5);
group->b = luaL_checkinteger(L, -4); pthread_mutex_unlock(&lua_mutex);
group->a = luaL_checkinteger(L, -5); return 0;
lua_pop(L, 4); }
} else fprintf(stderr, "Lua error: %s at 'rds2_group'\n", lua_tostring(L, -1));
lua_pop(L, 1); if(lua_toboolean(L, -5) == 0) {
lua_pop(L, 5);
pthread_mutex_unlock(&lua_mutex);
return 0;
}
group->a = lua_tointeger(L, -4);
group->b = lua_tointeger(L, -3);
group->c = lua_tointeger(L, -2);
group->d = lua_tointeger(L, -1);
lua_pop(L, 5);
} else {
fprintf(stderr, "Lua error: %s at 'rds2_group'\n", lua_tostring(L, -1));
lua_pop(L, 1);
}
} else lua_pop(L, 1); } else lua_pop(L, 1);
pthread_mutex_unlock(&lua_mutex); pthread_mutex_unlock(&lua_mutex);
return 1; return 1;
} }

View File

@@ -235,7 +235,7 @@ static void get_rds_group(RDSEncoder* enc, RDSGroup *group, uint8_t stream) {
goto group_coded_rds2; goto group_coded_rds2;
} else if(enc->encoder_data.rds2_mode == 2) { } else if(enc->encoder_data.rds2_mode == 2) {
int generated = lua_rds2_group(group, stream); int generated = lua_rds2_group(group, stream);
if(group->a == 0 && generated) group->is_type_b = (IS_TYPE_B(group->b) != 0); if(group->a == 0 && generated == 1) group->is_type_b = (IS_TYPE_B(group->b) != 0);
else if(generated == 0) { else if(generated == 0) {
group->b = enc->state[enc->program].last_stream0_group[0]; group->b = enc->state[enc->program].last_stream0_group[0];
group->c = enc->state[enc->program].last_stream0_group[1]; group->c = enc->state[enc->program].last_stream0_group[1];