From d7d187300d683aa0e92f98091dc5532cd8b08348 Mon Sep 17 00:00:00 2001 From: arpi Date: Tue, 25 Jun 2002 22:26:34 +0000 Subject: new global codec flag: align16 it means that width/height should be round up to n*16 (some buggy codec needs it to avoid sig11 / image distortions) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6566 b3059339-0415-0410-9bf9-f77b7e298cf2 --- codec-cfg.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'codec-cfg.c') diff --git a/codec-cfg.c b/codec-cfg.c index 96c2d1a7da..0134dc13e6 100644 --- a/codec-cfg.c +++ b/codec-cfg.c @@ -622,6 +622,9 @@ int parse_codec_cfg(char *cfgfile) goto err_out_parse_error; if (!strcmp(token[0], "seekable")) codec->flags |= CODECS_FLAG_SEEKABLE; + else + if (!strcmp(token[0], "align16")) + codec->flags |= CODECS_FLAG_ALIGN16; else goto err_out_parse_error; } else if (!strcmp(token[0], "status")) { -- cgit v1.2.3