Mediabrowser ignores SAR

As reported during the beta, viewtopic.php?f=8&t=6643&p=48045&hilit=mediabrowser+aspect#p48045 , mediabrowser ignores the SAR ratio and so plays videos in squashed form.
This stream as reported by ffmpeg:
plays squeezed in the mediabrowser as 32:27 but it should play as 16:9 ie DAR/SAR.
The current ffmpeg command is scale=1280:1080,setsar=1, but when I change it to scale=1280:1080*sar,setsar=1 (by intercepting the ffmpeg command) it plays correctly as 16:9.
This stream as reported by ffmpeg:
Stream #0:1[0x4b]: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p, 128
0x720 [SAR 2:3 DAR 32:27], 91.18 fps, 25 tbr, 90k tbn, 50 tbc
plays squeezed in the mediabrowser as 32:27 but it should play as 16:9 ie DAR/SAR.
The current ffmpeg command is scale=1280:1080,setsar=1, but when I change it to scale=1280:1080*sar,setsar=1 (by intercepting the ffmpeg command) it plays correctly as 16:9.