Tagged Questions

3
votes
2answers
143 views

How in portable C to seek forward when reading from a pipe

Since fseek() does not work on pipes what methods exist for simulating seeking forward. The naive approach is to use fread() and throw away the contents read into the memory buffer. For huge seeks to ...
2
votes
3answers
678 views

Question about file seeking position

My previous Question is about raw data reading and writing, but a new problem arised, it seems there is no ending.... The question is: the parameters of the functions like lseek() or fseek() are all ...
1
vote
1answer
466 views

Seeking by bytes in FFmpeg

I will appreciate your advice on the following. I'am developing a video converter which based on FFmpeg's libavformat, and I need to implement an accurate seeking API. First of all, I developed an ...
1
vote
3answers
1k views

C Program: How to properly use lseek() or fseek() to modify a certain part of a file?

I have a binary file in CSV format that contains multiple records. Each record is entered in as user_name, last_name, first_name, num_wins, num_losses, num_ties. I am creating a method to update a ...