~ubuntu-branches/ubuntu/trusty/libav/trusty

« back to all changes in this revision

Viewing changes to libavcodec/mathops.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2011-04-19 15:04:55 UTC
  • mfrom: (1.2.1 upstream)
  • mto: (1.3.4 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20110419150455-c1nac6gjm3t2aa4n
Tags: 4:0.7~b1-1
* New upstream version
* bump SONAME and SHLIBS
* configure flags --disable-stripping was removed upstream
* the MAINTAINERS file was removed upstream
* remove patch disable-configuration-warning.patch
* drop avfilter confflags, it is enable by default in 0.7
* libfaad wrapper has been removed upstream
* also update the *contents* of the lintian overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 * Copyright (c) 2001, 2002 Fabrice Bellard
4
4
 * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> et al
5
5
 *
6
 
 * This file is part of FFmpeg.
 
6
 * This file is part of Libav.
7
7
 *
8
 
 * FFmpeg is free software; you can redistribute it and/or
 
8
 * Libav is free software; you can redistribute it and/or
9
9
 * modify it under the terms of the GNU Lesser General Public
10
10
 * License as published by the Free Software Foundation; either
11
11
 * version 2.1 of the License, or (at your option) any later version.
12
12
 *
13
 
 * FFmpeg is distributed in the hope that it will be useful,
 
13
 * Libav is distributed in the hope that it will be useful,
14
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
16
 * Lesser General Public License for more details.
17
17
 *
18
18
 * You should have received a copy of the GNU Lesser General Public
19
 
 * License along with FFmpeg; if not, write to the Free Software
 
19
 * License along with Libav; if not, write to the Free Software
20
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21
21
 */
22
22
#ifndef AVCODEC_MATHOPS_H
118
118
#ifndef sign_extend
119
119
static inline av_const int sign_extend(int val, unsigned bits)
120
120
{
121
 
    return (val << (INT_BIT - bits)) >> (INT_BIT - bits);
 
121
    return (val << ((8 * sizeof(int)) - bits)) >> ((8 * sizeof(int)) - bits);
122
122
}
123
123
#endif
124
124
 
125
125
#ifndef zero_extend
126
126
static inline av_const unsigned zero_extend(unsigned val, unsigned bits)
127
127
{
128
 
    return (val << (INT_BIT - bits)) >> (INT_BIT - bits);
 
128
    return (val << ((8 * sizeof(int)) - bits)) >> ((8 * sizeof(int)) - bits);
129
129
}
130
130
#endif
131
131
 
146
146
#   define NEG_USR32(a,s) (((uint32_t)(a))>>(32-(s)))
147
147
#endif
148
148
 
 
149
#if HAVE_BIGENDIAN
 
150
# ifndef PACK_2U8
 
151
#   define PACK_2U8(a,b)     (((a) <<  8) | (b))
 
152
# endif
 
153
# ifndef PACK_4U8
 
154
#   define PACK_4U8(a,b,c,d) (((a) << 24) | ((b) << 16) | ((c) << 8) | (d))
 
155
# endif
 
156
# ifndef PACK_2U16
 
157
#   define PACK_2U16(a,b)    (((a) << 16) | (b))
 
158
# endif
 
159
#else
 
160
# ifndef PACK_2U8
 
161
#   define PACK_2U8(a,b)     (((b) <<  8) | (a))
 
162
# endif
 
163
# ifndef PACK_4U2
 
164
#   define PACK_4U8(a,b,c,d) (((d) << 24) | ((c) << 16) | ((b) << 8) | (a))
 
165
# endif
 
166
# ifndef PACK_2U16
 
167
#   define PACK_2U16(a,b)    (((b) << 16) | (a))
 
168
# endif
 
169
#endif
 
170
 
 
171
#ifndef PACK_2S8
 
172
#   define PACK_2S8(a,b)     PACK_2U8((a)&255, (b)&255)
 
173
#endif
 
174
#ifndef PACK_4S8
 
175
#   define PACK_4S8(a,b,c,d) PACK_4U8((a)&255, (b)&255, (c)&255, (d)&255)
 
176
#endif
 
177
#ifndef PACK_2S16
 
178
#   define PACK_2S16(a,b)    PACK_2U16((a)&0xffff, (b)&0xffff)
 
179
#endif
 
180
 
149
181
#endif /* AVCODEC_MATHOPS_H */
150
182