summaryrefslogtreecommitdiff
path: root/third_party
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-02-28 19:58:44 -0800
committerJames Zern <jzern@google.com>2014-02-28 19:58:44 -0800
commit086dc8097db2b5d00e020f69b0de216cb2c5f659 (patch)
tree29a9a91e1992ab9a5972ca52262b5516efc2986b /third_party
parenteb27992d1570c843b358502b9c4250ab50477a58 (diff)
downloadlibvpx-086dc8097db2b5d00e020f69b0de216cb2c5f659.tar
libvpx-086dc8097db2b5d00e020f69b0de216cb2c5f659.tar.gz
libvpx-086dc8097db2b5d00e020f69b0de216cb2c5f659.tar.bz2
libvpx-086dc8097db2b5d00e020f69b0de216cb2c5f659.zip
nestegg: packet_track: fix uint64->uint32 warning
Change-Id: I67b2b0d722424df9938d7c26f9d3478592bc813a
Diffstat (limited to 'third_party')
-rw-r--r--third_party/nestegg/README.webm1
-rw-r--r--third_party/nestegg/src/nestegg.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/third_party/nestegg/README.webm b/third_party/nestegg/README.webm
index 44091500f..7860a7cf2 100644
--- a/third_party/nestegg/README.webm
+++ b/third_party/nestegg/README.webm
@@ -17,3 +17,4 @@ nestegg.c|975 col 6| warning: ‘r’ may be used uninitialized in this function
- add ne_get_uint32 convenience function
- fix track_number uint64->uint32 warnings
- fix track_scale double->uint64 warning
+- nestegg_packet_track: fix uint64->uint32 warning
diff --git a/third_party/nestegg/src/nestegg.c b/third_party/nestegg/src/nestegg.c
index e9a0b8a9a..35ce9f1da 100644
--- a/third_party/nestegg/src/nestegg.c
+++ b/third_party/nestegg/src/nestegg.c
@@ -2236,7 +2236,7 @@ nestegg_free_packet(nestegg_packet * pkt)
int
nestegg_packet_track(nestegg_packet * pkt, unsigned int * track)
{
- *track = pkt->track;
+ *track = (unsigned int)pkt->track;
return 0;
}