Skip to content
New issue

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

Decoding frames before the first frame starts returns all the frames #567

Open
NicolasHug opened this issue Mar 17, 2025 · 0 comments
Open
Labels
bug Something isn't working

Comments

@NicolasHug
Copy link
Member

NicolasHug commented Mar 17, 2025

(This bug is related but orthogonal to #553, which is now fixed)

If the first frame of a stream is at pts=S and we ask for samples with stop_pts <= S, the decoder actually returns all the samples in the stream. For example in our mp3 test asset which starts at S=0.13:

frames, *_ = get_frames_by_pts_in_range_audio(decoder, start_seconds=0, stop_seconds=0.05)
all_frames, *_ = get_frames_by_pts_in_range_audio(decoder, start_seconds=0, stop_seconds=None)

frames and all_frames are equal, while we would expect frames to be empty.

@NicolasHug NicolasHug added the bug Something isn't working label Mar 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant