diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-03-22 20:22:39 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-23 03:09:07 +0100 |
commit | ae2c33b0c28ec9dd2c78538062798f6dace6b20b (patch) | |
tree | 4da5beb4b30645d5878e898e598b9a50671b09a9 /libavcodec/dv.c | |
parent | 0e465c1a81fda00a6e00645e99e4cc82144176ed (diff) | |
download | ffmpeg-ae2c33b0c28ec9dd2c78538062798f6dace6b20b.tar.gz |
cosmetics: remove superfluous curly brackets
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 5312f34c4b..309846a598 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -1286,9 +1286,8 @@ static int dvvideo_encode_frame(AVCodecContext *c, AVPacket *pkt, s->sys = avpriv_dv_codec_profile(c); if (!s->sys || dv_init_dynamic_tables(s->sys)) return -1; - if ((ret = ff_alloc_packet2(c, pkt, s->sys->frame_size)) < 0) { + if ((ret = ff_alloc_packet2(c, pkt, s->sys->frame_size)) < 0) return ret; - } c->pix_fmt = s->sys->pix_fmt; s->picture = *frame; |