diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-07-15 16:27:22 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-07-15 16:27:22 +0200 |
commit | 9a1963fbb872f08222a5b73fe96931708ca32732 (patch) | |
tree | 7fbbb59100ddb0f56e7b28d528df8127ea54827e /ffprobe.c | |
parent | 5626e812d2c1c202f749824905b70cdb8a845e7b (diff) | |
download | ffmpeg-9a1963fbb872f08222a5b73fe96931708ca32732.tar.gz |
ffprobe: reindent after the previous commit
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1662,15 +1662,15 @@ static av_always_inline int get_decoded_frame(AVFormatContext *fmt_ctx, *got_frame = 0; if (dec_ctx->codec) { - switch (dec_ctx->codec_type) { - case AVMEDIA_TYPE_VIDEO: - ret = avcodec_decode_video2(dec_ctx, frame, got_frame, pkt); - break; + switch (dec_ctx->codec_type) { + case AVMEDIA_TYPE_VIDEO: + ret = avcodec_decode_video2(dec_ctx, frame, got_frame, pkt); + break; - case AVMEDIA_TYPE_AUDIO: - ret = avcodec_decode_audio4(dec_ctx, frame, got_frame, pkt); - break; - } + case AVMEDIA_TYPE_AUDIO: + ret = avcodec_decode_audio4(dec_ctx, frame, got_frame, pkt); + break; + } } return ret; |