Browse Source

rtpdec_vp8: Cosmetics: Fix bad alignment/indentation

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n1.1
Martin Storsjö 13 years ago
parent
commit
e798085f96
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/rtpdec_vp8.c

+ 2
- 2
libavformat/rtpdec_vp8.c View File

@@ -33,7 +33,7 @@


struct PayloadContext { struct PayloadContext {
AVIOContext *data; AVIOContext *data;
uint32_t timestamp;
uint32_t timestamp;
}; };


static int vp8_handle_packet(AVFormatContext *ctx, 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) if ((res = avio_open_dyn_buf(&vp8->data)) < 0)
return res; return res;
vp8->timestamp = *timestamp; vp8->timestamp = *timestamp;
}
}


if (!vp8->data || vp8->timestamp != *timestamp) { if (!vp8->data || vp8->timestamp != *timestamp) {
av_log(ctx, AV_LOG_WARNING, av_log(ctx, AV_LOG_WARNING,


Loading…
Cancel
Save