view osdep/vsscanf.c @ 20636:325db3f2aba3

don't set the resolution for dvr-ms files: in the asf headers it seems to be always set incorrectly; the decoder will deal with it much better. Patch by John Donaghy (johnfdonaghy gmail com)
author nicodvb
date Fri, 03 Nov 2006 22:53:24 +0000
parents 08cac43f1e38
children 936209c39ed1
line wrap: on
line source

#include "config.h"

#ifndef	HAVE_VSSCANF
/* 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);
}
#endif