Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
8fa9d183
Commit
8fa9d183
authored
10 years ago
by
Dmitry Kovalev
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Download
Plain Diff
Merge "Replacing 'struct vpx_fixed_buf' with 'vpx_fixed_buf_t’."
parents
d75da2e1
f9fb3b8e
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
sandbox/Jingning/experimental
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
vp8/common/onyx.h
+1
-1
vp8/common/onyx.h
vp9/encoder/vp9_encoder.h
+3
-3
vp9/encoder/vp9_encoder.h
vp9/encoder/vp9_svc_layercontext.h
+1
-1
vp9/encoder/vp9_svc_layercontext.h
vpx/internal/vpx_codec_internal.h
+1
-1
vpx/internal/vpx_codec_internal.h
vpx/vpx_encoder.h
+5
-5
vpx/vpx_encoder.h
with
11 additions
and
11 deletions
vp8/common/onyx.h
+
1
−
1
View file @
8fa9d183
...
...
@@ -224,7 +224,7 @@ extern "C"
int
arnr_strength
;
int
arnr_type
;
struct
vpx_fixed_buf
two_pass_stats_in
;
vpx_fixed_buf
_t
two_pass_stats_in
;
struct
vpx_codec_pkt_list
*
output_pkt_list
;
vp8e_tuning
tuning
;
...
...
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_encoder.h
+
3
−
3
View file @
8fa9d183
...
...
@@ -208,11 +208,11 @@ typedef struct VP9EncoderConfig {
int
tile_columns
;
int
tile_rows
;
struct
vpx_fixed_buf
two_pass_stats_in
;
struct
vpx_codec_pkt_list
*
output_pkt_list
;
vpx_fixed_buf
_t
two_pass_stats_in
;
struct
vpx_codec_pkt_list
*
output_pkt_list
;
#if CONFIG_FP_MB_STATS
struct
vpx_fixed_buf
firstpass_mb_stats_in
;
vpx_fixed_buf
_t
firstpass_mb_stats_in
;
#endif
vp8e_tuning
tuning
;
...
...
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_svc_layercontext.h
+
1
−
1
View file @
8fa9d183
...
...
@@ -25,7 +25,7 @@ typedef struct {
double
framerate
;
int
avg_frame_size
;
TWO_PASS
twopass
;
struct
vpx_fixed_buf
rc_twopass_stats_in
;
vpx_fixed_buf
_t
rc_twopass_stats_in
;
unsigned
int
current_video_frame_in_layer
;
int
is_key_frame
;
vpx_svc_parameters_t
svc_params_received
;
...
...
This diff is collapsed.
Click to expand it.
vpx/internal/vpx_codec_internal.h
+
1
−
1
View file @
8fa9d183
...
...
@@ -344,7 +344,7 @@ struct vpx_codec_priv {
vpx_codec_priv_cb_pair_t
put_slice_cb
;
}
dec
;
struct
{
struct
vpx_fixed_buf
cx_data_dst_buf
;
vpx_fixed_buf
_t
cx_data_dst_buf
;
unsigned
int
cx_data_pad_before
;
unsigned
int
cx_data_pad_after
;
vpx_codec_cx_pkt_t
cx_data_pkt
;
...
...
This diff is collapsed.
Click to expand it.
vpx/vpx_encoder.h
+
5
−
5
View file @
8fa9d183
...
...
@@ -188,14 +188,14 @@ extern "C" {
has id 0.*/
}
frame
;
/**< data for compressed frame packet */
struct
vpx_fixed_buf
twopass_stats
;
/**< data for two-pass packet */
struct
vpx_fixed_buf
firstpass_mb_stats
;
/**< first pass mb packet */
vpx_fixed_buf
_t
twopass_stats
;
/**< data for two-pass packet */
vpx_fixed_buf
_t
firstpass_mb_stats
;
/**< first pass mb packet */
struct
vpx_psnr_pkt
{
unsigned
int
samples
[
4
];
/**< Number of samples, total/y/u/v */
uint64_t
sse
[
4
];
/**< sum squared error, total/y/u/v */
double
psnr
[
4
];
/**< PSNR, total/y/u/v */
}
psnr
;
/**< data for PSNR packet */
struct
vpx_fixed_buf
raw
;
/**< data for arbitrary packets */
vpx_fixed_buf
_t
raw
;
/**< data for arbitrary packets */
#if CONFIG_SPATIAL_SVC
size_t
layer_sizes
[
VPX_SS_MAX_LAYERS
];
#endif
...
...
@@ -452,14 +452,14 @@ extern "C" {
* A buffer containing all of the stats packets produced in the first
* pass, concatenated.
*/
struct
vpx_fixed_buf
rc_twopass_stats_in
;
vpx_fixed_buf
_t
rc_twopass_stats_in
;
/*!\brief first pass mb stats buffer.
*
* A buffer containing all of the first pass mb stats packets produced
* in the first pass, concatenated.
*/
struct
vpx_fixed_buf
rc_firstpass_mb_stats_in
;
vpx_fixed_buf
_t
rc_firstpass_mb_stats_in
;
/*!\brief Target data rate
*
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets