Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2019-06-17 06:42:10 +0300
committerMark Thompson <sw@jkqxz.net>2019-07-08 00:17:07 +0300
commit57f9bc90ae0993768c3ee70c5d9041aecc8593ed (patch)
treea0c7f6f685f87c66263c379d90c6b1eefe96e741 /libavcodec/filter_units_bsf.c
parent83be17cfcdd98a09d93960d6df2ac4bdee884059 (diff)
filter_units: Reindent after previous commit
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/filter_units_bsf.c')
-rw-r--r--libavcodec/filter_units_bsf.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/libavcodec/filter_units_bsf.c b/libavcodec/filter_units_bsf.c
index a787933f0a..8c501e1726 100644
--- a/libavcodec/filter_units_bsf.c
+++ b/libavcodec/filter_units_bsf.c
@@ -105,33 +105,33 @@ static int filter_units_filter(AVBSFContext *bsf, AVPacket *out)
AVPacket *in = NULL;
int err, i, j;
- err = ff_bsf_get_packet(bsf, &in);
- if (err < 0)
- return err;
+ err = ff_bsf_get_packet(bsf, &in);
+ if (err < 0)
+ return err;
- if (ctx->mode == NOOP) {
- av_packet_move_ref(out, in);
- av_packet_free(&in);
- return 0;
- }
+ if (ctx->mode == NOOP) {
+ av_packet_move_ref(out, in);
+ av_packet_free(&in);
+ return 0;
+ }
- err = ff_cbs_read_packet(ctx->cbc, frag, in);
- if (err < 0) {
- av_log(bsf, AV_LOG_ERROR, "Failed to read packet.\n");
- goto fail;
- }
+ err = ff_cbs_read_packet(ctx->cbc, frag, in);
+ if (err < 0) {
+ av_log(bsf, AV_LOG_ERROR, "Failed to read packet.\n");
+ goto fail;
+ }
- for (i = 0; i < frag->nb_units; i++) {
- for (j = 0; j < ctx->nb_types; j++) {
- if (frag->units[i].type == ctx->type_list[j])
- break;
- }
- if (ctx->mode == REMOVE ? j < ctx->nb_types
- : j >= ctx->nb_types) {
- ff_cbs_delete_unit(ctx->cbc, frag, i);
- --i;
- }
+ for (i = 0; i < frag->nb_units; i++) {
+ for (j = 0; j < ctx->nb_types; j++) {
+ if (frag->units[i].type == ctx->type_list[j])
+ break;
+ }
+ if (ctx->mode == REMOVE ? j < ctx->nb_types
+ : j >= ctx->nb_types) {
+ ff_cbs_delete_unit(ctx->cbc, frag, i);
+ --i;
}
+ }
if (frag->nb_units == 0) {
// Don't return packets with nothing in them.