missing semicolon in last commit

Originally committed to SVN as r2095.
This commit is contained in:
Karl Blomster 2008-03-21 20:35:59 +00:00
parent ee04563ff6
commit 9a7bbc9b93
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ void LAVCAudioProvider::GetAudio(void *buf, int64_t start, int64_t count)
int temp_output_buffer_size = AVCODEC_MAX_AUDIO_FRAME_SIZE; /* see constructor, it malloc()'s buffer to this */
int retval, decoded_samples;
retval = avcodec_decode_audio2(codecContext, buffer, &temp_output_buffer_size, data, size)
retval = avcodec_decode_audio2(codecContext, buffer, &temp_output_buffer_size, data, size);
if (retval <= 0)
throw _T("Failed to decode audio");
if (temp_output_buffer_size == 0) /* sanity checking, shouldn't ever happen */