Commit d5c0036d authored by Thilo Borgmann's avatar Thilo Borgmann Committed by Michael Niedermayer

lavd/qtkit: Fix non-constant initializer element for some clang compilers.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9d013fe8
......@@ -35,11 +35,11 @@
#include "libavutil/time.h"
#include "avdevice.h"
static const int kQTKitTimeBase = 100;
#define QTKIT_TIMEBASE 100
static const AVRational kQTKitTimeBase_q = {
.num = 1,
.den = kQTKitTimeBase
.den = QTKIT_TIMEBASE
};
typedef struct
......@@ -213,7 +213,7 @@ static int qtkit_read_header(AVFormatContext *s)
goto fail;
}
avpriv_set_pts_info(stream, 64, 1, kQTKitTimeBase);
avpriv_set_pts_info(stream, 64, 1, QTKIT_TIMEBASE);
stream->codec->codec_id = AV_CODEC_ID_RAWVIDEO;
stream->codec->codec_type = AVMEDIA_TYPE_VIDEO;
......
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