Commit 27b893b2 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mov: fix "warning: variable altitude set but not used" warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2c1bf3fc
......@@ -227,7 +227,7 @@ static int mov_metadata_loci(MOVContext *c, AVIOContext *pb, unsigned len)
char language[4] = { 0 };
char buf[100];
uint16_t langcode = 0;
double longitude, latitude, altitude;
av_unused double longitude, latitude, altitude;
const char *key = "location";
if (len < 4 + 2 + 1 + 1 + 4 + 4 + 4)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment