Please Help Error CS0117

#if UNITY_STANDALONE_OSX
// Ensure that this codec format is supported, because on macOS we depend on AVFoundation in the OS
System.Text.StringBuilder sb = new System.Text.StringBuilder(128);
bool supported = ProResWrapperHelpers.SupportsCodecFormat(nCodecFormat, sb, sb.Capacity);
string sSupported = sb.ToString();

if (!supported)
{
Debug.LogError(string.Format(“Could not create file {0}: {1}”, _rawVideoFilename, sb.ToString()));
_encoderPtr = IntPtr.Zero;
return;
}
#endif[/code]

Above is the code!!!

It keeps saying that the file does not contain a definition for SupportsCodecFormat

Oh no need to reply anymore lads. Fixed it

I’m having a similar issue. How did you fix it?

How to report your problem productively in the Unity3D forums:

http://plbm.com/?p=220

How to understand errors in general:

https://discussions.unity.com/t/824586/8

Please use code tags: https://discussions.unity.com/t/481379