diff mbox series

[FFmpeg-devel,4/6] avformat/libgme: Actually set the duration

Message ID 20210324054043.1729328-4-andreas.rheinhardt@gmail.com
State Accepted
Commit 1897286d05506007e5c57e0ea7a3af246fad4fee
Headers show
Series [FFmpeg-devel,1/6] avformat/jacosubdec: Fix leak on error | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Andreas Rheinhardt March 24, 2021, 5:40 a.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
---
 libavformat/libgme.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavformat/libgme.c b/libavformat/libgme.c
index f9d9abaad5..ad59971fcd 100644
--- a/libavformat/libgme.c
+++ b/libavformat/libgme.c
@@ -142,7 +142,7 @@  static int read_header_gme(AVFormatContext *s)
         return AVERROR(ENOMEM);
     }
     avpriv_set_pts_info(st, 64, 1, 1000);
-    if (st->duration > 0)
+    if (duration > 0)
         st->duration = duration;
     st->codecpar->codec_type  = AVMEDIA_TYPE_AUDIO;
     st->codecpar->codec_id    = AV_NE(AV_CODEC_ID_PCM_S16BE, AV_CODEC_ID_PCM_S16LE);