diff dv.c @ 8009:f7c7ef5e448b libavcodec

Doxygenizing the comments
author romansh
date Tue, 07 Oct 2008 15:50:29 +0000
parents 68f0d19ff0a2
children 4b19d9cbc75b
line wrap: on
line diff
--- a/dv.c	Tue Oct 07 15:49:45 2008 +0000
+++ b/dv.c	Tue Oct 07 15:50:29 2008 +0000
@@ -62,9 +62,11 @@
     void (*idct_put[2])(uint8_t *dest, int line_size, DCTELEM *block);
 } DVVideoContext;
 
-/* MultiThreading - dv_anchor applies to entire DV codec, not just the avcontext */
-/* one element is needed for each video segment in a DV frame */
-/* at most there are 4 DIF channels * 12 DIF sequences * 27 video segments (1080i50) */
+/**
+ * MultiThreading - dv_anchor applies to entire DV codec, not just the avcontext
+ * one element is needed for each video segment in a DV frame
+ * at most there are 4 DIF channels * 12 DIF sequences * 27 video segments (1080i50)
+ */
 #define DV_ANCHOR_SIZE (4*12*27)
 
 static void* dv_anchor[DV_ANCHOR_SIZE];