Message ID | 20210224115341.794293-1-andreas.rheinhardt@gmail.com |
---|---|
State | Accepted |
Commit | f87b33b5bfe780bfd3dc949514dd71758ebaaf0f |
Headers | show |
Series | [FFmpeg-devel,01/15] avformat/movenc: Remove always true check | expand |
Context | Check | Description |
---|---|---|
andriy/x86_make | success | Make finished |
andriy/x86_make_fate | success | Make fate finished |
andriy/PPC64_make | success | Make finished |
andriy/PPC64_make_fate | success | Make fate finished |
Andreas Rheinhardt: > Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> > --- > libavformat/movenc.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/libavformat/movenc.c b/libavformat/movenc.c > index 545b0885ae..cdfcbd3d76 100644 > --- a/libavformat/movenc.c > +++ b/libavformat/movenc.c > @@ -6395,7 +6395,6 @@ static int mov_init(AVFormatContext *s) > /* Default mode == MP4 */ > mov->mode = MODE_MP4; > > - if (s->oformat) { > if (!strcmp("3gp", s->oformat->name)) mov->mode = MODE_3GP; > else if (!strcmp("3g2", s->oformat->name)) mov->mode = MODE_3GP|MODE_3G2; > else if (!strcmp("mov", s->oformat->name)) mov->mode = MODE_MOV; > @@ -6403,7 +6402,6 @@ static int mov_init(AVFormatContext *s) > else if (!strcmp("ipod",s->oformat->name)) mov->mode = MODE_IPOD; > else if (!strcmp("ismv",s->oformat->name)) mov->mode = MODE_ISM; > else if (!strcmp("f4v", s->oformat->name)) mov->mode = MODE_F4V; > - } > > if (mov->flags & FF_MOV_FLAG_DELAY_MOOV) > mov->flags |= FF_MOV_FLAG_EMPTY_MOOV; > Will apply this patchset tomorrow unless there are objections. (I already fixed the typo "avformt" in the commit title of the last patch locally.) - Andreas
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 545b0885ae..cdfcbd3d76 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -6395,7 +6395,6 @@ static int mov_init(AVFormatContext *s) /* Default mode == MP4 */ mov->mode = MODE_MP4; - if (s->oformat) { if (!strcmp("3gp", s->oformat->name)) mov->mode = MODE_3GP; else if (!strcmp("3g2", s->oformat->name)) mov->mode = MODE_3GP|MODE_3G2; else if (!strcmp("mov", s->oformat->name)) mov->mode = MODE_MOV; @@ -6403,7 +6402,6 @@ static int mov_init(AVFormatContext *s) else if (!strcmp("ipod",s->oformat->name)) mov->mode = MODE_IPOD; else if (!strcmp("ismv",s->oformat->name)) mov->mode = MODE_ISM; else if (!strcmp("f4v", s->oformat->name)) mov->mode = MODE_F4V; - } if (mov->flags & FF_MOV_FLAG_DELAY_MOOV) mov->flags |= FF_MOV_FLAG_EMPTY_MOOV;
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> --- libavformat/movenc.c | 2 -- 1 file changed, 2 deletions(-)