summaryrefslogtreecommitdiff
path: root/libavcodec/dv.c
diff options
context:
space:
mode:
authorRoman Shaposhnik <roman@shaposhnik.org>2008-10-07 15:50:29 +0000
committerRoman Shaposhnik <roman@shaposhnik.org>2008-10-07 15:50:29 +0000
commit2b6cee9f1e3741356462d25b2ac7221d75afdc56 (patch)
tree2e9b4561549d3adc1ce68035c53931127b712762 /libavcodec/dv.c
parentc9b0b38f45c111cc037f3423f3eef8041d3f87e2 (diff)
Doxygenizing the comments
Originally committed as revision 15578 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r--libavcodec/dv.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c
index bf79caa5b4..c0cdee91e6 100644
--- a/libavcodec/dv.c
+++ b/libavcodec/dv.c
@@ -62,9 +62,11 @@ typedef struct DVVideoContext {
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];