No, this is not possible, considering parameters is just a generic object with a bunch of essentially key/value pairs set by the query string or flashvars. There's nothing that indicates where any of these key/values are set.
The one thing you could do is control it on the server side, if you have access to the embed code. You could maybe write a script that would strip off any vars that appear on the query string and write the clean swf url to the page instead of one with the vars.
Also worth noting, flashvars take precedence over query string vars. So, if you have a foo=querystring
in the query string and foo=flashvars
in the flashvars, the value of foo will result as "flashvars".