summaryrefslogtreecommitdiffstats
path: root/libmpdemux/parse_mp4.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-23 06:14:53 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-23 13:48:38 +0300
commit9e7dfe3fa34ca05fb63cd34369f7c847b777516d (patch)
tree8eaf736355431908c87aab9c28e0b7c1fb4f29aa /libmpdemux/parse_mp4.c
parentd9aa368a6d8dcbea2cd03b6c2a6c2e6df5fc16ce (diff)
downloadmpv-9e7dfe3fa34ca05fb63cd34369f7c847b777516d.tar.bz2
mpv-9e7dfe3fa34ca05fb63cd34369f7c847b777516d.tar.xz
Mark some functions static
These functions aren't used outside their file and have no prototype in any header. Based on a forgotten patch from 2006 by Stefan Huehner, (stefan huehner org).
Diffstat (limited to 'libmpdemux/parse_mp4.c')
-rw-r--r--libmpdemux/parse_mp4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/parse_mp4.c b/libmpdemux/parse_mp4.c
index 7492e3109a..02b00341c2 100644
--- a/libmpdemux/parse_mp4.c
+++ b/libmpdemux/parse_mp4.c
@@ -20,7 +20,7 @@
#define MP4_DL MSGL_V
#define freereturn(a,b) free(a); return b
-int mp4_read_descr_len(stream_t *s) {
+static int mp4_read_descr_len(stream_t *s) {
uint8_t b;
uint8_t numBytes = 0;
uint32_t length = 0;