examples: video-play-fixate.c remove fixated check

This commit is contained in:
columbarius 2021-11-08 11:49:36 +01:00
parent a84cfac28a
commit ed3be2114c

View file

@ -297,11 +297,6 @@ on_stream_param_changed(void *_data, uint32_t id, const struct spa_pod *param)
fprintf(stderr, "got format:\n"); fprintf(stderr, "got format:\n");
spa_debug_format(2, NULL, param); spa_debug_format(2, NULL, param);
if (!spa_pod_is_fixated(param)) {
fprintf(stderr, "not fixated\n");
return;
}
if (spa_format_parse(param, &data->format.media_type, &data->format.media_subtype) < 0) if (spa_format_parse(param, &data->format.media_type, &data->format.media_subtype) < 0)
return; return;