summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordeva <deva>2005-05-09 19:29:55 +0000
committerdeva <deva>2005-05-09 19:29:55 +0000
commit02da07c76121ca7088dac91a2c03037d8d0e9d77 (patch)
treec016b3b112d9eccb717df2e34b19b13d72493e29
parentca47f85bf3274fc970650763398795fc5e8e666c (diff)
*** empty log message ***
-rw-r--r--TODO55
1 files changed, 12 insertions, 43 deletions
diff --git a/TODO b/TODO
index c006ed2..97a3cb6 100644
--- a/TODO
+++ b/TODO
@@ -1,6 +1,17 @@
-// This is how it's done!
+// libFAME code
http://lists.debian.org/debian-user-spanish/2005/01/msg00380.html
+// libYUV
+http://veejay.dyne.org/trac.cgi/browser/trunk/veejay-current/
+
+// YUV conversion code
+http://cvlab.epfl.ch/~jpilet/videosource/frame_8cc-source.html
+
+// libFAME yuv format specification
+http://www.linuxmanpages.com/man3/fame_start_frame.3.php
+
+// YUV420 format specification
+http://encyclopedia.laborlawtalk.com/YUV_4:2:0
==========================================================================
TASKS (client)
@@ -161,45 +172,3 @@ email.
`-----------'
-==========================================================================
- This code should convert yuv to yuv422 planar
-==========================================================================
-int Frame::ExtractYUV420( uint8_t *yuv, uint8_t *output[ 3 ] )
-{
- unsigned char *pixels[ 3 ];
- int pitches[ 3 ];
- int width = GetWidth(), height = GetHeight();
-
- pixels[ 0 ] = ( unsigned char* ) yuv;
- pitches[ 0 ] = decoder->width * 2;
-
- dv_decode_full_frame( decoder, data, e_dv_color_yuv, pixels, pitches );
-
- int w2 = width / 2;
- uint8_t *y = output[ 0 ];
- uint8_t *cb = output[ 1 ];
- uint8_t *cr = output[ 2 ];
- uint8_t *p = yuv;
-
- for ( int i = 0; i < height; i += 2 )
- {
- /* process two scanlines (one from each field, interleaved) */
- for ( int j = 0; j < w2; j++ )
- {
- /* packed YUV 422 is: Y[i] U[i] Y[i+1] V[i] */
- *( y++ ) = *( p++ );
- *( cb++ ) = *( p++ );
- *( y++ ) = *( p++ );
- *( cr++ ) = *( p++ );
- }
- /* process next two scanlines (one from each field, interleaved) */
- for ( int j = 0; j < w2; j++ )
- {
- /* skip every second line for U and V */
- *( y++ ) = *( p++ );
- p++;
- *( y++ ) = *( p++ );
- p++;
- }
- }
-} \ No newline at end of file