OSDN Git Service

decoding example: reset pts/dts after subpacket.
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 13 Dec 2011 18:47:57 +0000 (19:47 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 13 Dec 2011 18:47:57 +0000 (19:47 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
doc/examples/decoding_encoding.c

index f87a8c9..5271edf 100644 (file)
@@ -180,6 +180,8 @@ static void audio_decode_example(const char *outfilename, const char *filename)
         }
         avpkt.size -= len;
         avpkt.data += len;
+        avpkt.dts =
+        avpkt.pts = AV_NOPTS_VALUE;
         if (avpkt.size < AUDIO_REFILL_THRESH) {
             /* Refill the input buffer, to avoid trying to decode
              * incomplete frames. Instead of this, one could also use