Mercurial > mplayer.hg
annotate osdep/vsscanf.c @ 23978:ef6e50c3c172
Revert setting audio output channel count for FFmpeg
The FFmpeg API needs to be fixed before this can be done sanely.
ffdca wants the desired output channel count to be set in
avctx->channels. Unfortunately it also completely fails if the requested
number of channels is not available rather than returning a different
amount (if 6 channels are requested we'd probably rather use stereo than
fail completely).
ffvorbis ignores caller-set values in avctx->channels. It writes the
channel count there once during init. This means the caller can only
set the count before init because later there would be no indication
whether the channel count in avctx reflects real output.
ffwma requires the caller to supply the encoded channel count
in avctx->channels during init or it fails. So it is not possible to
set a different number of desired output channels there before init
either.
author | uau |
---|---|
date | Thu, 02 Aug 2007 21:54:14 +0000 |
parents | 936209c39ed1 |
children | 5cfef41a1771 |
rev | line source |
---|---|
16985 | 1 #include "config.h" |
8290
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
2 |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
3 /* system has no vsscanf. try to provide one */ |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
4 |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
5 #include <stdio.h> |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
6 #include <stdarg.h> |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
7 |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
8 int |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
9 vsscanf(const char *str, const char *format, va_list ap) |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
10 { |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
11 /* XXX: can this be implemented in a more portable way? */ |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
12 long p1 = va_arg(ap, long); |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
13 long p2 = va_arg(ap, long); |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
14 long p3 = va_arg(ap, long); |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
15 long p4 = va_arg(ap, long); |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
16 long p5 = va_arg(ap, long); |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
17 return sscanf(str, format, p1, p2, p3, p4, p5); |
1dd8fe0776d3
Add our own vsscanf implementation, in case the system's libc does not have
jkeil
parents:
diff
changeset
|
18 } |