Skip to content

Commit 2ab9208

Browse files
committed
lint
1 parent da1796a commit 2ab9208

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/torchcodec/decoders/_core/VideoDecoder.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1409,11 +1409,11 @@ UniqueAVFrame VideoDecoder::convertAudioAVFrameSampleFormat(
14091409
convertedAVFrame,
14101410
"Could not allocate frame for sample format conversion.");
14111411

1412-
#if LIBAVFILTER_VERSION_MAJOR > 7 // FFmpeg > 4
1412+
#if LIBAVFILTER_VERSION_MAJOR > 7 // FFmpeg > 4
14131413
convertedAVFrame->ch_layout = avFrame->ch_layout;
1414-
#else
1414+
#else
14151415
convertedAVFrame->channel_layout = avFrame->channel_layout;
1416-
#endif
1416+
#endif
14171417
convertedAVFrame->format = static_cast<int>(desiredSampleFormat);
14181418
convertedAVFrame->sample_rate = avFrame->sample_rate;
14191419
convertedAVFrame->nb_samples = avFrame->nb_samples;

0 commit comments

Comments
 (0)