comparison libvpxenc.c @ 12337:aa0714243f88 libavcodec

Fix doxygen comments. /**\u2264 => /**<
author benoit
date Mon, 02 Aug 2010 07:25:25 +0000
parents bb7b7602b40e
children
comparison
equal deleted inserted replaced
12336:e84378ff89ca 12337:aa0714243f88
34 /** 34 /**
35 * Portion of struct vpx_codec_cx_pkt from vpx_encoder.h. 35 * Portion of struct vpx_codec_cx_pkt from vpx_encoder.h.
36 * One encoded frame returned from the library. 36 * One encoded frame returned from the library.
37 */ 37 */
38 struct FrameListData { 38 struct FrameListData {
39 void *buf; /**≤ compressed data buffer */ 39 void *buf; /**< compressed data buffer */
40 size_t sz; /**≤ length of compressed data */ 40 size_t sz; /**< length of compressed data */
41 int64_t pts; /**≤ time stamp to show frame 41 int64_t pts; /**< time stamp to show frame
42 (in timebase units) */ 42 (in timebase units) */
43 unsigned long duration; /**≤ duration to show frame 43 unsigned long duration; /**< duration to show frame
44 (in timebase units) */ 44 (in timebase units) */
45 uint32_t flags; /**≤ flags for this frame */ 45 uint32_t flags; /**< flags for this frame */
46 struct FrameListData *next; 46 struct FrameListData *next;
47 }; 47 };
48 48
49 typedef struct VP8EncoderContext { 49 typedef struct VP8EncoderContext {
50 struct vpx_codec_ctx encoder; 50 struct vpx_codec_ctx encoder;