Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: libvpx/source/libvpx/vp8/common/onyx.h

Issue 7624054: Revert r97185 "Update libvpx snapshot to v0.9.7-p1 (Cayuga)." (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « libvpx/source/libvpx/vp8/common/mv.h ('k') | libvpx/source/libvpx/vp8/common/onyxc_int.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libvpx/source/libvpx/vp8/common/onyx.h
diff --git a/libvpx/source/libvpx/vp8/common/onyx.h b/libvpx/source/libvpx/vp8/common/onyx.h
index 015b4c4d405c93a42e44e625d68bb29cf50fb7d0..426b8fc2b922282af7b47e08c84f02507c77e076 100644
--- a/libvpx/source/libvpx/vp8/common/onyx.h
+++ b/libvpx/source/libvpx/vp8/common/onyx.h
@@ -109,7 +109,6 @@ extern "C"
int noise_sensitivity; // parameter used for applying pre processing blur: recommendation 0
int Sharpness; // parameter used for sharpening output: recommendation 0:
int cpu_used;
- unsigned int rc_max_intra_bitrate_pct;
// mode ->
//(0)=Realtime/Live Encoding. This mode is optimized for realtim encoding (for example, capturing
@@ -140,9 +139,8 @@ extern "C"
int end_usage; // vbr or cbr
- // buffer targeting aggressiveness
+ // shoot to keep buffer full at all times by undershooting a bit 95 recommended
int under_shoot_pct;
- int over_shoot_pct;
// buffering parameters
int starting_buffer_level; // in seconds
@@ -184,11 +182,8 @@ extern "C"
int token_partitions; // how many token partitions to create for multi core decoding
int encode_breakout; // early breakout encode threshold : for video conf recommend 800
- unsigned int error_resilient_mode; // Bitfield defining the error
- // resiliency features to enable. Can provide
- // decodable frames after losses in previous
- // frames and decodable partitions after
- // losses in the same frame.
+ int error_resilient_mode; // if running over udp networks provides decodable frames after a
+ // dropped packet
int arnr_max_frames;
int arnr_strength ;
@@ -211,8 +206,8 @@ extern "C"
// receive a frames worth of data caller can assume that a copy of this frame is made
// and not just a copy of the pointer..
- int vp8_receive_raw_frame(VP8_PTR comp, unsigned int frame_flags, YV12_BUFFER_CONFIG *sd, int64_t time_stamp, int64_t end_time_stamp);
- int vp8_get_compressed_data(VP8_PTR comp, unsigned int *frame_flags, unsigned long *size, unsigned char *dest, int64_t *time_stamp, int64_t *time_end, int flush);
+ int vp8_receive_raw_frame(VP8_PTR comp, unsigned int frame_flags, YV12_BUFFER_CONFIG *sd, INT64 time_stamp, INT64 end_time_stamp);
+ int vp8_get_compressed_data(VP8_PTR comp, unsigned int *frame_flags, unsigned long *size, unsigned char *dest, INT64 *time_stamp, INT64 *time_end, int flush);
int vp8_get_preview_raw_frame(VP8_PTR comp, YV12_BUFFER_CONFIG *dest, vp8_ppflags_t *flags);
int vp8_use_as_reference(VP8_PTR comp, int ref_frame_flags);
« no previous file with comments | « libvpx/source/libvpx/vp8/common/mv.h ('k') | libvpx/source/libvpx/vp8/common/onyxc_int.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698