Browse Source

avformat/dvenc: Don't zero unnecessarily

The muxing context has already been zeroed when it was allocated, hence
it is unnecessary to do it again.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.3
Andreas Rheinhardt Michael Niedermayer 5 years ago
parent
commit
556c4e38d5
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      libavformat/dvenc.c

+ 0
- 3
libavformat/dvenc.c View File

@@ -305,9 +305,6 @@ static DVMuxContext* dv_init_mux(AVFormatContext* s)
if (s->nb_streams > 5)
return NULL;

c->n_ast = 0;
c->ast[0] = c->ast[1] = c->ast[2] = c->ast[3] = NULL;

/* We have to sort out where audio and where video stream is */
for (i=0; i<s->nb_streams; i++) {
switch (s->streams[i]->codecpar->codec_type) {


Loading…
Cancel
Save