[FFmpeg-devel] [PATCH 2/2] avformat/dvenc: Don't zero unnecessarily
Andreas Rheinhardt
andreas.rheinhardt at gmail.com
Sun Jan 26 09:13:11 EET 2020
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 at gmail.com>
---
libavformat/dvenc.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/libavformat/dvenc.c b/libavformat/dvenc.c
index b89ad4d1c8..c71e532771 100644
--- a/libavformat/dvenc.c
+++ b/libavformat/dvenc.c
@@ -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) {
--
2.20.1
More information about the ffmpeg-devel
mailing list