Mercurial > mplayer.hg
view osdep/vsscanf.c @ 28605:65e49c604b25
Set samplerate in reset also for AC3, and set it before the format in that
case (no idea why, but it is done this way in init, so it is consistent).
author | reimar |
---|---|
date | Tue, 17 Feb 2009 21:08:22 +0000 |
parents | 936209c39ed1 |
children | 5cfef41a1771 |
line wrap: on
line source
#include "config.h" /* system has no vsscanf. try to provide one */ #include <stdio.h> #include <stdarg.h> int vsscanf(const char *str, const char *format, va_list ap) { /* XXX: can this be implemented in a more portable way? */ long p1 = va_arg(ap, long); long p2 = va_arg(ap, long); long p3 = va_arg(ap, long); long p4 = va_arg(ap, long); long p5 = va_arg(ap, long); return sscanf(str, format, p1, p2, p3, p4, p5); }