Searched refs:int64_t (Results 1 - 25 of 239) sorted by relevance

12345678910

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Dmathematics.h53 int64_t av_const av_gcd(int64_t a, int64_t b);
59 int64_t av_rescale(int64_t a, int64_t b, int64_t c) av_const;
65 int64_t av_rescale_rnd(int64_t a, int64_t
[all...]
H A Dmathematics.c53 int64_t av_gcd(int64_t a, int64_t b){
59 int64_t ff_gcd(int64_t a, int64_t b){
64 int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t
[all...]
H A Drational.c36 int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max){
39 int64_t gcd= av_gcd(FFABS(num), FFABS(den));
52 int64_t next_den= num - den*x;
53 int64_t a2n= x*a1.num + a0.num;
54 int64_t a2d= x*a1.den + a0.den;
79 av_reduce(&b.num, &b.den, b.num * (int64_t)c.num, b.den * (int64_t)c.den, INT_MAX);
88 av_reduce(&b.num, &b.den, b.num * (int64_t)
[all...]
H A Dintfloat_readwrite.h33 double av_int2dbl(int64_t v) av_const;
36 int64_t av_dbl2int(double d) av_const;
H A Drational.h49 const int64_t tmp= a.num * (int64_t)b.den - b.num * (int64_t)a.den;
74 int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max);
H A Dintfloat_readwrite.c31 double av_int2dbl(int64_t v){
60 int64_t av_dbl2int(double d){
63 else if(d-d) return 0x7FF0000000000000LL + ((int64_t)(d<0)<<63) + (d!=d);
65 return (int64_t)(d<0)<<63 | (e+1022LL)<<52 | (int64_t)((fabs(d)-0.5)*(1LL<<53));
73 return (d<0)<<31 | (e+126)<<23 | (int64_t)((fabs(d)-0.5)*(1<<24));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/include/libavutil/
H A Dmathematics.h53 int64_t av_const av_gcd(int64_t a, int64_t b);
59 int64_t av_rescale(int64_t a, int64_t b, int64_t c) av_const;
65 int64_t av_rescale_rnd(int64_t a, int64_t
[all...]
H A Dintfloat_readwrite.h33 double av_int2dbl(int64_t v) av_const;
36 int64_t av_dbl2int(double d) av_const;
H A Drational.h49 const int64_t tmp= a.num * (int64_t)b.den - b.num * (int64_t)a.den;
74 int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/celleb/
H A Dbeat.h27 int64_t beat_get_term_char(uint64_t,uint64_t*,uint64_t*,uint64_t*);
28 int64_t beat_put_term_char(uint64_t,uint64_t,uint64_t,uint64_t);
29 int64_t beat_repository_encode(int, const char *, uint64_t[4]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dnut.h59 int64_t ts;
75 int64_t last_pts;
86 // int64_t packet_start;
94 int64_t last_syncpoint_pos;
107 void ff_nut_reset_ts(NUTContext *nut, AVRational time_base, int64_t val);
108 int64_t ff_lsb2full(StreamContext *stream, int64_t lsb);
111 void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t t
[all...]
H A Draw.h28 int stream_index, int64_t timestamp, int flags);
H A Davformat.h127 int64_t pts;
133 int64_t dts;
145 int64_t pos; ///< byte position in stream, -1 if unknown
162 int64_t convergence_duration;
226 int64_t val, num, den;
357 int stream_index, int64_t timestamp, int flags);
363 int64_t (*read_timestamp)(struct AVFormatContext *s, int stream_index,
364 int64_t *pos, int64_t pos_limit);
390 int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_t
[all...]
H A Dnut.c33 void ff_nut_reset_ts(NUTContext *nut, AVRational time_base, int64_t val){
38 time_base.num * (int64_t)nut->stream[i].time_base->den,
39 time_base.den * (int64_t)nut->stream[i].time_base->num,
44 int64_t ff_lsb2full(StreamContext *stream, int64_t lsb){
45 int64_t mask = (1<<stream->msb_pts_shift)-1;
46 int64_t delta= stream->last_pts - mask/2;
58 void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t t
[all...]
H A Davio.h75 int64_t url_seek(URLContext *h, int64_t pos, int whence);
78 int64_t url_filesize(URLContext *h);
126 int64_t av_url_read_seek(URLContext *h, int stream_index,
127 int64_t timestamp, int flags);
141 int64_t (*url_seek)(URLContext *h, int64_t pos, int whence);
145 int64_t (*url_read_seek)(URLContext *h, int stream_index,
146 int64_t timestamp, int flags);
185 int64_t (*see
[all...]
H A Dffm.h45 int64_t write_index, file_size;
53 int64_t dts;
H A Dswf.h69 int64_t duration_pos;
70 int64_t tag_pos;
71 int64_t vframes_pos;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/include/libavformat/
H A Davformat.h127 int64_t pts;
133 int64_t dts;
145 int64_t pos; ///< byte position in stream, -1 if unknown
162 int64_t convergence_duration;
226 int64_t val, num, den;
357 int stream_index, int64_t timestamp, int flags);
363 int64_t (*read_timestamp)(struct AVFormatContext *s, int stream_index,
364 int64_t *pos, int64_t pos_limit);
390 int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_t
[all...]
H A Davio.h75 int64_t url_seek(URLContext *h, int64_t pos, int whence);
78 int64_t url_filesize(URLContext *h);
126 int64_t av_url_read_seek(URLContext *h, int stream_index,
127 int64_t timestamp, int flags);
141 int64_t (*url_seek)(URLContext *h, int64_t pos, int whence);
145 int64_t (*url_read_seek)(URLContext *h, int stream_index,
146 int64_t timestamp, int flags);
185 int64_t (*see
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/mtd/
H A Dubi-user.h88 #define UBI_IOCVOLUP _IOW(UBI_VOL_IOC_MAGIC, 0, int64_t)
137 int64_t bytes;
157 int64_t bytes;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dmathops.h48 # define MULL(a,b,s) (((int64_t)(a) * (int64_t)(b)) >> (s))
53 //# define MULH(a,b) (((int64_t)(a) * (int64_t)(b))>>32)
56 return ((int64_t)(a) * (int64_t)(b))>>32;
61 # define MUL64(a,b) ((int64_t)(a) * (int64_t)(b))
H A Daudioconvert.h65 void avcodec_get_channel_layout_string(char *buf, int buf_size, int nb_channels, int64_t channel_layout);
74 int64_t avcodec_guess_channel_layout(int nb_channels, enum CodecID codec_id, const char *fmt_name);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/extras/volume_id/lib/
H A Dnetware.c42 int64_t superlocation[4];
47 int64_t SBH_LoggedPoolDataBlk;
48 int64_t SBH_PoolDataBlk;
63 int64_t SBH_LoggedVolumeDataBlk;
64 int64_t SBH_VolumeDataBlk;
65 int64_t SBH_SystemBeastBlkNum;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/x86/
H A Dvp6dsp_sse2.c74 : "g"((x86_reg)stride), "r"(11), "m"(*(const int64_t*)h_weights)
96 : "g"((x86_reg)stride), "r"(8), "m"(*(const int64_t*)v_weights)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libogg-1.1.4/macos/compat/sys/
H A Dtypes.h10 #ifndef __SYS_TYPES_H__ #define __SYS_TYPES_H__ 1 #include <MacTypes.h> #include <alloca.h> #include <string.h> typedef short int16_t; typedef long int32_t; typedef long long int64_t; #define vorbis_size32_t long #if defined(__cplusplus) extern "C" { #endif #pragma options ali (…)

Completed in 125 milliseconds

12345678910