Displaying 3 results from an estimated 3 matches for "teletext".
2024 Oct 15
2
C API: How to get a seektable for very long files?
...alone, as it would just be yet another
half-baked adhoc "standard" that causes more problems than it solves. For
example I had not even considered the idea of using multiple files.
On the topic of seeking, it is also a problem for my specific use case. I
am interested in digital signals (teletext) hidden in analog video (CVBS
samples), and they just aren't sequential in the same way that audio and
video usually are. I need to seek to an arbitrary video line as fast as
possible, preferably in constant time. A line is usually 2048 samples but
can vary between 1000 and 3000 samples long (a...
2024 Oct 15
2
C API: How to get a seektable for very long files?
Op di 15 okt. 2024 16:18 schreef Stefan Oltmanns <stefan-oltmanns at gmx.net>:
>
> I see, but that would require changes in the software using libflac and
> require the file to be easily seekable to be able to skip to the end and
> depending on how far away the seek points are, it could take a while.
>
No, seeking to a specific sample can take a while because of all the
2024 Oct 15
1
C API: How to get a seektable for very long files?
...issue. But for bit depth it is not
needed, libflac allows 4 to 32 bit per sample, with all values in between.
Total samples and sample rate are the only fields I can think of.
>
> On the topic of seeking, it is also a problem for my specific use case. I
> am interested in digital signals (teletext) hidden in analog video (CVBS
> samples), and they just aren't sequential in the same way that audio and
> video usually are. I need to seek to an arbitrary video line as fast as
> possible, preferably in constant time. A line is usually 2048 samples but
> can vary between 1000 and...