diff options
author | Martin Storsjö <martin@martin.st> | 2012-12-12 16:59:45 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-12-16 21:33:20 +0200 |
commit | e798085f965950ed97cca6e5613a5bf61c09534e (patch) | |
tree | 9d875dcbf113ad535748b4841623bc3df9040dbc | |
parent | 3b2e8d1d216f74eae73409ecc3b48396a932d256 (diff) | |
download | ffmpeg-e798085f965950ed97cca6e5613a5bf61c09534e.tar.gz |
rtpdec_vp8: Cosmetics: Fix bad alignment/indentation
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavformat/rtpdec_vp8.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtpdec_vp8.c b/libavformat/rtpdec_vp8.c index a364358541..99ca60a6f7 100644 --- a/libavformat/rtpdec_vp8.c +++ b/libavformat/rtpdec_vp8.c @@ -33,7 +33,7 @@ struct PayloadContext { AVIOContext *data; - uint32_t timestamp; + uint32_t timestamp; }; static int vp8_handle_packet(AVFormatContext *ctx, @@ -100,7 +100,7 @@ static int vp8_handle_packet(AVFormatContext *ctx, if ((res = avio_open_dyn_buf(&vp8->data)) < 0) return res; vp8->timestamp = *timestamp; - } + } if (!vp8->data || vp8->timestamp != *timestamp) { av_log(ctx, AV_LOG_WARNING, |