mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-07 15:22:57 +00:00
cosmetics: indentation
Originally committed as revision 15588 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6488cf9b09
commit
fd2b356a62
4
ffmpeg.c
4
ffmpeg.c
@ -1908,7 +1908,7 @@ static int av_encode(AVFormatContext **output_files,
|
|||||||
if (ost->encoding_needed) {
|
if (ost->encoding_needed) {
|
||||||
AVCodec *codec = output_codecs[i];
|
AVCodec *codec = output_codecs[i];
|
||||||
if (!codec)
|
if (!codec)
|
||||||
codec = avcodec_find_encoder(ost->st->codec->codec_id);
|
codec = avcodec_find_encoder(ost->st->codec->codec_id);
|
||||||
if (!codec) {
|
if (!codec) {
|
||||||
fprintf(stderr, "Unsupported codec for output stream #%d.%d\n",
|
fprintf(stderr, "Unsupported codec for output stream #%d.%d\n",
|
||||||
ost->file_index, ost->index);
|
ost->file_index, ost->index);
|
||||||
@ -1929,7 +1929,7 @@ static int av_encode(AVFormatContext **output_files,
|
|||||||
if (ist->decoding_needed) {
|
if (ist->decoding_needed) {
|
||||||
AVCodec *codec = input_codecs[i];
|
AVCodec *codec = input_codecs[i];
|
||||||
if (!codec)
|
if (!codec)
|
||||||
codec = avcodec_find_decoder(ist->st->codec->codec_id);
|
codec = avcodec_find_decoder(ist->st->codec->codec_id);
|
||||||
if (!codec) {
|
if (!codec) {
|
||||||
fprintf(stderr, "Unsupported codec (id=%d) for input stream #%d.%d\n",
|
fprintf(stderr, "Unsupported codec (id=%d) for input stream #%d.%d\n",
|
||||||
ist->st->codec->codec_id, ist->file_index, ist->index);
|
ist->st->codec->codec_id, ist->file_index, ist->index);
|
||||||
|
Loading…
Reference in New Issue
Block a user