1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768
  
     | 
    
      /*
 *  filter_yait.c
 *
 *  Copyright (C) Allan Snider - February 2007
 *
 *  This file is part of transcode, a video stream processing tool
 *
 *  transcode is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2, or (at your option)
 *  any later version.
 *
 *  transcode is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with GNU Make; see the file COPYING.  If not, write to
 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 */
#define	MOD_NAME	"filter_yait.so"
#define	MOD_VERSION	"v0.1 (2007-02-14)"
#define	MOD_CAP		"Yet Another Inverse Telecine filter"
#define	MOD_AUTHOR	"Allan Snider"
#include "transcode.h"
#include "filter.h"
#include "libtc/libtc.h"
#include "libtc/optstr.h"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
/*
 *	yait:
 *		Yet Another Inverse Telecine filter.
 *
 *	Usage:
 *		-J yait=log[=file] (-y null)
 *		-J yait=ops[=file]
 *
 *	Description:
 *
 *		This filter is designed specifically to handle mixed progressive and NTSC
 *	telecined data (2:3 pulldown), converting from NTSC_VIDEO (29.97 fps) to NTSC_FILM
 *	(23.976 fps).  It uses row save and copy operations to reconstruct progressive
 *	frames.  It is provided as an alternative to the -J ivtc,32detect,decimate method.
 *
 *		For those who don't care how much cpu is used but are interested only
 *	in trying to achieve the best quality rendering, then read on.  If not, then stop
 *	reading right now, as this filter requires a complete separate pass on the video
 *	stream and an external analysis tool to be run.
 *
 *		The main advantage of using a separate pass is that it provides a much
 *	larger window of frames to examine when deciding what frames need to be dropped
 *	or de-interlaced.  The video stream is read at 30 fps (--hard_fps).  Duplicate
 *	frames are inserted by the demuxer to keep the frame rate at 30 when progressive
 *	data is encountered.  These frames can appear quite early or late, far beyond the
 *	five frame local window used by ivtc, etc.  This approach allows drop frames to
 *	be credited, and debited, (up to a point), making better drop frame choices.  The
 *	result is a (noticeably) smoother video.
 *
 *		Another advantage of using a large frame window is to provide context
 *	for determining interlace patterns.  Local interlace patterns (eg. a 5 frame
 *	window) can sometimes be impossible to determine.  When able to look ahead or
 *	behind for existing patterns, usually the correct pattern can be inherited.
 *
 *		The filter guarantees one drop frame per 5 frames.  No more, no less.
 *
 *	Using the filter:
 *
 *	    Pass 1:
 *
 *		-J yait=log -y null
 *
 *		The first pass is used only to generate row (even/odd) delta information.
 *		This is written as a text log file (called yait.log by default).  (The
 *		file name can be specified using yait=log=file).  This is the only data
 *		required by this pass, so no video (or audio) frames need to be encoded.
 *		You do need to specify the demuxer_sync method however.  (It must be 2).
 *
 *		Alternatively (for debug purposes), you may want to generate a frame
 *		labeled video file, then compare the yait analysis to the original video.
 *		In this case use something like:
 *			-H 10 -x vob -i ...
 *			--export_fps 0,4 --demuxer_sync 2 -y xvid4,null -o label.ogm
 *			-J yait=log -J text=frame:posdef=8
 *
 * 	    Running the tcyait tool:
 *
 * 		Pass 1 created a yait.log file.  The analysis tool 'tcyait' is then run
 * 		which reads the log file and determines which areas are telecined and
 * 		progressive and detects the telecine patterns.  A yait frame operations
 * 		file is then written (yait.ops by default).  It is a text file containing
 * 		instructions for each frame, such as nop, save even or odd rows, copy rows,
 * 		drop frames, or blend a frame.  The usage of the tool is as follows:
 *
 *		tcyait [-d] [-l log] [-o ops] [-m mode]
 *		        -d              Print debug information to stdout.
 *		        -l log          Specify input yait log file name [yait.log].
 *		        -o ops          Specify output yait frame ops file name [yait.ops].
 *		        -m mode         Specify transcode de-interlace method [3].
 *
 *		I typically run it as:
 *			tcyait -d > yait.info
 *
 *		One could query why pass 1 doesn't just create the .ops file directly.  That
 *		is, run the analysis at TC_FILTER_CLOSE time and save the user from having
 *		to run the tool directly.  The main reason is that the tcyait code is alpha
 *		and still undergoing a lot of fine tuning.  I would not want to have to
 *		regenerate the row delta information every time I tweaked the analysis
 *		portion.  So, it exists as a separate tool for now.
 *
 *	    Pass 2 (and 3): 		
 *
 *		-J yait=ops -y ...
 *
 * 		The second pass (or third for -R 1 and -R 2), reads the frame operations file
 * 		generated by tcyait, (called yait.ops by default).  (The file name can be
 * 		specified using yait=ops=file).  This file instructs the filter to save or
 * 		copy rows, skip frames, or de-interlace frames, and causes the pre filtering
 * 		to reduce the frame rate to 24 fps.  Hence, you must specify the export fps
 * 		as 24, or will get truncated audio, (ie. --export_fps 24,1).  The frame
 * 		sequence seen by the filter must match exactly what pass 1 saw.  That is, you
 * 		cannot specify a frame range or audio track in pass 1, but not pass 2, and
 * 		visa versa.  Here is an example invocation:
 *
 *			transcode -H 10 -a 0 -x vob -i ... -w 1800,50 -b 192,0,0 -Z ...
 *				-R 1 -y xvid4,null --demuxer_sync 2 --export_fps 24,1
 *				-J yait=ops --progress_rate 25
 *
 *			transcode -H 10 -a 0 -x vob -i ... -w 1800,50 -b 192,0,0 -Z ...
 *				-R 2 -y xvid4 --demuxer_sync 2 --export_fps 24,1 -o ...
 *				-J yait=ops --progress_rate 25
 *
 *		The import frame rate and --hard_fps flags are forced by the filter and
 *		need not be specified.
 *
 *	DISCLAIMER:
 *
 *		This is a work in progress.  For non-NTSC telecine patterns, PAL, or purely
 *	interlaced material, you are going to get nonsense results.  Best stick to 'ivtc' or
 *	'smartyuv' for those.
 *
 *		For some video, remarkably good results were obtained.  (I was quite pleased and
 *	hence felt obliged to distribute this).  In a few cases I had video constantly switching
 *	frame rates, with single or small grouped telecine, both even and odd patterns, and was
 *	able to reconstruct the original 24 fps progressive film for the entire file, without
 *	blending a single frame.  For others, not so good.  The analysis tool can sometimes
 *	generate a lot of false positives for interlace detection and specify needless frame
 *	blending.  Generally, wherever a frame blend is specified, something went wrong.  I
 *	usually step frame by frame in the original (frame labelled) .ogm and edit/correct
 *	the .ops file manually.
 *
 *		There is much work to be done still (especially documentation), but here it
 *	is, such as it is.
 *						Allan
 */
