OSDN Git Service

Set coded_frame->pts in the FLAC encoder
authorJustin Ruggles <justin.ruggles@gmail.com>
Fri, 30 Jul 2010 19:18:48 +0000 (19:18 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Fri, 30 Jul 2010 19:18:48 +0000 (19:18 +0000)
Originally committed as revision 24601 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/flacenc.c

index b23d3a6..889a8d4 100644 (file)
@@ -1317,6 +1317,7 @@ write_frame:
     }
 
     s->frame_count++;
+    avctx->coded_frame->pts = s->sample_count;
     s->sample_count += avctx->frame_size;
     update_md5_sum(s, samples);
     if (out_bytes > s->max_encoded_framesize)