Skip to content

Commit

Permalink
libavformat/mpegts-mythtv.c: silence -Wformat
Browse files Browse the repository at this point in the history
st is a pointer not an unsigned int.
  • Loading branch information
ulmus-scott authored and bennettpeter committed Jul 1, 2022
1 parent 247c7fc commit d758e10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/external/FFmpeg/libavformat/mpegts-mythtv.c
Expand Up @@ -2184,7 +2184,7 @@ static void mpegts_add_stream(MpegTSContext *ts, int id, pmt_entry_t* item,
ts->pid_cnt++;

av_log(NULL, AV_LOG_DEBUG, "mpegts_add_stream: "
"stream #%d, has id 0x%x and codec %s, type %s at 0x%x\n",
"stream #%d, has id 0x%x and codec %s, type %s at 0x%p\n",
st->index, st->id, avcodec_get_name(st->codecpar->codec_id),
av_get_media_type_string(st->codecpar->codec_type), st);
} else {
Expand Down Expand Up @@ -2247,7 +2247,7 @@ static void mpegts_add_stream(MpegTSContext *ts, int id, pmt_entry_t* item,
st->disposition = item->dvbci.disposition;

av_log(NULL, AV_LOG_DEBUG, "mpegts_add_stream: "
"stream #%d, has id 0x%x and codec %s, type %s at 0x%x\n",
"stream #%d, has id 0x%x and codec %s, type %s at 0x%p\n",
st->index, st->id, avcodec_get_name(st->codecpar->codec_id),
av_get_media_type_string(st->codecpar->codec_type), st);
}
Expand Down

0 comments on commit d758e10

Please sign in to comment.