Mercurial > libavformat.hg
comparison utils.c @ 3537:f02643ff8be2 libavformat
Reindent after r14059, see "[PATCH] allow empty params for
av_open_input_stream()".
| author | rbultje |
|---|---|
| date | Thu, 03 Jul 2008 12:12:03 +0000 |
| parents | 231f0db9672f |
| children | 8bce09af18e6 |
comparison
equal
deleted
inserted
replaced
| 3536:231f0db9672f | 3537:f02643ff8be2 |
|---|---|
| 393 } else { | 393 } else { |
| 394 ic->priv_data = NULL; | 394 ic->priv_data = NULL; |
| 395 } | 395 } |
| 396 | 396 |
| 397 if (ic->iformat->read_header) { | 397 if (ic->iformat->read_header) { |
| 398 err = ic->iformat->read_header(ic, ap); | 398 err = ic->iformat->read_header(ic, ap); |
| 399 if (err < 0) | 399 if (err < 0) |
| 400 goto fail; | 400 goto fail; |
| 401 } | 401 } |
| 402 | 402 |
| 403 if (pb && !ic->data_offset) | 403 if (pb && !ic->data_offset) |
| 404 ic->data_offset = url_ftell(ic->pb); | 404 ic->data_offset = url_ftell(ic->pb); |
| 405 | 405 |
