diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-01 06:10:44 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-01 06:10:44 +0100 |
commit | 0e645b98c66aafe32517b946a6484eb5579172d4 (patch) | |
tree | 228bd4cbd4d1584f5bc26b8b4a85f346135aa276 /libavformat/movenc.c | |
parent | 590f491b0aefe770876c09c09433c24fc21a1565 (diff) | |
download | ffmpeg-0e645b98c66aafe32517b946a6484eb5579172d4.tar.gz |
Remove double ';'
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 8ac5c317b4..ccb9768564 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -2258,7 +2258,7 @@ static int mov_write_video_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContex AVStereo3D* stereo_3d = (AVStereo3D*) av_stream_get_side_data(track->st, AV_PKT_DATA_STEREO3D, NULL); AVSphericalMapping* spherical_mapping = (AVSphericalMapping*)av_stream_get_side_data(track->st, AV_PKT_DATA_SPHERICAL, NULL); AVDOVIDecoderConfigurationRecord *dovi = (AVDOVIDecoderConfigurationRecord *) - av_stream_get_side_data(track->st, AV_PKT_DATA_DOVI_CONF, NULL);; + av_stream_get_side_data(track->st, AV_PKT_DATA_DOVI_CONF, NULL); if (stereo_3d) mov_write_st3d_tag(s, pb, stereo_3d); |