diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-01 18:19:20 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-01 18:19:20 +0000 |
commit | 67bcc87092e44488a2f24f72a907cc7fe6757d42 (patch) | |
tree | 33cb77969183390a7bdbd13467c7938319d95655 | |
parent | 84278104e1fa2648b154cb0306ba722b7d3ddbcf (diff) | |
download | ffmpeg-67bcc87092e44488a2f24f72a907cc7fe6757d42.tar.gz |
indentation
Originally committed as revision 6857 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/x264.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/x264.c b/libavcodec/x264.c index 009cc97471..71fc7dbb97 100644 --- a/libavcodec/x264.c +++ b/libavcodec/x264.c @@ -79,13 +79,13 @@ X264_frame(AVCodecContext *ctx, uint8_t *buf, int bufsize, void *data) x4->pic.img.i_plane = 3; if (frame) { - for(i = 0; i < 3; i++){ - x4->pic.img.plane[i] = frame->data[i]; - x4->pic.img.i_stride[i] = frame->linesize[i]; - } + for(i = 0; i < 3; i++){ + x4->pic.img.plane[i] = frame->data[i]; + x4->pic.img.i_stride[i] = frame->linesize[i]; + } - x4->pic.i_pts = frame->pts; - x4->pic.i_type = X264_TYPE_AUTO; + x4->pic.i_pts = frame->pts; + x4->pic.i_type = X264_TYPE_AUTO; } if(x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, |