mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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>
This commit is contained in:
parent
f1dbfcdf89
commit
556c4e38d5
@ -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…
Reference in New Issue
Block a user