Advertisement
Guest User

Untitled

a guest
Dec 13th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // some mpeg2 in mpeg-ps lack dts (issue171 / input_file.mpg)
  2. // we take the conservative approach and discard both
  3. // Note, if this is misbehaving for a H.264 file then possibly presentation_delayed is not set correctly.
  4. if(delay==1 && pkt->dts == pkt->pts && pkt->dts != AV_NOPTS_VALUE && presentation_delayed){
  5. av_log(s, AV_LOG_DEBUG, "invalid dts/pts combination\n");
  6. pkt->pts= AV_NOPTS_VALUE;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement