summaryrefslogtreecommitdiff
path: root/libavcodec/libvpxenc.c
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2010-08-02 07:25:25 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2010-08-02 07:25:25 +0000
commit1aa15491f2ddd1254c4a946ceb6e50e44bd3593f (patch)
treebfb1e07e99004fec3066ce828e9311d4921c2212 /libavcodec/libvpxenc.c
parent3ea4d9423fceee1a33ede343701d6bd6b3291d66 (diff)
Fix doxygen comments.
/**\u2264 => /**< Originally committed as revision 24661 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libvpxenc.c')
-rw-r--r--libavcodec/libvpxenc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c
index 1115ec22d7..77a3bbf2a0 100644
--- a/libavcodec/libvpxenc.c
+++ b/libavcodec/libvpxenc.c
@@ -36,13 +36,13 @@
* One encoded frame returned from the library.
*/
struct FrameListData {
- void *buf; /**≤ compressed data buffer */
- size_t sz; /**≤ length of compressed data */
- int64_t pts; /**≤ time stamp to show frame
+ void *buf; /**< compressed data buffer */
+ size_t sz; /**< length of compressed data */
+ int64_t pts; /**< time stamp to show frame
(in timebase units) */
- unsigned long duration; /**≤ duration to show frame
+ unsigned long duration; /**< duration to show frame
(in timebase units) */
- uint32_t flags; /**≤ flags for this frame */
+ uint32_t flags; /**< flags for this frame */
struct FrameListData *next;
};