> -----Original Message----- > From: ffmpeg-devel <ffmpeg-devel-boun...@ffmpeg.org> On Behalf Of xufuji456 > via ffmpeg-devel > Sent: 2023年12月30日 16:41 > To: ffmpeg-devel@ffmpeg.org > Cc: xufuji456 <839789...@qq.com> > Subject: [FFmpeg-devel] [PATCH] fftool/ffplay: avoid same name in local > variable > > There is a warning in XCode:"Declaration shadows a local variable" > > Signed-off-by: xufuji456 <839789...@qq.com> > --- > fftools/ffplay.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/fftools/ffplay.c b/fftools/ffplay.c > index ea5ff31393..17861e60be 100644 > --- a/fftools/ffplay.c > +++ b/fftools/ffplay.c > @@ -1930,11 +1930,11 @@ static int configure_video_filters(AVFilterGraph > *graph, VideoState *is, const c > if (sd) > displaymatrix = (int32_t *)sd->data; > if (!displaymatrix) { > - const AVPacketSideData *sd = > av_packet_side_data_get(is->video_st->codecpar->coded_side_data, > - > is->video_st->codecpar->nb_coded_side_data, > - > AV_PKT_DATA_DISPLAYMATRIX); > - if (sd) > - displaymatrix = (int32_t *)sd->data; > + const AVPacketSideData *psd = > av_packet_side_data_get(is->video_st->codecpar->coded_side_data, > + > is->video_st->codecpar->nb_coded_side_data, > + > AV_PKT_DATA_DISPLAYMATRIX); > + if (psd) > + displaymatrix = (int32_t *)psd->data; > } > theta = get_rotation(displaymatrix);
LGTM. The commit message could be reworded like "fix a variable shadowing". _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".