Browse Source

fixed stereo grab

Originally committed as revision 135 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Fabrice Bellard 24 years ago
parent
commit
1d7840aaec
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      ffmpeg.c

+ 5
- 5
ffmpeg.c View File

@@ -192,9 +192,9 @@ static int read_key(void)
/* main loop for grabbing */ /* main loop for grabbing */
int av_grab(AVFormatContext *s) int av_grab(AVFormatContext *s)
{ {
UINT8 audio_buf[AUDIO_FIFO_SIZE/2];
UINT8 audio_buf1[AUDIO_FIFO_SIZE/2];
UINT8 audio_out[AUDIO_FIFO_SIZE/2];
UINT8 audio_buf[AUDIO_FIFO_SIZE];
UINT8 audio_buf1[AUDIO_FIFO_SIZE];
UINT8 audio_out[AUDIO_FIFO_SIZE];
UINT8 video_buffer[1024*1024]; UINT8 video_buffer[1024*1024];
char buf[256]; char buf[256];
short *samples; short *samples;
@@ -364,8 +364,8 @@ int av_grab(AVFormatContext *s)
ost->resample = audio_resample_init(enc->channels, channels, ost->resample = audio_resample_init(enc->channels, channels,
enc->sample_rate, sample_rate); enc->sample_rate, sample_rate);
} }
if (fifo_init(&ost->fifo, (2 * audio_fifo_size * enc->sample_rate) /
sample_rate))
if (fifo_init(&ost->fifo, (2 * audio_fifo_size * enc->sample_rate *
enc->channels) / sample_rate))
goto fail; goto fail;
break; break;
case CODEC_TYPE_VIDEO: case CODEC_TYPE_VIDEO:


Loading…
Cancel
Save