[vlc-commits] qtsound: remove unneeded variable
David Fuhrmann
git at videolan.org
Sun Jun 15 14:17:31 CEST 2014
vlc | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Sun Jun 15 14:17:21 2014 +0200| [893716e8371827090a14e5a7257ceeb49f9c0933] | committer: David Fuhrmann
qtsound: remove unneeded variable
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=893716e8371827090a14e5a7257ceeb49f9c0933
---
modules/access/qtsound.m | 2 --
1 file changed, 2 deletions(-)
diff --git a/modules/access/qtsound.m b/modules/access/qtsound.m
index 776d601..1f71df5 100644
--- a/modules/access/qtsound.m
+++ b/modules/access/qtsound.m
@@ -225,7 +225,6 @@ struct demux_sys_t {
QTCaptureDevice * audiodevice;
VLCDecompressedAudioOutput * audiooutput;
es_out_id_t *p_es_audio;
- int i_audio_max_buffer_size;
};
/*****************************************************************************
@@ -427,7 +426,6 @@ static int Open(vlc_object_t *p_this)
audiofmt.audio.i_channels = 2;
audiofmt.audio.i_blockalign = audiofmt.audio.i_channels * (audiofmt.audio.i_bitspersample / 8);
audiofmt.i_bitrate = audiofmt.audio.i_channels * audiofmt.audio.i_rate * audiofmt.audio.i_bitspersample;
- p_sys->i_audio_max_buffer_size = audiofmt.i_bitrate;
p_sys->session = [[QTCaptureSession alloc] init];
More information about the vlc-commits
mailing list