~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to mpeglib/lib/mpegplay/copyFunctions_asm.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  copyfunctions base class
 
3
  Copyright (C) 2000  Martin Vogt
 
4
 
 
5
  This program is free software; you can redistribute it and/or modify
 
6
  it under the terms of the GNU Library General Public License as published by
 
7
  the Free Software Foundation.
 
8
 
 
9
  For more information look at the file COPYRIGHT in this package
 
10
 
 
11
 */
 
12
 
 
13
 
 
14
#include "copyFunctions_asm.h"
 
15
 
 
16
 
 
17
CopyFunctions_ASM::CopyFunctions_ASM() {
 
18
}
 
19
 
 
20
CopyFunctions_ASM::~CopyFunctions_ASM() {
 
21
}
 
22
 
 
23
 
 
24
int CopyFunctions_ASM::support() {
 
25
  return false;
 
26
}
 
27
 
 
28
 
 
29
void CopyFunctions_ASM::startNOFloatSection() {
 
30
}
 
31
 
 
32
 
 
33
void CopyFunctions_ASM::endNOFloatSection() {
 
34
}
 
35
 
 
36
void CopyFunctions_ASM::copy8_byte(unsigned char* ,
 
37
                                   unsigned char* ,int ) {
 
38
  cout << "CopyFunctions_ASM::copy8_byte not implemented"<<endl;
 
39
}
 
40
 
 
41
 
 
42
void CopyFunctions_ASM::copy8_src1linear_crop(short* ,
 
43
                                              unsigned char* ,int ) {
 
44
  cout << "CopyFunctions_ASM:: not implemented"<<endl;
 
45
}
 
46
 
 
47
 
 
48
 
 
49
 
 
50
void CopyFunctions_ASM::copy8_div2_nocrop(unsigned char* ,
 
51
                                          unsigned char* ,
 
52
                                          unsigned char* ,int ) {
 
53
  cout << "CopyFunctions_ASM:: copy8_div2_nocrop not implemented"<<endl;
 
54
}
 
55
 
 
56
 
 
57
void CopyFunctions_ASM::copy8_div2_destlinear_nocrop(unsigned char* ,
 
58
                                                     unsigned char* ,
 
59
                                                     unsigned char* ,
 
60
                                                     int ) {
 
61
  cout << "CopyFunctions_ASM:: copy8_div2_destlinear_nocrop not implemented"
 
62
       <<endl;
 
63
}
 
64
 
 
65
 
 
66
void CopyFunctions_ASM::copy16_div2_destlinear_nocrop(unsigned char* ,
 
67
                                                      unsigned char* ,
 
68
                                                      unsigned char* ,
 
69
                                                      int ) {
 
70
  cout << "CopyFunctions_ASM:: copy16_div2_destlinear_nocrop not implemented"
 
71
       <<endl;
 
72
}
 
73
 
 
74
 
 
75
void CopyFunctions_ASM::copy8_src2linear_crop(unsigned char* ,
 
76
                                              short int* ,
 
77
                                              unsigned char* ,int ) {
 
78
  cout << "CopyFunctions_ASM:: copy8_src2linear_crop not implemented"<<endl;
 
79
}
 
80
 
 
81
 
 
82
void CopyFunctions_ASM::copy8_div2_src3linear_crop(unsigned char* ,
 
83
                                                   unsigned char* ,
 
84
                                                   short int* ,
 
85
                                                   unsigned char* ,
 
86
                                                   int ) {
 
87
  cout << "CopyFunctions_ASM:: copy8_div2_src3linear_crop not implemented"
 
88
       <<endl;
 
89
}