/*
 *	Defines:
 */
#define	FALSE			0
#define	TRUE			1
#define	Y_LOG_FN		"yait.log"	/* log file read */
#define	Y_OPS_FN		"yait.ops"	/* frame operation file written */
/* frame ops */
#define	Y_OP_ODD		0x10
#define	Y_OP_EVEN		0x20
#define	Y_OP_PAT		0x30
#define	Y_OP_NOP		0x0
#define	Y_OP_SAVE		0x1
#define	Y_OP_COPY		0x2
#define	Y_OP_DROP		0x4
#define	Y_OP_DEINT		0x8
/*
 *	Globals:
 */
FILE *Log_fp;			/* output log file */
FILE *Ops_fp;			/* input frame ops file */
uint8_t *Fbuf;			/* video frame buffer */
int Codec;			/* internal codec */
int Fn;				/* frame number */
/*
 *	Prototypes:
 */
static int yait_get_config( char* );
static int yait_init( char* );
static int yait_fini( void );
static int yait_process( vframe_list_t* );
static void yait_compare( vframe_list_t*, uint8_t*, int );
static void yait_cmp_rgb( uint8_t*, uint8_t*, int, int, int*, int* );
static void yait_cmp_yuv( uint8_t*, uint8_t*, int, int, int*, int* );
static int yait_ops( vframe_list_t* );
static int yait_ops_chk( void );
static int yait_ops_get( char*, int, int* );
static int yait_ops_decode( char*, int* );
static void yait_put_rows( uint8_t*, uint8_t*, int, int, int );
/*
 *	tc_filter:
 *		YAIT filter main entry point.  Single instance.
 */
