summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/post/audio/window.c2
-rw-r--r--src/post/deinterlace/pulldown.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/post/audio/window.c b/src/post/audio/window.c
index 3fe76a112..23c024668 100644
--- a/src/post/audio/window.c
+++ b/src/post/audio/window.c
@@ -142,7 +142,7 @@ void flattop(int n,_ftype_t* w)
*/
#define BIZ_EPSILON 1E-21 /* Max error acceptable */
-_ftype_t besselizero(_ftype_t x)
+static _ftype_t besselizero(_ftype_t x)
{
_ftype_t temp;
_ftype_t sum = 1.0;
diff --git a/src/post/deinterlace/pulldown.c b/src/post/deinterlace/pulldown.c
index fc166ae99..feaefecaf 100644
--- a/src/post/deinterlace/pulldown.c
+++ b/src/post/deinterlace/pulldown.c
@@ -151,6 +151,7 @@ static int bothistory_diff[ 5 ];
static int histpos = 0;
+#if 0 /* FIXME: unused */
static void fill_history( int tff )
{
if( tff ) {
@@ -181,6 +182,7 @@ static void fill_history( int tff )
histpos = 0;
}
+#endif
int determine_pulldown_offset_history( int top_repeat, int bot_repeat, int tff, int *realbest )