You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avformat/segafilmenc: Remove write-only variable
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
@@ -47,7 +47,6 @@ typedef struct FILMPacket {
|
|||||||
typedef struct FILMOutputContext {
|
typedef struct FILMOutputContext {
|
||||||
int audio_index;
|
int audio_index;
|
||||||
int video_index;
|
int video_index;
|
||||||
int64_t stab_pos;
|
|
||||||
FILMPacket *start;
|
FILMPacket *start;
|
||||||
FILMPacket *last;
|
FILMPacket *last;
|
||||||
int64_t packet_count;
|
int64_t packet_count;
|
||||||
@@ -158,7 +157,6 @@ static int film_init(AVFormatContext *format_context)
|
|||||||
FILMOutputContext *film = format_context->priv_data;
|
FILMOutputContext *film = format_context->priv_data;
|
||||||
film->audio_index = -1;
|
film->audio_index = -1;
|
||||||
film->video_index = -1;
|
film->video_index = -1;
|
||||||
film->stab_pos = 0;
|
|
||||||
film->packet_count = 0;
|
film->packet_count = 0;
|
||||||
film->start = NULL;
|
film->start = NULL;
|
||||||
film->last = NULL;
|
film->last = NULL;
|
||||||
|
Reference in New Issue
Block a user