int
tc_filter( frame_list_t *ptr_, char *opt )
	{
	vframe_list_t *ptr = (vframe_list_t*) ptr_;
	if( ptr->tag & TC_AUDIO )
		return( 0 );
	if( ptr->tag & TC_FILTER_GET_CONFIG )
		return( yait_get_config(opt) );
	if( ptr->tag & TC_FILTER_INIT )
		return( yait_init(opt) );
	if( ptr->tag & TC_FILTER_CLOSE )
		return( yait_fini() );
	if( ptr->tag & TC_PRE_S_PROCESS )
		return( yait_process(ptr) );
	return( 0 );
	}
/*
 *	yait_get_config:
 */
static int
yait_get_config( char *opt )
	{
	optstr_filter_desc( opt, MOD_NAME, MOD_CAP, MOD_VERSION, MOD_AUTHOR, "VRYE", "1" );
	optstr_param( opt, "log", "Compute and write yait delta log file", "%s", "" );
	optstr_param( opt, "ops", "Read and apply yait frame operation file", "%s", "" );
	return( 0 );
	}
/*
 *	yait_init:
 */
static int
yait_init( char *opt )
	{
	static vob_t *vob;
	char buf[256], *fn;
	const char *p;
	int n;
	if( verbose )
		{
		tc_log_info( MOD_NAME, "%s %s", MOD_VERSION, MOD_CAP );
		tc_log_info( MOD_NAME, "options=%s", opt );
		}
	vob = tc_get_vob();
	if( !vob )
		{
		tc_log_error( MOD_NAME, "cannot get VOB info." );
		return( -1 );
		}
	Codec = vob->im_v_codec;
	fn = NULL;
	/* log file */
        p = optstr_lookup( opt, "log" );
	if( p )
		{
		fn = Y_LOG_FN;
		n = optstr_get( opt, "log", "%[^:]", buf );
		if( n > 0 )
			fn = buf;
		Log_fp = fopen( fn, "w" );
		if( !Log_fp )
			{
			perror( "fopen" );
			tc_log_error( MOD_NAME, "cannot create log file, '%s'", buf );
			return( -1 );
			}
		}
	/* ops file */
	p = optstr_lookup( opt, "ops" );
	if( p )
		{
		fn = Y_OPS_FN;
		n = optstr_get( opt, "ops", "%[^:]", buf );
		if( n > 0 )
			fn = buf;
		Ops_fp = fopen( fn, "r" );
		if( !Ops_fp )
			{
			perror( "fopen" );
			tc_log_error( MOD_NAME, "cannot open yait ops file, '%s'", buf );
			return( -1 );
			}
		if( !yait_ops_chk() )
			{
			tc_log_error( MOD_NAME, "invalid yait ops file" );
			return( -1 );
			}
		}
	if( !Log_fp && !Ops_fp )
		{
		tc_log_error( MOD_NAME, "at least one operation (log|ops) must be specified" );
		return( -1 );
		}
	if( Log_fp && Ops_fp )
		{
		tc_log_error( MOD_NAME, "only one operation (log|ops) may be specified" );
		return( -1 );
		}
	if( Log_fp )
		{
		tc_log_info( MOD_NAME, "Generating YAIT delta log file '%s'", fn );
		tc_log_info( MOD_NAME, "Forcing --hard_fps, -f 30,4, --export_fps 30,4" );
		/* try to lock everything in at 30 fps */
	  	vob->hard_fps_flag = TC_TRUE;
		vob->im_frc = 4;
		vob->ex_frc = 4;
		vob->fps = NTSC_VIDEO;
		vob->ex_fps = NTSC_VIDEO;
		}
	if( Ops_fp )
		{
		tc_log_info( MOD_NAME, "Applying YAIT frame operations file '%s'", fn );
		tc_log_info( MOD_NAME, "Forcing --hard_fps, -f 30,4, --export_fps 24,1" );
		/* try to lock import at 30 fps, export at 24 fps */
	  	vob->hard_fps_flag = TC_TRUE;
		vob->im_frc = 4;
		vob->ex_frc = 1;
		vob->fps = NTSC_VIDEO;
		vob->ex_fps = NTSC_FILM;
		}
	Fbuf = tc_malloc( SIZE_RGB_FRAME );
	if( !Fbuf )
		{
		perror( "tc_malloc" );
		tc_log_error( MOD_NAME, "cannot allocate frame buffer" );
		return( -1 );
		}
	memset( Fbuf, 0, SIZE_RGB_FRAME );
	Fn = -1;
	return( 0 );
	}
