~ubuntu-branches/ubuntu/raring/libav/raring-security

« back to all changes in this revision

Viewing changes to debian/patches/post-0.7.1/0018-pix_fmt-Fix-number-of-bits-per-component-in-yuv444p9.patch

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2011-09-28 09:18:34 UTC
  • mfrom: (1.3.7 sid)
  • Revision ID: package-import@ubuntu.com-20110928091834-w415mnuh06h4zpvc
Tags: 4:0.7.1-7ubuntu2
Revert "Convert package to include multiarch support."

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From f8521560fa95c83bfbd95bb1b5adc8ded62a5104 Mon Sep 17 00:00:00 2001
 
2
From: Oskar Arvidsson <oskar@irock.se>
 
3
Date: Tue, 12 Jul 2011 10:52:19 +0200
 
4
Subject: [PATCH 18/70] pix_fmt: Fix number of bits per component in yuv444p9be
 
5
 
 
6
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
 
7
(cherry picked from commit e59d6b4d7255d6d3dc89580f534e18af1433fe25)
 
8
 
 
9
Signed-off-by: Anton Khirnov <anton@khirnov.net>
 
10
---
 
11
 libavutil/pixdesc.c |    6 +++---
 
12
 1 files changed, 3 insertions(+), 3 deletions(-)
 
13
 
 
14
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c
 
15
index efc7c7e..c70a413 100644
 
16
--- a/libavutil/pixdesc.c
 
17
+++ b/libavutil/pixdesc.c
 
18
@@ -918,9 +918,9 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = {
 
19
         .log2_chroma_w= 0,
 
20
         .log2_chroma_h= 0,
 
21
         .comp = {
 
22
-            {0,1,1,0,9},        /* Y */
 
23
-            {1,1,1,0,9},        /* U */
 
24
-            {2,1,1,0,9},        /* V */
 
25
+            {0,1,1,0,8},        /* Y */
 
26
+            {1,1,1,0,8},        /* U */
 
27
+            {2,1,1,0,8},        /* V */
 
28
         },
 
29
         .flags = PIX_FMT_BE,
 
30
     },
 
31
-- 
 
32
1.7.4.1
 
33