summaryrefslogtreecommitdiff
path: root/ivfenc.h
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2014-01-29 17:57:21 -0800
committerDmitry Kovalev <dkovalev@google.com>2014-01-29 17:57:21 -0800
commit373b0f9ae36a85d09b350d981b761314b2bd8d42 (patch)
tree781c485df40a6c59880ae5331508047d75c43da6 /ivfenc.h
parentafc8f4344885e47afcc8ae90463054b778a46efb (diff)
downloadlibvpx-373b0f9ae36a85d09b350d981b761314b2bd8d42.tar
libvpx-373b0f9ae36a85d09b350d981b761314b2bd8d42.tar.gz
libvpx-373b0f9ae36a85d09b350d981b761314b2bd8d42.tar.bz2
libvpx-373b0f9ae36a85d09b350d981b761314b2bd8d42.zip
Changing ivf_write_frame_header() function signature.
Replacing vpx_codec_cx_pkt argument with two separate pts and frame_size. Change-Id: I7b37e379ee71342520cf08f03acfb4b499b2cbe4
Diffstat (limited to 'ivfenc.h')
-rw-r--r--ivfenc.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ivfenc.h b/ivfenc.h
index b486bc809..6623687e8 100644
--- a/ivfenc.h
+++ b/ivfenc.h
@@ -23,8 +23,10 @@ void ivf_write_file_header(FILE *outfile,
const struct vpx_codec_enc_cfg *cfg,
uint32_t fourcc,
int frame_cnt);
-void ivf_write_frame_header(FILE *outfile, const struct vpx_codec_cx_pkt *pkt);
-void ivf_write_frame_size(FILE *outfile, size_t size);
+
+void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size);
+
+void ivf_write_frame_size(FILE *outfile, size_t frame_size);
#ifdef __cplusplus
} /* extern "C" */