comparison internal.h @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents a37818ac3817
children
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
26 26
27 #include <stdint.h> 27 #include <stdint.h>
28 #include "avcodec.h" 28 #include "avcodec.h"
29 29
30 /** 30 /**
31 * Determines whether pix_fmt is a hardware accelerated format. 31 * Determine whether pix_fmt is a hardware accelerated format.
32 */ 32 */
33 int ff_is_hwaccel_pix_fmt(enum PixelFormat pix_fmt); 33 int ff_is_hwaccel_pix_fmt(enum PixelFormat pix_fmt);
34 34
35 /** 35 /**
36 * Returns the hardware accelerated codec for codec codec_id and 36 * Return the hardware accelerated codec for codec codec_id and
37 * pixel format pix_fmt. 37 * pixel format pix_fmt.
38 * 38 *
39 * @param codec_id the codec to match 39 * @param codec_id the codec to match
40 * @param pix_fmt the pixel format to match 40 * @param pix_fmt the pixel format to match
41 * @return the hardware accelerated codec, or NULL if none was found. 41 * @return the hardware accelerated codec, or NULL if none was found.