]> git.sesse.net Git - ffmpeg/commit
avformat/vorbiscomment: Replace AVDictionary ** by const AVDictionary *
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 28 Apr 2020 01:03:36 +0000 (03:03 +0200)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sun, 3 May 2020 10:45:01 +0000 (12:45 +0200)
commit704d7c9f4616d71db1a1baa0a1726c77a9957521
treeabfc5d5e7fdfb048c34ddce48d5db951471d9ce4
parentca0a38f2f7803ab8fa12913d0385d4c70f8d6345
avformat/vorbiscomment: Replace AVDictionary ** by const AVDictionary *

ff_vorbiscomment_write() used an AVDictionary ** parameter for a
dictionary whose contents ought to be written; yet this can be replaced
by AVDictionary * since commit 042ca05f0fdc5f4d56a3e9b94bc9cd67bca9a4bc;
and this in turn can be replaced by const AVDictionary * to indicate
that the dictionary isn't modified; the latter also applies to
ff_vorbiscomment_length().

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavformat/flacenc.c
libavformat/matroskaenc.c
libavformat/oggenc.c
libavformat/vorbiscomment.c
libavformat/vorbiscomment.h