/*
 *	yait_fini:
 */
static int
yait_fini( void )
	{
	if( Log_fp )
		fclose( Log_fp );
	if( Ops_fp )
		fclose( Ops_fp );
	if( Fbuf )
		free( Fbuf );
	Log_fp = NULL;
	Ops_fp = NULL;
	Fbuf = NULL;
	return( 0 );
	}
/*
 *	yait_process:
 */
static int
yait_process( vframe_list_t *ptr )
	{
	if( Fn == -1 )
		{
		Fn = ptr->id;
		ac_memcpy( Fbuf, ptr->video_buf, ptr->video_size );
		}
	if( ptr->id != Fn )
		{
		tc_log_error( MOD_NAME, "inconsistent frame numbers" );
		yait_fini();
		return( -1 );
		}
	if( Log_fp )
		{
		yait_compare( ptr, Fbuf, Fn );
		ac_memcpy( Fbuf, ptr->video_buf, ptr->video_size );
		}
	if( Ops_fp )
		if( !yait_ops(ptr) )
			{
			yait_fini();
			return( -1 );
			}
	Fn++;
	return( 0 );
	}
/*
 *	yait_compare:
 */
static void
yait_compare( vframe_list_t *ptr, uint8_t *lv, int fn )
	{
	uint8_t *cv;
	int ed, od;
	int w, h;
	cv = ptr->video_buf;
	w = ptr->v_width;
	h = ptr->v_height;
	if( Codec == CODEC_RGB )
		yait_cmp_rgb( lv, cv, w, h, &ed, &od );
	else
		yait_cmp_yuv( lv, cv, w, h, &ed, &od );
	fprintf( Log_fp, "%d: e: %d, o: %d\n", fn, ed, od );
	/* BUG: until the blocked tcdecode pipe problem is fixed... */
	if( !(fn%5) )
		fflush( Log_fp );
	}
/*
 *	yait_cmp_rgb:
 */
static void
yait_cmp_rgb( uint8_t *lv, uint8_t *cv, int w, int h, int *ed, int *od )
	{
	uint8_t *lp, *cp;
	int x, y, p;
	int e, o;
	/* even row delta */
	e = 0;
	for( y=0; y<h; y+=2 )
		{
		p = y * w * 3;
		lp = lv + p;
		cp = cv + p;
		for( x=0; x<w; x++ )
			{
			e += abs( *lp++ - *cp++ );
			e += abs( *lp++ - *cp++ );
			e += abs( *lp++ - *cp++ );
			}
		}
	/* odd row delta */
	o = 0;
	for( y=1; y<h; y+=2 )
		{
		p = y * w * 3;
		lp = lv + p;
		cp = cv + p;
		for( x=0; x<w; x++ )
			{
			o += abs( *lp++ - *cp++ );
			o += abs( *lp++ - *cp++ );
			o += abs( *lp++ - *cp++ );
			}
		}
	*ed = e;
	*od = o;
	}
/*
 *	yait_cmp_yuv:
 */
static void
yait_cmp_yuv( uint8_t *lv, uint8_t *cv, int w, int h, int *ed, int *od )
	{
	uint8_t *lp, *cp;
	int x, y, p;
	int e, o;
	/* even row delta */
	e = 0;
	for( y=0; y<h; y+=2 )
		{
		/* y */
		p = y * w;
		lp = lv + p;
		cp = cv + p;
		for( x=0; x<w; x++ )
			e += abs( *lp++ - *cp++ );
		/* uv */
		p = w*h + y * w/2;
		lp = lv + p;
		cp = cv + p;
		for( x=0; x<w/2; x++ )
			e += abs( *lp++ - *cp++ );
		}
	/* odd row delta */
	o = 0;
	for( y=1; y<h; y+=2 )
		{
		/* y */
		p = y * w;
		lp = lv + p;
		cp = cv + p;
		for( x=0; x<w; x++ )
			o += abs( *lp++ - *cp++ );
		/* uv */
		p = w*h + y * w/2;
		lp = lv + p;
		cp = cv + p;
		for( x=0; x<w/2; x++ )
			o += abs( *lp++ - *cp++ );
		}
	*ed = e;
	*od = o;
	}
