forked from mia/Aegisub
missing semicolon in last commit
Originally committed to SVN as r2095.
This commit is contained in:
parent
ee04563ff6
commit
9a7bbc9b93
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue