ssaparse: include required system headers for isspace() and sscanf() functions
authorKhem Raj <raj.khem@gmail.com>
Sat, 13 Aug 2022 05:42:28 +0000 (22:42 -0700)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Sun, 14 Aug 2022 08:32:05 +0000 (08:32 +0000)
commitce1f1c9eff493344b61322e0d854267205a6d462
tree2a3fe6ac67bcc30f85a71f419ce3fe76a64c45a5
parent852ba82e366813e73eb0b14bdce3fb604b135adf
ssaparse: include required system headers for isspace() and sscanf() functions

Newer compilers ( clang 15 ) have turned stricter and errors out instead
of warning on implicit function declations

Fixes
gstssaparse.c:297:12: error: call to undeclared library function 'isspace' with type 'int (int)'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
    while (isspace(*t))

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2879>
subprojects/gst-plugins-base/gst/subparse/gstssaparse.c