Searched refs:AV_SAMPLE_FMT_S64 (Results 1 - 6 of 6) sorted by relevance
/third_party/ffmpeg/libswresample/ |
H A D | audioconvert.c | 57 CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_U8 , (uint64_t)((*(const uint8_t*)pi - 0x80U))<<56) 63 CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S16, (uint64_t)(*(const int16_t*)pi)<<48) 69 CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S32, (uint64_t)(*(const int32_t*)pi)<<32) 72 CONV_FUNC(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_S64, (*(const int64_t*)pi>>56) + 0x80) 73 CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_S64, *(const int64_t*)pi>>48) 74 CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S64, *(const int64_t*)pi>>32) 75 CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S64, *(const int64_t*)pi) 76 CONV_FUNC(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_S64, *(const int64_t*)pi*(1.0f/ (UINT64_C(1)<<63))) 77 CONV_FUNC(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_S64, *(cons [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | samplefmt.h | 68 AV_SAMPLE_FMT_S64, ///< signed 64 bits enumerator
|
H A D | samplefmt.c | 40 [AV_SAMPLE_FMT_S64] = { .name = "s64", .bits = 64, .planar = 0, .altform = AV_SAMPLE_FMT_S64P }, 46 [AV_SAMPLE_FMT_S64P] = { .name = "s64p", .bits = 64, .planar = 1, .altform = AV_SAMPLE_FMT_S64 },
|
/third_party/ffmpeg/libavcodec/ |
H A D | pcm.c | 634 PCM_CODEC (PCM_S64BE, AV_SAMPLE_FMT_S64, pcm_s64be, "PCM signed 64-bit big-endian"); 635 PCM_CODEC (PCM_S64LE, AV_SAMPLE_FMT_S64, pcm_s64le, "PCM signed 64-bit little-endian");
|
/third_party/ffmpeg/libavfilter/ |
H A D | f_reverse.c | 221 case AV_SAMPLE_FMT_S64: { in reverse_samples_packed()
|
H A D | af_astats.c | 606 case AV_SAMPLE_FMT_S64: in filter_channel() 848 AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S64P,
|
Completed in 6 milliseconds