]> git.sesse.net Git - vlc/blob - plugins/mad_adec/BUGS
libmad plug-in, courtesy of Jean-Paul Saman <jpsaman@wxs.nl>.
[vlc] / plugins / mad_adec / BUGS
1 bug #09/11/2001-1: (FIXED 20/11/2001, by JP Saman)
2         Makefile.opts.in and Makefile.opts static libmad.a library is not filled in automatically by configure.
3         It should say in Makefile.opts LIB_MAD_ADEC=lib/libmad.a
4
5 bug #09/11/2001-2:
6         libmad/mad.h is not created automatically. Fix compile step and dependencies for mad_adec to automatically
7         configure and or build libmad when not build yet. This means integration of configure.in scripts.
8
9 bug #12/11/2001-1 (WORKING, by JP Saman)
10         smoothen out audio in libmad_output callback function, by optimizing conversion routines. After investigation
11         and experimenting I found out that my input routine and output routine were not balanced correctly with
12         respect to buffer sizes. A lot of data got lost. I fixed that, but still need a bater scaling/smoothing routine
13         for the audio.
14
15 bug #20/11/2001-1 (FIXED 25/11/2001, by JP Saman)
16         synchronization between audio and video output is lost. In libmad_output a timestamp is set on the audio data, but
17         it points to a later video frame, then when the audio data was read. How can I set the correct timestamp on the
18         audio fifo at the time it was read from the bitstream, so that it matches the video frame it belongs to?
19         Solution: Do it in two steps, in the input function save i_pts of fifo and in output function pass saved i_pts to
20         aout_fifo.