diff --git a/Unosquare.FFME/Container/MediaContainer.cs b/Unosquare.FFME/Container/MediaContainer.cs index e4dd49ea..c490fe3a 100644 --- a/Unosquare.FFME/Container/MediaContainer.cs +++ b/Unosquare.FFME/Container/MediaContainer.cs @@ -682,9 +682,6 @@ private void StreamInitialize() CustomInputStreamContext = ffmpeg.avio_alloc_context( inputBuffer, CustomInputStream.ReadBufferLength, 0, null, CustomInputStreamRead, null, CustomInputStreamSeek); - // Set the seekable flag based on the custom input stream implementation - CustomInputStreamContext->seekable = CustomInputStream.CanSeek ? ffmpeg.AVIO_SEEKABLE_NORMAL : 0; - // Assign the AVIOContext to the input context inputContextPtr->pb = CustomInputStreamContext; }