diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2007-08-03 18:46:59 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2007-08-03 18:46:59 +0000 |
commit | feb7bc677109d917bcdc370157083b58a9436f37 (patch) | |
tree | 3ee3177a53e44f717e7233bc92146f0a4fc94694 | |
parent | 26ba8235191ed5a8e9d38b03bc7f33aba3c89bb9 (diff) | |
download | ffmpeg-feb7bc677109d917bcdc370157083b58a9436f37.tar.gz |
cosmetics: be sure all lines fit into 79 characters
Originally committed as revision 9875 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | ffplay.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1252,10 +1252,11 @@ static int queue_picture(VideoState *is, AVFrame *src_frame, double pts) pict.linesize[0] = vp->bmp->pitches[0]; pict.linesize[1] = vp->bmp->pitches[2]; pict.linesize[2] = vp->bmp->pitches[1]; - img_convert_ctx = sws_getCachedContext(img_convert_ctx, 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, - dst_pix_fmt, sws_flags, NULL, NULL, NULL); + img_convert_ctx = sws_getCachedContext(img_convert_ctx, + 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, + dst_pix_fmt, sws_flags, NULL, NULL, NULL); if (img_convert_ctx == NULL) { fprintf(stderr, "Cannot initialize the conversion context\n"); exit(1); |