doc/examples/metadata: Constify values from av_dict_get()

Treat values returned from av_dict_get() as const, since they are
internal to AVDictionary.

Signed-off-by: Chad Fraleigh <chadf@triularity.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
pull/375/head
Chad Fraleigh 3 years ago committed by Andreas Rheinhardt
parent e5367b481b
commit a90e41c590
  1. 2
      doc/examples/metadata.c

@ -34,7 +34,7 @@
int main (int argc, char **argv)
{
AVFormatContext *fmt_ctx = NULL;
AVDictionaryEntry *tag = NULL;
const AVDictionaryEntry *tag = NULL;
int ret;
if (argc != 2) {

Loading…
Cancel
Save