Mercurial > mplayer.hg
changeset 32864:ccdfd500453c
Apply forgotten part of previous patch, adding calc_a_pts to mpcommon.h.
author | reimar |
---|---|
date | Tue, 22 Feb 2011 18:24:04 +0000 |
parents | 674117ab7ce7 |
children | 25d2ef30d784 |
files | mpcommon.h |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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 */