Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: HELP! MP3 - main data in following frames (Read 3225 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

HELP! MP3 - main data in following frames

Hi all,
I have a question about mp3's framesize.

I am writing a program to reconstruct mp3's frames. Sometimes it happens that main data field is longer than available space (bit reservoir + available current frame's space). So the question is: is possible to store main data of current frame in the following frames, or we just can store data in bit reservoir of previous frames?

Please help me is very important!!

Thanks

Thomas

HELP! MP3 - main data in following frames

Reply #1
the main data begin pointer is a back pointer, so you can store audio data for the current frame only previous and current frames.
In your case you need a larger frame then.

 

HELP! MP3 - main data in following frames

Reply #2
Ok, thanks a lot

Thomas