/*
 *	yait_ops:
 */
static int
yait_ops( vframe_list_t *ptr )
	{
	char buf[256];
	uint8_t *v;
	int mode, op;
	int w, h;
	v = ptr->video_buf;
	w = ptr->v_width;
	h = ptr->v_height;
	fgets( buf, 256, Ops_fp );
	op = yait_ops_get( buf, Fn, &mode );
	if( op < 0 )
		return( FALSE );
	if( op & Y_OP_SAVE )
		yait_put_rows( Fbuf, v, w, h, op&Y_OP_PAT );
	if( op & Y_OP_COPY )
		yait_put_rows( v, Fbuf, w, h, op&Y_OP_PAT );
	if( op & Y_OP_DROP )
		ptr->attributes |= TC_FRAME_IS_SKIPPED;
	if( op & Y_OP_DEINT )
		{
		ptr->attributes |= TC_FRAME_IS_INTERLACED;
		ptr->deinter_flag = mode;
		}
	return( TRUE );
	}
/*
 *	yait_ops_chk:
 */
static int
yait_ops_chk( void )
	{
	char buf[256], *p;
	int fn, op;
	fscanf( Ops_fp, "%d:", &fn );
	rewind( Ops_fp );
	for( ;; )
		{
		p = fgets( buf, 256, Ops_fp );
		if( !p )
			break;
		op = yait_ops_get( buf, fn, NULL );
		if( op < 0 )
			return( FALSE );
		fn++;
		}
	rewind( Ops_fp );
	return( TRUE );
	}
/*
 *	yait_ops_get:
 */
static int
yait_ops_get( char *buf, int fn, int *mode )
	{
	char str[256];
	int op, f, n;
	f = -1;
	str[0] = 0;
	n = sscanf( buf, "%d: %s\n", &f, str );
	if( n < 1 )
		{
		if( feof(Ops_fp) )
			tc_log_error( MOD_NAME, "truncated yait ops file, frame: %d", fn );
		else
			tc_log_error( MOD_NAME, "invalid yait ops format, frame: %d", fn );
		return( -1 );
		}
	if( f != fn )
		{
		tc_log_error( MOD_NAME, "invalid yait ops frame number, frame: %d", fn );
		return( -1 );
		}
	op = yait_ops_decode( str, mode );
	if( op < 0 )
		{
		tc_log_error( MOD_NAME, "invalid yait ops code, frame: %d", fn );
		return( -1 );
		}
	return( op );
	}
/*
 *	yait_ops_decode:
 */
static int
yait_ops_decode( char *str, int *mode )
	{
	int op, c;
	op = 0;
	while( *str )
		{
		c = *str++;
		if( c>='0' && c<='5' )
			{
			if( c == '0' )
				/* no operation */
				continue;
			op |= Y_OP_DEINT;
			if( mode )
				*mode = c - '0';
			continue;
			}
		switch( c )
			{
			case 'o':
				op |= Y_OP_ODD;
				break;
			case 'e':
				op |= Y_OP_EVEN;
				break;
			case 's':
				op |= Y_OP_SAVE;
				break;
			case 'c':
				op |= Y_OP_COPY;
				break;
			case 'd':
				op |= Y_OP_DROP;
				break;
			default:
				return( -1 );
				break;
			}
		}
	return( op );
	}
/*
 *	yait_put_rows:
 */
static void
yait_put_rows( uint8_t *dst, uint8_t *src, int w, int h, int flg )
	{
	int y, o;
	y = (flg==Y_OP_EVEN) ? 0 : 1;
	if( Codec == CODEC_RGB )
		{
		for( ; y<h; y+=2 )
			{
			o = y * w * 3;
			ac_memcpy( dst+o, src+o, w*3 );
			}
		}
	else
		{
		for( ; y<h; y+=2 )
			{
			/* y (luminance) */
			o = y * w;
			ac_memcpy( dst+o, src+o, w );
			/* 2 * h/2 blocks (u and v) = h */
			o = w*h + y * w/2;
			ac_memcpy( dst+o, src+o, w/2 );
			}
		}
	}
 
     |