diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-08-25 17:15:05 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-08-25 17:15:05 +0000 |
commit | b9fc895dc1365e82e615e5a552798e2499b1dea2 (patch) | |
tree | 51dc8c5eec89bd00af5d03048e873f70ec956bec /libmpcodecs | |
parent | 529d2f803089441da972b5a751ca0b44f0913942 (diff) | |
download | mpv-b9fc895dc1365e82e615e5a552798e2499b1dea2.tar.bz2 mpv-b9fc895dc1365e82e615e5a552798e2499b1dea2.tar.xz |
warning fix:
pullup.c: In function 'decide_frame_length':
pullup.c:569: warning: unused variable 'f3'
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24196 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r-- | libmpcodecs/pullup.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libmpcodecs/pullup.c b/libmpcodecs/pullup.c index 9a672e7956..345e3e6bf0 100644 --- a/libmpcodecs/pullup.c +++ b/libmpcodecs/pullup.c @@ -566,7 +566,6 @@ static int decide_frame_length(struct pullup_context *c) struct pullup_field *f0 = c->first; struct pullup_field *f1 = f0->next; struct pullup_field *f2 = f1->next; - struct pullup_field *f3 = f2->next; int l; if (queue_length(c->first, c->last) < 4) return 0; |