diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-17 21:31:39 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-17 21:31:39 +0000 |
commit | 5bc440e7e8963d8986d6876d5513c4419c3dcdf5 (patch) | |
tree | a916425863d2fd7743a5d9948abfcb9e3a63a97c /ffmpeg.c | |
parent | 48291040ea28698efa707c002cff87c2f288e771 (diff) | |
download | ffmpeg-5bc440e7e8963d8986d6876d5513c4419c3dcdf5.tar.gz |
Add notes where known timestamp issues remain.
Originally committed as revision 12135 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -544,6 +544,8 @@ static void do_audio_out(AVFormatContext *s, AVPacket pkt; av_init_packet(&pkt); + //FIXME pass ost->sync_opts as AVFrame.pts in avcodec_encode_audio() + ret = avcodec_encode_audio(enc, audio_out, audio_out_size, (short *)audio_buf); audio_size += ret; @@ -588,6 +590,7 @@ static void do_audio_out(AVFormatContext *s, size_out = size_out >> 1; break; } + //FIXME pass ost->sync_opts as AVFrame.pts in avcodec_encode_audio() ret = avcodec_encode_audio(enc, audio_out, size_out, (short *)buftmp); audio_size += ret; |