summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorTom Finegan <tomfinegan@google.com>2014-02-19 16:20:14 -0800
committerTom Finegan <tomfinegan@google.com>2014-02-19 16:20:14 -0800
commit34d02b060d97073eaf8a2fca49360274288b7a25 (patch)
tree7e39c74048fece9b8c5c20d4e4fa5223355157f7 /examples
parent33bb44355006b550c00085c7cf85fc7321321b75 (diff)
downloadlibvpx-34d02b060d97073eaf8a2fca49360274288b7a25.tar.gz
libvpx-34d02b060d97073eaf8a2fca49360274288b7a25.tar.bz2
libvpx-34d02b060d97073eaf8a2fca49360274288b7a25.zip
vp8cx_set_ref.c: Silence MSVC data loss warning.
Change-Id: I1210ce23cf8f98950c445a17ef51a73c6852c89f
Diffstat (limited to 'examples')
-rw-r--r--examples/vp8cx_set_ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/vp8cx_set_ref.c b/examples/vp8cx_set_ref.c
index 5a675788a..f87dd35c3 100644
--- a/examples/vp8cx_set_ref.c
+++ b/examples/vp8cx_set_ref.c
@@ -139,7 +139,7 @@ static void write_ivf_frame_header(FILE *outfile,
return;
pts = pkt->data.frame.pts;
- mem_put_le32(header, pkt->data.frame.sz);
+ mem_put_le32(header, (unsigned int)pkt->data.frame.sz);
mem_put_le32(header+4, pts&0xFFFFFFFF);
mem_put_le32(header+8, pts >> 32);