mirror of https://git.ffmpeg.org/ffmpeg.git
avdevice/dshow: fix unused variable warning
The acaps variable was used outside of the #if DSHOWDEBUG block witha1c4929f
, but it is no longer used outside of the block sincef125c504
.
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…
Reference in New Issue