Browse Source

avformat/segafilmenc: Remove write-only variable

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
tags/n4.4
Andreas Rheinhardt 5 years ago
parent
commit
f71116deb5
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      libavformat/segafilmenc.c

+ 0
- 2
libavformat/segafilmenc.c View File

@@ -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;
@@ -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;


Loading…
Cancel
Save