~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavformat/nut.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
 */
21
21
 
 
22
#include "libavutil/mathematics.h"
22
23
#include "libavutil/tree.h"
23
24
#include "nut.h"
24
25
#include "internal.h"
69
70
    { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 48 ) },
70
71
    { CODEC_ID_RAWVIDEO, MKTAG(48 , 'B', 'G', 'R') },
71
72
    { CODEC_ID_RAWVIDEO, MKTAG(48 , 'R', 'G', 'B') },
 
73
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '3', 11 , 10 ) },
 
74
    { CODEC_ID_RAWVIDEO, MKTAG(10 , 11 , '3', 'Y') },
 
75
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '3', 10 , 10 ) },
 
76
    { CODEC_ID_RAWVIDEO, MKTAG(10 , 10 , '3', 'Y') },
 
77
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '3',  0 , 10 ) },
 
78
    { CODEC_ID_RAWVIDEO, MKTAG(10 ,  0 , '3', 'Y') },
72
79
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '1',  0 , 16 ) },
73
80
    { CODEC_ID_RAWVIDEO, MKTAG(16 ,  0 , '1', 'Y') },
74
81
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '3', 11 , 16 ) },