Commit a90e41c5 authored by Chad Fraleigh's avatar Chad Fraleigh Committed by Andreas Rheinhardt

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: 's avatarChad Fraleigh <chadf@triularity.org>
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent e5367b48
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment