mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Remove const into kvz_init_constraint.
This commit is contained in:
parent
2bca507abe
commit
21c07638ed
|
@ -26,7 +26,7 @@
|
|||
* \param state encoder state
|
||||
* \return the pointer of constraint_t structure
|
||||
*/
|
||||
void * kvz_init_constraint(encoder_state_t* state, encoder_control_t * const encoder) {
|
||||
void * kvz_init_constraint(encoder_state_t* state, encoder_control_t * encoder) {
|
||||
constraint_t* constr = NULL;
|
||||
// Allocate the constraint_t strucutre
|
||||
constr = MALLOC(constraint_t, 1);
|
||||
|
|
|
@ -34,7 +34,7 @@ typedef struct {
|
|||
} constraint_t;
|
||||
|
||||
|
||||
void * kvz_init_constraint(encoder_state_t* state, encoder_control_t * const encoder);
|
||||
void * kvz_init_constraint(encoder_state_t* state, encoder_control_t * encoder);
|
||||
void kvz_constraint_free(encoder_state_t* state);
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue