Commit f739d76c authored by alex's avatar alex

cosmetics: be sure all lines fit into 79 characters

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9875 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3b7b2c9c
...@@ -1252,8 +1252,9 @@ static int queue_picture(VideoState *is, AVFrame *src_frame, double pts) ...@@ -1252,8 +1252,9 @@ static int queue_picture(VideoState *is, AVFrame *src_frame, double pts)
pict.linesize[0] = vp->bmp->pitches[0]; pict.linesize[0] = vp->bmp->pitches[0];
pict.linesize[1] = vp->bmp->pitches[2]; pict.linesize[1] = vp->bmp->pitches[2];
pict.linesize[2] = vp->bmp->pitches[1]; pict.linesize[2] = vp->bmp->pitches[1];
img_convert_ctx = sws_getCachedContext(img_convert_ctx, is->video_st->codec->width, img_convert_ctx = sws_getCachedContext(img_convert_ctx,
is->video_st->codec->height, is->video_st->codec->pix_fmt, is->video_st->codec->width, is->video_st->codec->height,
is->video_st->codec->pix_fmt,
is->video_st->codec->width, is->video_st->codec->height, is->video_st->codec->width, is->video_st->codec->height,
dst_pix_fmt, sws_flags, NULL, NULL, NULL); dst_pix_fmt, sws_flags, NULL, NULL, NULL);
if (img_convert_ctx == NULL) { if (img_convert_ctx == NULL) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment