comparison avcodec.h @ 1404:321fd44a1e3e libavcodec

use codec_tag for encoding too
author michaelni
date Mon, 18 Aug 2003 09:20:02 +0000
parents f662e9c86cf2
children 524c904a66b8
comparison
equal deleted inserted replaced
1403:bd42cc06ceb7 1404:321fd44a1e3e
609 enum CodecID codec_id; /* see CODEC_ID_xxx */ 609 enum CodecID codec_id; /* see CODEC_ID_xxx */
610 610
611 /** 611 /**
612 * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A'). 612 * fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
613 * this is used to workaround some encoder bugs 613 * this is used to workaround some encoder bugs
614 * - encoding: unused 614 * - encoding: set by user, if not then the default based on codec_id will be used
615 * - decoding: set by user, will be converted to upper case by lavc during init 615 * - decoding: set by user, will be converted to upper case by lavc during init
616 */ 616 */
617 unsigned int codec_tag; 617 unsigned int codec_tag;
618 618
619 /** 619 /**