diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-11-16 15:33:49 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-11-16 15:33:49 +0000 |
commit | ec1091eb86402f83104124775fc3eb442f1369de (patch) | |
tree | eb8710ad8f8f70c106228baecfe29418217645e1 /src/libffmpeg/libavcodec/svq1.c | |
parent | fc05268e42be632cc4ab1c00b5918e2158317c10 (diff) | |
download | xine-lib-ec1091eb86402f83104124775fc3eb442f1369de.tar.gz xine-lib-ec1091eb86402f83104124775fc3eb442f1369de.tar.bz2 |
fix some more compiler warnings about functions xine does not use
(mostly encoder stuff)
CVS patchset: 5752
CVS date: 2003/11/16 15:33:49
Diffstat (limited to 'src/libffmpeg/libavcodec/svq1.c')
-rw-r--r-- | src/libffmpeg/libavcodec/svq1.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libffmpeg/libavcodec/svq1.c b/src/libffmpeg/libavcodec/svq1.c index bce799639..5aa7a876e 100644 --- a/src/libffmpeg/libavcodec/svq1.c +++ b/src/libffmpeg/libavcodec/svq1.c @@ -556,6 +556,7 @@ static uint16_t svq1_packet_checksum (uint8_t *data, int length, int value) { return value; } +#if 0 static uint16_t svq1_component_checksum (uint16_t *pixels, int pitch, int width, int height, int value) { int x, y; @@ -570,6 +571,7 @@ static uint16_t svq1_component_checksum (uint16_t *pixels, int pitch, return value; } +#endif static void svq1_parse_string (GetBitContext *bitbuf, uint8_t *out) { uint8_t seed; |