1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-08 17:37:08 +01:00

fix case where DecodeFrame() was not returning errors

This commit is contained in:
mchinen
2012-06-01 06:11:31 +00:00
parent f837c1fefd
commit e5520d0b7d

View File

@@ -564,7 +564,7 @@ int ODFFmpegDecoder::DecodeFrame(streamContext *sc, bool flushing)
InsertCache(cache); InsertCache(cache);
} }
return 0; return ret;
} }
void ODFFmpegDecoder::InsertCache(FFMpegDecodeCache* cache) { void ODFFmpegDecoder::InsertCache(FFMpegDecodeCache* cache) {