You can find that code in plugins/content/commedia/commedia.php:
$_down = strtolower(trim(findpattern($match,"download=")));
if ($_down == 'yes') $showDownload = 1;
else if ($_down == 'no') $showDownload = 0;
else if ($_down == 'group') $showDownload = 2;
else $showDownload = $this->params->def('showDownload', '1');
You can put some code right after that:
If (/*detection of mobile devices*/) showDownload = 0;
See "php how detect the mobile device" in Google.