Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
erankor committed Jan 15, 2024
1 parent 675fcc4 commit 38265b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vod/mkv/mkv_format.c
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ mkv_get_read_frames_request(
uint64_t done_tracks_mask;
uint64_t all_tracks_mask;
uint64_t cur_track_mask;
uint64_t initial_time = 0;
uint64_t initial_time;
mkv_index_t prev_index;
mkv_index_t index;
vod_status_t rc;
Expand All @@ -1017,7 +1017,10 @@ mkv_get_read_frames_request(
read_req->read_offset = ULLONG_MAX;
read_req->flags = 0;

initial_time = 0;
prev_index.cluster_pos = ULLONG_MAX;
prev_index.time = 0;

seen_tracks_mask = 0;
done_tracks_mask = 0;

Expand Down

0 comments on commit 38265b4

Please sign in to comment.