diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-10 12:20:40 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-10 12:27:17 +0100 |
commit | 59ce62f7135ce766e138aa1084abe807029f11a9 (patch) | |
tree | 408679b42e45ff68d5256bcce28ca27378b5e0b2 /libavformat/dv.c | |
parent | 3853fcd5a94aafe430744c4c1cc8a952f42584e3 (diff) | |
download | ffmpeg-59ce62f7135ce766e138aa1084abe807029f11a9.tar.gz |
avformat/dv: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/dv.c')
-rw-r--r-- | libavformat/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dv.c b/libavformat/dv.c index 359040662d..1f47d411c2 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -582,7 +582,7 @@ static int dv_read_close(AVFormatContext *s) static int dv_probe(AVProbeData *p) { - unsigned state, marker_pos = 0; + unsigned marker_pos = 0; int i; int matches = 0; int firstmatch = 0; |