# HG changeset patch # User reimar # Date 1298399044 0 # Node ID ccdfd500453cd3c555578463d122b59b8fb06a17 # Parent 674117ab7ce738f666dad958a26aae00c154af4a Apply forgotten part of previous patch, adding calc_a_pts to mpcommon.h. diff -r 674117ab7ce7 -r ccdfd500453c mpcommon.h --- a/mpcommon.h Tue Feb 22 18:22:16 2011 +0000 +++ b/mpcommon.h Tue Feb 22 18:24:04 2011 +0000 @@ -27,6 +27,7 @@ #define ROUND(x) ((int)((x) < 0 ? (x) - 0.5 : (x) + 0.5)) +struct sh_audio; struct sh_video; extern double sub_last_pts; @@ -74,4 +75,6 @@ void common_preinit(void); int common_init(void); +double calc_a_pts(struct sh_audio *sh_audio, demux_stream_t *d_audio); + #endif /* MPLAYER_MPCOMMON_H */