Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/lib_ccx/zvbi/decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -548,9 +548,7 @@ void vbi_raw_decoder_resize(vbi_raw_decoder *rd,
int *start,
unsigned int *count)
{
vbi_service_set service_set;
vbi3_raw_decoder *rd3;

assert(NULL != rd);
assert(NULL != start);
assert(NULL != count);
Expand All @@ -568,7 +566,7 @@ void vbi_raw_decoder_resize(vbi_raw_decoder *rd,
rd->count[0] = count[0];
rd->count[1] = count[1];

service_set = vbi3_raw_decoder_set_sampling_par(rd3, (vbi_sampling_par *)rd, /* strict */ 0);
vbi3_raw_decoder_set_sampling_par(rd3, (vbi_sampling_par *)rd, /* strict */ 0);
}
}

Expand Down
Loading