mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-21 06:20:09 +01:00
libavformat/utils: Fix code indentation
Introduced since 077939626e.
Signed-off-by: Linjie Fu <linjie.fu@intel.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
committed by
Michael Niedermayer
parent
710ab13693
commit
8fc8bdddbf
@@ -3776,18 +3776,18 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
|||||||
}
|
}
|
||||||
analyzed_all_streams = 0;
|
analyzed_all_streams = 0;
|
||||||
if (!missing_streams || !*missing_streams)
|
if (!missing_streams || !*missing_streams)
|
||||||
if (i == ic->nb_streams) {
|
if (i == ic->nb_streams) {
|
||||||
analyzed_all_streams = 1;
|
analyzed_all_streams = 1;
|
||||||
/* NOTE: If the format has no header, then we need to read some
|
/* NOTE: If the format has no header, then we need to read some
|
||||||
* packets to get most of the streams, so we cannot stop here. */
|
* packets to get most of the streams, so we cannot stop here. */
|
||||||
if (!(ic->ctx_flags & AVFMTCTX_NOHEADER)) {
|
if (!(ic->ctx_flags & AVFMTCTX_NOHEADER)) {
|
||||||
/* If we found the info for all the codecs, we can stop. */
|
/* If we found the info for all the codecs, we can stop. */
|
||||||
ret = count;
|
ret = count;
|
||||||
av_log(ic, AV_LOG_DEBUG, "All info found\n");
|
av_log(ic, AV_LOG_DEBUG, "All info found\n");
|
||||||
flush_codecs = 0;
|
flush_codecs = 0;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
/* We did not get all the codec info, but we read too much data. */
|
/* We did not get all the codec info, but we read too much data. */
|
||||||
if (read_size >= probesize) {
|
if (read_size >= probesize) {
|
||||||
ret = count;
|
ret = count;
|
||||||
|
|||||||
Reference in New Issue
Block a user