comparison libswscale/yuv2rgb_bfin.c @ 27158:65b8334df960

spelling/grammar/wording overhaul
author diego
date Fri, 04 Jul 2008 13:49:45 +0000
parents a8ff60976ccb
children 3cfb920cbe4b
comparison
equal deleted inserted replaced
27157:e2797c291ba9 27158:65b8334df960
1 /* 1 /*
2 * Copyright (C) 2007 Marc Hoffman <marc.hoffman@analog.com> 2 * Copyright (C) 2007 Marc Hoffman <marc.hoffman@analog.com>
3 * April 20, 2007 3 *
4 * 4 * Blackfin video color space converter operations
5 * Blackfin Video Color Space Converters Operations 5 * convert I420 YV12 to RGB in various formats
6 * convert I420 YV12 to RGB in various formats,
7 * 6 *
8 * This file is part of FFmpeg. 7 * This file is part of FFmpeg.
9 * 8 *
10 * FFmpeg is free software; you can redistribute it and/or 9 * FFmpeg is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public 10 * modify it under the terms of the GNU Lesser General Public
198 case PIX_FMT_BGR24: f = bfin_yuv420_bgr24; break; 197 case PIX_FMT_BGR24: f = bfin_yuv420_bgr24; break;
199 default: 198 default:
200 return 0; 199 return 0;
201 } 200 }
202 201
203 av_log(c, AV_LOG_INFO, "BlackFin Accelerated Color Space Converter %s\n", 202 av_log(c, AV_LOG_INFO, "BlackFin accelerated color space converter %s\n",
204 sws_format_name (c->dstFormat)); 203 sws_format_name (c->dstFormat));
205 204
206 return f; 205 return f;
207 } 206 }