Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Fraleigh <chadf@triularity.org>2021-10-19 00:31:36 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-11-18 21:18:01 +0300
commita90e41c59028ae4d83df81ebf05261aae15194b5 (patch)
tree8b87c07dc4754dec78a3bda599e716e99ba9e7d1 /doc/examples
parente5367b481b5232182a4851dbd7fc5a7a5bd475de (diff)
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>
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/metadata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/metadata.c b/doc/examples/metadata.c
index b6cfa6bd36..7c44009a24 100644
--- a/doc/examples/metadata.c
+++ b/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) {