diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2004-02-09 22:28:42 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2004-02-09 22:28:42 +0000 |
commit | 07193b78bd361cbdc9cca0936aeec7509b3c36c7 (patch) | |
tree | a9aa320de684678cd9422bdcef734c85d5e8671b /src | |
parent | 5e461e6b22a4c244c5e6ab13ddeb9581a2b8216b (diff) | |
download | xine-lib-07193b78bd361cbdc9cca0936aeec7509b3c36c7.tar.gz xine-lib-07193b78bd361cbdc9cca0936aeec7509b3c36c7.tar.bz2 |
Add BUF_FLAG_ASPECT
CVS patchset: 6129
CVS date: 2004/02/09 22:28:42
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/buffer.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index aa3c960c2..b03513ba3 100644 --- a/src/xine-engine/buffer.h +++ b/src/xine-engine/buffer.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: buffer.h,v 1.133 2004/02/04 23:24:27 jstembridge Exp $ + * $Id: buffer.h,v 1.134 2004/02/09 22:28:42 jstembridge Exp $ * * * contents: @@ -330,6 +330,10 @@ struct buf_element_s { * note: BUF_FLAG_HEADER must also be set. */ #define BUF_FLAG_STDHEADER 0x0400 +/* decoder_info[1] carries numerator for display aspect ratio + * decoder_info[2] carries denominator for display aspect ratio */ +#define BUF_FLAG_ASPECT 0x0800 + /* Special buffer types: * Sometimes there is a need to relay special information from a demuxer |