commit da3b624fb7671203530d0f75aa8e132807f41260
parent 410c5a93a721eeb41ce2a5f8cc9c36031c9c42bc
Author: Heikki Lindholm <holin@iki.fi>
Date: Sun, 30 Dec 2007 09:50:40 +0000
clean up
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/flvextractor.c b/src/plugins/flvextractor.c
@@ -419,7 +419,7 @@ static void handleASEnd(unsigned char type, void * value, void * userdata)
if (s == NULL)
break;
if (state->currentKeyType == EXTRACTOR_DURATION)
- snprintf(s, 30, "%.4f s", n);
+ snprintf(s, 30, "%.2f s", n);
else
snprintf(s, 30, "%f", n);
break;