~ubuntu-branches/debian/squeeze/mplayer/squeeze

« back to all changes in this revision

Viewing changes to debian/patches/24forgotten-bgr15-format.patch

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2010-07-31 23:44:52 UTC
  • mfrom: (1.1.4 upstream) (8.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100731234452-j7yyrgsh1wustazr
Tags: 2:1.0~rc3++final.dfsg1-1
* upload to unstable
* enable mencoder and mplayer-gui package
* build again against the system FFmpeg 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From: Reimar
 
2
Subject: 100l, add forgotten BGR15 format to fmt-conversion.c table
 
3
Origin: upstream, r29117, http://lists.mplayerhq.hu/pipermail/mplayer-cvslog/2009-April/036930.html
 
4
 
 
5
--- a/fmt-conversion.c
 
6
+++ b/fmt-conversion.c
 
7
@@ -28,6 +28,7 @@ static const struct {
 
8
     {IMGFMT_BGR32, PIX_FMT_RGB32},
 
9
     {IMGFMT_BGR24, PIX_FMT_BGR24},
 
10
     {IMGFMT_BGR16, PIX_FMT_RGB565},
 
11
+    {IMGFMT_BGR15, PIX_FMT_RGB555},
 
12
     {IMGFMT_BGR8,  PIX_FMT_RGB8},
 
13
     {IMGFMT_BGR4,  PIX_FMT_RGB4},
 
14
     {IMGFMT_BGR1,  PIX_FMT_MONOBLACK},