[FFmpeg-cvslog] lavfi/avcodec: apply cosmetics style fixes
Stefano Sabatini
git at videolan.org
Fri Sep 14 11:09:48 CEST 2012
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Thu Sep 13 10:56:54 2012 +0200| [dead4580e2424c2fd1868e67642b9ec5f81705d9] | committer: Stefano Sabatini
lavfi/avcodec: apply cosmetics style fixes
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dead4580e2424c2fd1868e67642b9ec5f81705d9
---
libavfilter/avcodec.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavfilter/avcodec.c b/libavfilter/avcodec.c
index 51c15de..a0f8b69 100644
--- a/libavfilter/avcodec.c
+++ b/libavfilter/avcodec.c
@@ -46,10 +46,10 @@ int avfilter_copy_frame_props(AVFilterBufferRef *dst, const AVFrame *src)
dst->video->qp_table_linesize = 0;
if (src->qscale_table) {
int qsize = src->qstride ? src->qstride * ((src->height+15)/16) : (src->width+15)/16;
- dst->video->qp_table = av_malloc(qsize);
- if(!dst->video->qp_table)
+ dst->video->qp_table = av_malloc(qsize);
+ if (!dst->video->qp_table)
return AVERROR(ENOMEM);
- dst->video->qp_table_linesize = src->qstride;
+ dst->video->qp_table_linesize = src->qstride;
dst->video->qp_table_size = qsize;
memcpy(dst->video->qp_table, src->qscale_table, qsize);
}
More information about the ffmpeg-cvslog
mailing list