BatchGuy.App.X264Log.Services.X264LogLineItemIdentifierService.IsBFrame C# (CSharp) Method

IsBFrame() private method

private IsBFrame ( string lineItem ) : bool
lineItem string
return bool
        private bool IsBFrame(string lineItem)
        {
            if (lineItem.Contains("frame B"))
                return true;
            else
                return false;
        }