mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avdevice/dshow: fix unused variable warning
The acaps variable was used outside of the #if DSHOWDEBUG block with a1c4929f, but it is no longer used outside of the block since f125c504.
This commit is contained in:
parent
c034213083
commit
d2ed52dc02
@ -985,8 +985,8 @@ dshow_cycle_formats(AVFormatContext *avctx, enum dshowDeviceType devtype,
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
WAVEFORMATEX *fx;
|
WAVEFORMATEX *fx;
|
||||||
AUDIO_STREAM_CONFIG_CAPS *acaps = caps;
|
|
||||||
#if DSHOWDEBUG
|
#if DSHOWDEBUG
|
||||||
|
AUDIO_STREAM_CONFIG_CAPS *acaps = caps;
|
||||||
ff_print_AUDIO_STREAM_CONFIG_CAPS(acaps);
|
ff_print_AUDIO_STREAM_CONFIG_CAPS(acaps);
|
||||||
#endif
|
#endif
|
||||||
if (IsEqualGUID(&type->formattype, &FORMAT_WaveFormatEx)) {
|
if (IsEqualGUID(&type->formattype, &FORMAT_WaveFormatEx)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user