summaryrefslogtreecommitdiff
path: root/tools_common.h
diff options
context:
space:
mode:
authorTom Finegan <tomfinegan@google.com>2013-11-18 14:39:51 -0800
committerTom Finegan <tomfinegan@google.com>2013-11-19 10:26:51 -0800
commit2abe2d46646f2e8eb29959ac3e2541fd272bf9dd (patch)
treebbdba083104bbf6124a7c35f1f5dbbb888dfae45 /tools_common.h
parenta7c4209724632acfb39faa4dfc9027303deaa30c (diff)
downloadlibvpx-2abe2d46646f2e8eb29959ac3e2541fd272bf9dd.tar
libvpx-2abe2d46646f2e8eb29959ac3e2541fd272bf9dd.tar.gz
libvpx-2abe2d46646f2e8eb29959ac3e2541fd272bf9dd.tar.bz2
libvpx-2abe2d46646f2e8eb29959ac3e2541fd272bf9dd.zip
vpxdec: Relocate WebM input support.
- Move it to webmdec.c and webmdec.h. - Also, tidy up obvious style nits in the vicinity of code I was already touching. Change-Id: Ie2898d06e73c1e9030d9c8d465b73ee7edc3c02a
Diffstat (limited to 'tools_common.h')
-rw-r--r--tools_common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools_common.h b/tools_common.h
index 353f90aaa..7500523e8 100644
--- a/tools_common.h
+++ b/tools_common.h
@@ -92,11 +92,11 @@ struct VpxInputContext {
off_t length;
struct FileTypeDetectionBuffer detect;
enum VideoFileType file_type;
- unsigned int width;
- unsigned int height;
+ uint32_t width;
+ uint32_t height;
int use_i420;
int only_i420;
- unsigned int fourcc;
+ uint32_t fourcc;
struct VpxRational framerate;
#if CONFIG_ENCODERS
y4m_input y4m;