Skip to content

Commit

Permalink
avformat/segafilmenc: Remove write-only variable
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Rheinhardt <[email protected]>
  • Loading branch information
mkver committed Jul 26, 2020
1 parent efcb411 commit f71116d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions libavformat/segafilmenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ typedef struct FILMPacket {
typedef struct FILMOutputContext {
int audio_index;
int video_index;
int64_t stab_pos;
FILMPacket *start;
FILMPacket *last;
int64_t packet_count;
Expand Down Expand Up @@ -158,7 +157,6 @@ static int film_init(AVFormatContext *format_context)
FILMOutputContext *film = format_context->priv_data;
film->audio_index = -1;
film->video_index = -1;
film->stab_pos = 0;
film->packet_count = 0;
film->start = NULL;
film->last = NULL;
Expand Down

0 comments on commit f71116d

Please sign in to comment.