diff options
author | Luca Abeni <lucabe72@email.it> | 2007-08-24 07:20:28 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2007-08-24 07:20:28 +0000 |
commit | 24c07998b9035411e0e0be86447f96d1c93c5a2b (patch) | |
tree | 6158c1e441a44d094fe49481dcd518352f987aaa /ffplay.c | |
parent | b2e6799bbbf6c4fbc2dc9ab2dc9aed8bbc7cabac (diff) | |
download | ffmpeg-24c07998b9035411e0e0be86447f96d1c93c5a2b.tar.gz |
Reindent the code after the last commit
Originally committed as revision 10203 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1902,13 +1902,13 @@ static int decode_thread(void *arg) if(genpts) ic->flags |= AVFMT_FLAG_GENPTS; - err = av_find_stream_info(ic); - if (err < 0) { - fprintf(stderr, "%s: could not find codec parameters\n", is->filename); - ret = -1; - goto fail; - } - ic->pb.eof_reached= 0; //FIXME hack, ffplay maybe should not use url_feof() to test for the end + err = av_find_stream_info(ic); + if (err < 0) { + fprintf(stderr, "%s: could not find codec parameters\n", is->filename); + ret = -1; + goto fail; + } + ic->pb.eof_reached= 0; //FIXME hack, ffplay maybe should not use url_feof() to test for the end /* if seeking requested, we execute it */ if (start_time != AV_NOPTS_VALUE) { |