]> git.sesse.net Git - ffmpeg/blobdiff - doc/examples/demuxing_decoding.c
Merge commit '2866d108c9e9da7baf53ff57a51d470691049a57'
[ffmpeg] / doc / examples / demuxing_decoding.c
index 49fb6afae13dd0c2e1c2f4135599c28006e7ec7e..b1a216abb4cb72f448b4fe215d0ab3692be72a1e 100644 (file)
@@ -93,10 +93,9 @@ static int decode_packet(int *got_frame, int cached)
                 return -1;
             }
 
-            printf("video_frame%s n:%d coded_n:%d pts:%s\n",
+            printf("video_frame%s n:%d coded_n:%d\n",
                    cached ? "(cached)" : "",
-                   video_frame_count++, frame->coded_picture_number,
-                   av_ts2timestr(frame->pts, &video_dec_ctx->time_base));
+                   video_frame_count++, frame->coded_picture_number);
 
             /* copy decoded frame to destination buffer:
              * this is required since rawvideo expects non aligned data */