We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to get a NO_TRANCODE image, however read / retrieve returns a Void. Reading the code I found weird that retrieve! does not return the buf.
function retrieve!{T<:EightBitTypes}(r::VideoReader{NO_TRANSCODE}, buf::VidArray{T}) while !have_frame(r) idx = pump(r.avin) idx == r.stream_index0 && break idx == -1 && throw(EOFError()) end if !bufsize_check(r, buf) error("Buffer is the wrong size") end end
I believe that this function does nothing on practice, as there is no copy of the image buffer to buf; neither this buffer is returned.
The text was updated successfully, but these errors were encountered:
Still an issue--this was never completely implemented, it seems. Mea culpa!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I am trying to get a NO_TRANCODE image, however read / retrieve returns a Void.
Reading the code I found weird that retrieve! does not return the buf.
I believe that this function does nothing on practice, as there is no copy of the image buffer to buf; neither this buffer is returned.
The text was updated successfully, but these errors were encountered: