#include <errno.h>
#include "libavutil/avutil.h"
Go to the source code of this file.
Data Structures | |
| struct | RcOverride |
| struct | AVPanScan |
| Pan Scan area. More... | |
| struct | AVPacket |
| struct | AVFrame |
| Audio Video Frame. More... | |
| struct | AVCodecContext |
| main external API structure. More... | |
| struct | AVCodec |
| AVCodec. More... | |
| struct | AVHWAccel |
| AVHWAccel. More... | |
| struct | AVPicture |
| four components are given, that's all. More... | |
| struct | AVPaletteControl |
| struct | AVSubtitleRect |
| struct | AVSubtitle |
| struct | AVCodecParserContext |
| struct | AVCodecParser |
| struct | AVBitStreamFilterContext |
| struct | AVBitStreamFilter |
Defines | |
| #define | LIBAVCODEC_VERSION_MAJOR 52 |
| #define | LIBAVCODEC_VERSION_MINOR 52 |
| #define | LIBAVCODEC_VERSION_MICRO 0 |
| #define | LIBAVCODEC_VERSION_INT |
| #define | LIBAVCODEC_VERSION |
| #define | LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT |
| #define | LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) |
| #define | AV_NOPTS_VALUE INT64_C(0x8000000000000000) |
| #define | AV_TIME_BASE 1000000 |
| #define | AV_TIME_BASE_Q (AVRational){1, AV_TIME_BASE} |
| #define | CH_FRONT_LEFT 0x00000001 |
| #define | CH_FRONT_RIGHT 0x00000002 |
| #define | CH_FRONT_CENTER 0x00000004 |
| #define | CH_LOW_FREQUENCY 0x00000008 |
| #define | CH_BACK_LEFT 0x00000010 |
| #define | CH_BACK_RIGHT 0x00000020 |
| #define | CH_FRONT_LEFT_OF_CENTER 0x00000040 |
| #define | CH_FRONT_RIGHT_OF_CENTER 0x00000080 |
| #define | CH_BACK_CENTER 0x00000100 |
| #define | CH_SIDE_LEFT 0x00000200 |
| #define | CH_SIDE_RIGHT 0x00000400 |
| #define | CH_TOP_CENTER 0x00000800 |
| #define | CH_TOP_FRONT_LEFT 0x00001000 |
| #define | CH_TOP_FRONT_CENTER 0x00002000 |
| #define | CH_TOP_FRONT_RIGHT 0x00004000 |
| #define | CH_TOP_BACK_LEFT 0x00008000 |
| #define | CH_TOP_BACK_CENTER 0x00010000 |
| #define | CH_TOP_BACK_RIGHT 0x00020000 |
| #define | CH_STEREO_LEFT 0x20000000 |
| Stereo downmix. | |
| #define | CH_STEREO_RIGHT 0x40000000 |
| See CH_STEREO_LEFT. | |
| #define | CH_LAYOUT_NATIVE 0x8000000000000000LL |
| Channel mask value used for AVCodecContext.request_channel_layout to indicate that the user requests the channel order of the decoder output to be the native codec channel order. | |
| #define | CH_LAYOUT_MONO (CH_FRONT_CENTER) |
| #define | CH_LAYOUT_STEREO (CH_FRONT_LEFT|CH_FRONT_RIGHT) |
| #define | CH_LAYOUT_2_1 (CH_LAYOUT_STEREO|CH_BACK_CENTER) |
| #define | CH_LAYOUT_SURROUND (CH_LAYOUT_STEREO|CH_FRONT_CENTER) |
| #define | CH_LAYOUT_4POINT0 (CH_LAYOUT_SURROUND|CH_BACK_CENTER) |
| #define | CH_LAYOUT_2_2 (CH_LAYOUT_STEREO|CH_SIDE_LEFT|CH_SIDE_RIGHT) |
| #define | CH_LAYOUT_QUAD (CH_LAYOUT_STEREO|CH_BACK_LEFT|CH_BACK_RIGHT) |
| #define | CH_LAYOUT_5POINT0 (CH_LAYOUT_SURROUND|CH_SIDE_LEFT|CH_SIDE_RIGHT) |
| #define | CH_LAYOUT_5POINT1 (CH_LAYOUT_5POINT0|CH_LOW_FREQUENCY) |
| #define | CH_LAYOUT_5POINT0_BACK (CH_LAYOUT_SURROUND|CH_BACK_LEFT|CH_BACK_RIGHT) |
| #define | CH_LAYOUT_5POINT1_BACK (CH_LAYOUT_5POINT0_BACK|CH_LOW_FREQUENCY) |
| #define | CH_LAYOUT_7POINT0 (CH_LAYOUT_5POINT0|CH_BACK_LEFT|CH_BACK_RIGHT) |
| #define | CH_LAYOUT_7POINT1 (CH_LAYOUT_5POINT1|CH_BACK_LEFT|CH_BACK_RIGHT) |
| #define | CH_LAYOUT_7POINT1_WIDE |
| #define | CH_LAYOUT_STEREO_DOWNMIX (CH_STEREO_LEFT|CH_STEREO_RIGHT) |
| #define | AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 |
| #define | FF_INPUT_BUFFER_PADDING_SIZE 8 |
| Required number of additionally allocated bytes at the end of the input bitstream for decoding. | |
| #define | FF_MIN_BUFFER_SIZE 16384 |
| minimum encoding buffer size Used to avoid some checks during header writing. | |
| #define | FF_MAX_B_FRAMES 16 |
| #define | CODEC_FLAG_QSCALE 0x0002 |
| Use fixed qscale. | |
| #define | CODEC_FLAG_4MV 0x0004 |
| 4 MV per MB allowed / advanced prediction for H.263. | |
| #define | CODEC_FLAG_QPEL 0x0010 |
| Use qpel MC. | |
| #define | CODEC_FLAG_GMC 0x0020 |
| Use GMC. | |
| #define | CODEC_FLAG_MV0 0x0040 |
| Always try a MB with MV=<0,0>. | |
| #define | CODEC_FLAG_PART 0x0080 |
| Use data partitioning. | |
| #define | CODEC_FLAG_INPUT_PRESERVED 0x0100 |
| The parent program guarantees that the input for B-frames containing streams is not written to for at least s->max_b_frames+1 frames, if this is not set the input will be copied. | |
| #define | CODEC_FLAG_PASS1 0x0200 |
| Use internal 2pass ratecontrol in first pass mode. | |
| #define | CODEC_FLAG_PASS2 0x0400 |
| Use internal 2pass ratecontrol in second pass mode. | |
| #define | CODEC_FLAG_EXTERN_HUFF 0x1000 |
| Use external Huffman table (for MJPEG). | |
| #define | CODEC_FLAG_GRAY 0x2000 |
| Only decode/encode grayscale. | |
| #define | CODEC_FLAG_EMU_EDGE 0x4000 |
| Don't draw edges. | |
| #define | CODEC_FLAG_PSNR 0x8000 |
| error[?] variables will be set during encoding. | |
| #define | CODEC_FLAG_TRUNCATED 0x00010000 |
| #define | CODEC_FLAG_NORMALIZE_AQP 0x00020000 |
| Normalize adaptive quantization. | |
| #define | CODEC_FLAG_INTERLACED_DCT 0x00040000 |
| Use interlaced DCT. | |
| #define | CODEC_FLAG_LOW_DELAY 0x00080000 |
| Force low delay. | |
| #define | CODEC_FLAG_ALT_SCAN 0x00100000 |
| Use alternate scan. | |
| #define | CODEC_FLAG_GLOBAL_HEADER 0x00400000 |
| Place global headers in extradata instead of every keyframe. | |
| #define | CODEC_FLAG_BITEXACT 0x00800000 |
| Use only bitexact stuff (except (I)DCT). | |
| #define | CODEC_FLAG_AC_PRED 0x01000000 |
| H.263 advanced intra coding / MPEG-4 AC prediction. | |
| #define | CODEC_FLAG_H263P_UMV 0x02000000 |
| unlimited motion vector | |
| #define | CODEC_FLAG_CBP_RD 0x04000000 |
| Use rate distortion optimization for cbp. | |
| #define | CODEC_FLAG_QP_RD 0x08000000 |
| Use rate distortion optimization for qp selectioon. | |
| #define | CODEC_FLAG_H263P_AIV 0x00000008 |
| H.263 alternative inter VLC. | |
| #define | CODEC_FLAG_OBMC 0x00000001 |
| OBMC. | |
| #define | CODEC_FLAG_LOOP_FILTER 0x00000800 |
| loop filter | |
| #define | CODEC_FLAG_H263P_SLICE_STRUCT 0x10000000 |
| #define | CODEC_FLAG_INTERLACED_ME 0x20000000 |
| interlaced motion estimation | |
| #define | CODEC_FLAG_SVCD_SCAN_OFFSET 0x40000000 |
| Will reserve space for SVCD scan offset user data. | |
| #define | CODEC_FLAG_CLOSED_GOP 0x80000000 |
| #define | CODEC_FLAG2_FAST 0x00000001 |
| Allow non spec compliant speedup tricks. | |
| #define | CODEC_FLAG2_STRICT_GOP 0x00000002 |
| Strictly enforce GOP size. | |
| #define | CODEC_FLAG2_NO_OUTPUT 0x00000004 |
| Skip bitstream encoding. | |
| #define | CODEC_FLAG2_LOCAL_HEADER 0x00000008 |
| Place global headers at every keyframe instead of in extradata. | |
| #define | CODEC_FLAG2_BPYRAMID 0x00000010 |
| H.264 allow B-frames to be used as references. | |
| #define | CODEC_FLAG2_WPRED 0x00000020 |
| H.264 weighted biprediction for B-frames. | |
| #define | CODEC_FLAG2_MIXED_REFS 0x00000040 |
| H.264 one reference per partition, as opposed to one reference per macroblock. | |
| #define | CODEC_FLAG2_8X8DCT 0x00000080 |
| H.264 high profile 8x8 transform. | |
| #define | CODEC_FLAG2_FASTPSKIP 0x00000100 |
| H.264 fast pskip. | |
| #define | CODEC_FLAG2_AUD 0x00000200 |
| H.264 access unit delimiters. | |
| #define | CODEC_FLAG2_BRDO 0x00000400 |
| B-frame rate-distortion optimization. | |
| #define | CODEC_FLAG2_INTRA_VLC 0x00000800 |
| Use MPEG-2 intra VLC table. | |
| #define | CODEC_FLAG2_MEMC_ONLY 0x00001000 |
| Only do ME/MC (I frames -> ref, P frame -> ME+MC). | |
| #define | CODEC_FLAG2_DROP_FRAME_TIMECODE 0x00002000 |
| timecode is in drop frame format. | |
| #define | CODEC_FLAG2_SKIP_RD 0x00004000 |
| RD optimal MB level residual skipping. | |
| #define | CODEC_FLAG2_CHUNKS 0x00008000 |
| Input bitstream might be truncated at a packet boundaries instead of only at frame boundaries. | |
| #define | CODEC_FLAG2_NON_LINEAR_QUANT 0x00010000 |
| Use MPEG-2 nonlinear quantizer. | |
| #define | CODEC_FLAG2_BIT_RESERVOIR 0x00020000 |
| Use a bit reservoir when encoding if possible. | |
| #define | CODEC_FLAG2_MBTREE 0x00040000 |
| Use macroblock tree ratecontrol (x264 only). | |
| #define | CODEC_CAP_DRAW_HORIZ_BAND 0x0001 |
| Decoder can use draw_horiz_band callback. | |
| #define | CODEC_CAP_DR1 0x0002 |
| Codec uses get_buffer() for allocating buffers. | |
| #define | CODEC_CAP_PARSE_ONLY 0x0004 |
| #define | CODEC_CAP_TRUNCATED 0x0008 |
| #define | CODEC_CAP_HWACCEL 0x0010 |
| #define | CODEC_CAP_DELAY 0x0020 |
| Codec has a nonzero delay and needs to be fed with NULL at the end to get the delayed data. | |
| #define | CODEC_CAP_SMALL_LAST_FRAME 0x0040 |
| Codec can be fed a final frame with a smaller size. | |
| #define | CODEC_CAP_HWACCEL_VDPAU 0x0080 |
| Codec can export data for HW decoding (VDPAU). | |
| #define | CODEC_CAP_SUBFRAMES 0x0100 |
| Codec can output multiple frames per AVPacket Normally demuxers return one frame at a time, demuxers which do not do are connected to a parser to split what they return into proper frames. | |
| #define | MB_TYPE_INTRA4x4 0x0001 |
| #define | MB_TYPE_INTRA16x16 0x0002 |
| #define | MB_TYPE_INTRA_PCM 0x0004 |
| #define | MB_TYPE_16x16 0x0008 |
| #define | MB_TYPE_16x8 0x0010 |
| #define | MB_TYPE_8x16 0x0020 |
| #define | MB_TYPE_8x8 0x0040 |
| #define | MB_TYPE_INTERLACED 0x0080 |
| #define | MB_TYPE_DIRECT2 0x0100 |
| #define | MB_TYPE_ACPRED 0x0200 |
| #define | MB_TYPE_GMC 0x0400 |
| #define | MB_TYPE_SKIP 0x0800 |
| #define | MB_TYPE_P0L0 0x1000 |
| #define | MB_TYPE_P1L0 0x2000 |
| #define | MB_TYPE_P0L1 0x4000 |
| #define | MB_TYPE_P1L1 0x8000 |
| #define | MB_TYPE_L0 (MB_TYPE_P0L0 | MB_TYPE_P1L0) |
| #define | MB_TYPE_L1 (MB_TYPE_P0L1 | MB_TYPE_P1L1) |
| #define | MB_TYPE_L0L1 (MB_TYPE_L0 | MB_TYPE_L1) |
| #define | MB_TYPE_QUANT 0x00010000 |
| #define | MB_TYPE_CBP 0x00020000 |
| #define | FF_COMMON_FRAME |
| #define | FF_QSCALE_TYPE_MPEG1 0 |
| #define | FF_QSCALE_TYPE_MPEG2 1 |
| #define | FF_QSCALE_TYPE_H264 2 |
| #define | FF_QSCALE_TYPE_VP56 3 |
| #define | FF_BUFFER_TYPE_INTERNAL 1 |
| #define | FF_BUFFER_TYPE_USER 2 |
| direct rendering buffers (image is (de)allocated by user) | |
| #define | FF_BUFFER_TYPE_SHARED 4 |
| Buffer from somewhere else; don't deallocate image (data/base), all other tables are not shared. | |
| #define | FF_BUFFER_TYPE_COPY 8 |
| Just a (modified) copy of some other buffer, don't deallocate anything. | |
| #define | FF_I_TYPE 1 |
| Intra. | |
| #define | FF_P_TYPE 2 |
| Predicted. | |
| #define | FF_B_TYPE 3 |
| Bi-dir predicted. | |
| #define | FF_S_TYPE 4 |
| S(GMC)-VOP MPEG4. | |
| #define | FF_SI_TYPE 5 |
| Switching Intra. | |
| #define | FF_SP_TYPE 6 |
| Switching Predicted. | |
| #define | FF_BI_TYPE 7 |
| #define | FF_BUFFER_HINTS_VALID 0x01 |
| #define | FF_BUFFER_HINTS_READABLE 0x02 |
| #define | FF_BUFFER_HINTS_PRESERVE 0x04 |
| #define | FF_BUFFER_HINTS_REUSABLE 0x08 |
| #define | AV_PKT_FLAG_KEY 0x0001 |
| #define | PKT_FLAG_KEY AV_PKT_FLAG_KEY |
| #define | FF_ASPECT_EXTENDED 15 |
| #define | FF_RC_STRATEGY_XVID 1 |
| #define | FF_BUG_AUTODETECT 1 |
| autodetection | |
| #define | FF_BUG_OLD_MSMPEG4 2 |
| #define | FF_BUG_XVID_ILACE 4 |
| #define | FF_BUG_UMP4 8 |
| #define | FF_BUG_NO_PADDING 16 |
| #define | FF_BUG_AMV 32 |
| #define | FF_BUG_AC_VLC 0 |
| Will be removed, libavcodec can now handle these non-compliant files by default. | |
| #define | FF_BUG_QPEL_CHROMA 64 |
| #define | FF_BUG_STD_QPEL 128 |
| #define | FF_BUG_QPEL_CHROMA2 256 |
| #define | FF_BUG_DIRECT_BLOCKSIZE 512 |
| #define | FF_BUG_EDGE 1024 |
| #define | FF_BUG_HPEL_CHROMA 2048 |
| #define | FF_BUG_DC_CLIP 4096 |
| #define | FF_BUG_MS 8192 |
| Work around various bugs in Microsoft's broken decoders. | |
| #define | FF_COMPLIANCE_VERY_STRICT 2 |
| Strictly conform to a older more strict version of the spec or reference software. | |
| #define | FF_COMPLIANCE_STRICT 1 |
| Strictly conform to all the things in the spec no matter what consequences. | |
| #define | FF_COMPLIANCE_NORMAL 0 |
| #define | FF_COMPLIANCE_INOFFICIAL -1 |
| Allow inofficial extensions. | |
| #define | FF_COMPLIANCE_EXPERIMENTAL -2 |
| Allow nonstandardized experimental things. | |
| #define | FF_ER_CAREFUL 1 |
| #define | FF_ER_COMPLIANT 2 |
| #define | FF_ER_AGGRESSIVE 3 |
| #define | FF_ER_VERY_AGGRESSIVE 4 |
| #define | FF_DCT_AUTO 0 |
| #define | FF_DCT_FASTINT 1 |
| #define | FF_DCT_INT 2 |
| #define | FF_DCT_MMX 3 |
| #define | FF_DCT_MLIB 4 |
| #define | FF_DCT_ALTIVEC 5 |
| #define | FF_DCT_FAAN 6 |
| #define | FF_IDCT_AUTO 0 |
| #define | FF_IDCT_INT 1 |
| #define | FF_IDCT_SIMPLE 2 |
| #define | FF_IDCT_SIMPLEMMX 3 |
| #define | FF_IDCT_LIBMPEG2MMX 4 |
| #define | FF_IDCT_PS2 5 |
| #define | FF_IDCT_MLIB 6 |
| #define | FF_IDCT_ARM 7 |
| #define | FF_IDCT_ALTIVEC 8 |
| #define | FF_IDCT_SH4 9 |
| #define | FF_IDCT_SIMPLEARM 10 |
| #define | FF_IDCT_H264 11 |
| #define | FF_IDCT_VP3 12 |
| #define | FF_IDCT_IPP 13 |
| #define | FF_IDCT_XVIDMMX 14 |
| #define | FF_IDCT_CAVS 15 |
| #define | FF_IDCT_SIMPLEARMV5TE 16 |
| #define | FF_IDCT_SIMPLEARMV6 17 |
| #define | FF_IDCT_SIMPLEVIS 18 |
| #define | FF_IDCT_WMV2 19 |
| #define | FF_IDCT_FAAN 20 |
| #define | FF_IDCT_EA 21 |
| #define | FF_IDCT_SIMPLENEON 22 |
| #define | FF_IDCT_SIMPLEALPHA 23 |
| #define | FF_EC_GUESS_MVS 1 |
| #define | FF_EC_DEBLOCK 2 |
| #define | FF_MM_FORCE 0x80000000 |
| #define | FF_MM_MMX 0x0001 |
| standard MMX | |
| #define | FF_MM_3DNOW 0x0004 |
| AMD 3DNOW. | |
| #define | FF_MM_MMXEXT 0x0002 |
| SSE integer functions or AMD MMX ext. | |
| #define | FF_MM_MMX2 0x0002 |
| SSE integer functions or AMD MMX ext. | |
| #define | FF_MM_SSE 0x0008 |
| SSE functions. | |
| #define | FF_MM_SSE2 0x0010 |
| PIV SSE2 functions. | |
| #define | FF_MM_3DNOWEXT 0x0020 |
| AMD 3DNowExt. | |
| #define | FF_MM_SSE3 0x0040 |
| Prescott SSE3 functions. | |
| #define | FF_MM_SSSE3 0x0080 |
| Conroe SSSE3 functions. | |
| #define | FF_MM_SSE4 0x0100 |
| Penryn SSE4.1 functions. | |
| #define | FF_MM_SSE42 0x0200 |
| Nehalem SSE4.2 functions. | |
| #define | FF_MM_IWMMXT 0x0100 |
| XScale IWMMXT. | |
| #define | FF_MM_ALTIVEC 0x0001 |
| standard AltiVec | |
| #define | FF_PRED_LEFT 0 |
| #define | FF_PRED_PLANE 1 |
| #define | FF_PRED_MEDIAN 2 |
| #define | FF_DEBUG_PICT_INFO 1 |
| #define | FF_DEBUG_RC 2 |
| #define | FF_DEBUG_BITSTREAM 4 |
| #define | FF_DEBUG_MB_TYPE 8 |
| #define | FF_DEBUG_QP 16 |
| #define | FF_DEBUG_MV 32 |
| #define | FF_DEBUG_DCT_COEFF 0x00000040 |
| #define | FF_DEBUG_SKIP 0x00000080 |
| #define | FF_DEBUG_STARTCODE 0x00000100 |
| #define | FF_DEBUG_PTS 0x00000200 |
| #define | FF_DEBUG_ER 0x00000400 |
| #define | FF_DEBUG_MMCO 0x00000800 |
| #define | FF_DEBUG_BUGS 0x00001000 |
| #define | FF_DEBUG_VIS_QP 0x00002000 |
| #define | FF_DEBUG_VIS_MB_TYPE 0x00004000 |
| #define | FF_DEBUG_BUFFERS 0x00008000 |
| #define | FF_DEBUG_VIS_MV_P_FOR 0x00000001 |
| #define | FF_DEBUG_VIS_MV_B_FOR 0x00000002 |
| #define | FF_DEBUG_VIS_MV_B_BACK 0x00000004 |
| #define | FF_CMP_SAD 0 |
| #define | FF_CMP_SSE 1 |
| #define | FF_CMP_SATD 2 |
| #define | FF_CMP_DCT 3 |
| #define | FF_CMP_PSNR 4 |
| #define | FF_CMP_BIT 5 |
| #define | FF_CMP_RD 6 |
| #define | FF_CMP_ZERO 7 |
| #define | FF_CMP_VSAD 8 |
| #define | FF_CMP_VSSE 9 |
| #define | FF_CMP_NSSE 10 |
| #define | FF_CMP_W53 11 |
| #define | FF_CMP_W97 12 |
| #define | FF_CMP_DCTMAX 13 |
| #define | FF_CMP_DCT264 14 |
| #define | FF_CMP_CHROMA 256 |
| #define | FF_DTG_AFD_SAME 8 |
| #define | FF_DTG_AFD_4_3 9 |
| #define | FF_DTG_AFD_16_9 10 |
| #define | FF_DTG_AFD_14_9 11 |
| #define | FF_DTG_AFD_4_3_SP_14_9 13 |
| #define | FF_DTG_AFD_16_9_SP_14_9 14 |
| #define | FF_DTG_AFD_SP_4_3 15 |
| #define | FF_DEFAULT_QUANT_BIAS 999999 |
| #define | FF_LAMBDA_SHIFT 7 |
| #define | FF_LAMBDA_SCALE (1<<FF_LAMBDA_SHIFT) |
| #define | FF_QP2LAMBDA 118 |
| factor to convert from H.263 QP to lambda | |
| #define | FF_LAMBDA_MAX (256*128-1) |
| #define | FF_QUALITY_SCALE FF_LAMBDA_SCALE |
| #define | FF_CODER_TYPE_VLC 0 |
| #define | FF_CODER_TYPE_AC 1 |
| #define | FF_CODER_TYPE_RAW 2 |
| #define | FF_CODER_TYPE_RLE 3 |
| #define | FF_CODER_TYPE_DEFLATE 4 |
| #define | SLICE_FLAG_CODED_ORDER 0x0001 |
| draw_horiz_band() is called in coded order instead of display | |
| #define | SLICE_FLAG_ALLOW_FIELD 0x0002 |
| allow draw_horiz_band() with field slices (MPEG2 field pics) | |
| #define | SLICE_FLAG_ALLOW_PLANE 0x0004 |
| allow draw_horiz_band() with 1 component at a time (SVQ1) | |
| #define | FF_MB_DECISION_SIMPLE 0 |
| uses mb_cmp | |
| #define | FF_MB_DECISION_BITS 1 |
| chooses the one which needs the fewest bits | |
| #define | FF_MB_DECISION_RD 2 |
| rate distortion | |
| #define | FF_AA_AUTO 0 |
| #define | FF_AA_FASTINT 1 |
| #define | FF_AA_INT 2 |
| #define | FF_AA_FLOAT 3 |
| #define | FF_PROFILE_UNKNOWN -99 |
| #define | FF_PROFILE_AAC_MAIN 0 |
| #define | FF_PROFILE_AAC_LOW 1 |
| #define | FF_PROFILE_AAC_SSR 2 |
| #define | FF_PROFILE_AAC_LTP 3 |
| #define | FF_PROFILE_H264_BASELINE 66 |
| #define | FF_PROFILE_H264_MAIN 77 |
| #define | FF_PROFILE_H264_EXTENDED 88 |
| #define | FF_PROFILE_H264_HIGH 100 |
| #define | FF_PROFILE_H264_HIGH_10 110 |
| #define | FF_PROFILE_H264_HIGH_422 122 |
| #define | FF_PROFILE_H264_HIGH_444 244 |
| #define | FF_PROFILE_H264_CAVLC_444 44 |
| #define | FF_LEVEL_UNKNOWN -99 |
| #define | X264_PART_I4X4 0x001 |
| #define | X264_PART_I8X8 0x002 |
| #define | X264_PART_P8X8 0x010 |
| #define | X264_PART_P4X4 0x020 |
| #define | X264_PART_B8X8 0x100 |
| #define | FF_COMPRESSION_DEFAULT -1 |
| #define | AVPALETTE_SIZE 1024 |
| AVPaletteControl This structure defines a method for communicating palette changes between and demuxer and a decoder. | |
| #define | AVPALETTE_COUNT 256 |
| #define | FF_LOSS_RESOLUTION 0x0001 |
| loss due to resolution change | |
| #define | FF_LOSS_DEPTH 0x0002 |
| loss due to color depth change | |
| #define | FF_LOSS_COLORSPACE 0x0004 |
| loss due to color space conversion | |
| #define | FF_LOSS_ALPHA 0x0008 |
| loss of alpha bits | |
| #define | FF_LOSS_COLORQUANT 0x0010 |
| loss due to color quantization | |
| #define | FF_LOSS_CHROMA 0x0020 |
| loss of chroma (e.g. | |
| #define | FF_ALPHA_TRANSP 0x0001 |
| #define | FF_ALPHA_SEMI_TRANSP 0x0002 |
| #define | AV_PARSER_PTS_NB 4 |
| #define | PARSER_FLAG_COMPLETE_FRAMES 0x0001 |
| #define | AVERROR(e) (e) |
| #define | AVUNERROR(e) (e) |
| #define | AVERROR_UNKNOWN AVERROR(EINVAL) |
| unknown error | |
| #define | AVERROR_IO AVERROR(EIO) |
| I/O error. | |
| #define | AVERROR_NUMEXPECTED AVERROR(EDOM) |
| Number syntax expected in filename. | |
| #define | AVERROR_INVALIDDATA AVERROR(EINVAL) |
| invalid data found | |
| #define | AVERROR_NOMEM AVERROR(ENOMEM) |
| not enough memory | |
| #define | AVERROR_NOFMT AVERROR(EILSEQ) |
| unknown format | |
| #define | AVERROR_NOTSUPP AVERROR(ENOSYS) |
| Operation not supported. | |
| #define | AVERROR_NOENT AVERROR(ENOENT) |
| No such file or directory. | |
| #define | AVERROR_EOF AVERROR(EPIPE) |
| End of file. | |
| #define | AVERROR_PATCHWELCOME -MKTAG('P','A','W','E') |
| Not yet implemented in FFmpeg. | |
Typedefs | |
| typedef struct AVPaletteControl | attribute_deprecated |
| typedef struct ReSampleContext | ReSampleContext |
Enumerations | |
| enum | CodecID { CODEC_ID_NONE, CODEC_ID_MPEG1VIDEO, CODEC_ID_MPEG2VIDEO, CODEC_ID_MPEG2VIDEO_XVMC, CODEC_ID_H261, CODEC_ID_H263, CODEC_ID_RV10, CODEC_ID_RV20, CODEC_ID_MJPEG, CODEC_ID_MJPEGB, CODEC_ID_LJPEG, CODEC_ID_SP5X, CODEC_ID_JPEGLS, CODEC_ID_MPEG4, CODEC_ID_RAWVIDEO, CODEC_ID_MSMPEG4V1, CODEC_ID_MSMPEG4V2, CODEC_ID_MSMPEG4V3, CODEC_ID_WMV1, CODEC_ID_WMV2, CODEC_ID_H263P, CODEC_ID_H263I, CODEC_ID_FLV1, CODEC_ID_SVQ1, CODEC_ID_SVQ3, CODEC_ID_DVVIDEO, CODEC_ID_HUFFYUV, CODEC_ID_CYUV, CODEC_ID_H264, CODEC_ID_INDEO3, CODEC_ID_VP3, CODEC_ID_THEORA, CODEC_ID_ASV1, CODEC_ID_ASV2, CODEC_ID_FFV1, CODEC_ID_4XM, CODEC_ID_VCR1, CODEC_ID_CLJR, CODEC_ID_MDEC, CODEC_ID_ROQ, CODEC_ID_INTERPLAY_VIDEO, CODEC_ID_XAN_WC3, CODEC_ID_XAN_WC4, CODEC_ID_RPZA, CODEC_ID_CINEPAK, CODEC_ID_WS_VQA, CODEC_ID_MSRLE, CODEC_ID_MSVIDEO1, CODEC_ID_IDCIN, CODEC_ID_8BPS, CODEC_ID_SMC, CODEC_ID_FLIC, CODEC_ID_TRUEMOTION1, CODEC_ID_VMDVIDEO, CODEC_ID_MSZH, CODEC_ID_ZLIB, CODEC_ID_QTRLE, CODEC_ID_SNOW, CODEC_ID_TSCC, CODEC_ID_ULTI, CODEC_ID_QDRAW, CODEC_ID_VIXL, CODEC_ID_QPEG, CODEC_ID_XVID, CODEC_ID_PNG, CODEC_ID_PPM, CODEC_ID_PBM, CODEC_ID_PGM, CODEC_ID_PGMYUV, CODEC_ID_PAM, CODEC_ID_FFVHUFF, CODEC_ID_RV30, CODEC_ID_RV40, CODEC_ID_VC1, CODEC_ID_WMV3, CODEC_ID_LOCO, CODEC_ID_WNV1, CODEC_ID_AASC, CODEC_ID_INDEO2, CODEC_ID_FRAPS, CODEC_ID_TRUEMOTION2, CODEC_ID_BMP, CODEC_ID_CSCD, CODEC_ID_MMVIDEO, CODEC_ID_ZMBV, CODEC_ID_AVS, CODEC_ID_SMACKVIDEO, CODEC_ID_NUV, CODEC_ID_KMVC, CODEC_ID_FLASHSV, CODEC_ID_CAVS, CODEC_ID_JPEG2000, CODEC_ID_VMNC, CODEC_ID_VP5, CODEC_ID_VP6, CODEC_ID_VP6F, CODEC_ID_TARGA, CODEC_ID_DSICINVIDEO, CODEC_ID_TIERTEXSEQVIDEO, CODEC_ID_TIFF, CODEC_ID_GIF, CODEC_ID_FFH264, CODEC_ID_DXA, CODEC_ID_DNXHD, CODEC_ID_THP, CODEC_ID_SGI, CODEC_ID_C93, CODEC_ID_BETHSOFTVID, CODEC_ID_PTX, CODEC_ID_TXD, CODEC_ID_VP6A, CODEC_ID_AMV, CODEC_ID_VB, CODEC_ID_PCX, CODEC_ID_SUNRAST, CODEC_ID_INDEO4, CODEC_ID_INDEO5, CODEC_ID_MIMIC, CODEC_ID_RL2, CODEC_ID_8SVX_EXP, CODEC_ID_8SVX_FIB, CODEC_ID_ESCAPE124, CODEC_ID_DIRAC, CODEC_ID_BFI, CODEC_ID_CMV, CODEC_ID_MOTIONPIXELS, CODEC_ID_TGV, CODEC_ID_TGQ, CODEC_ID_TQI, CODEC_ID_AURA, CODEC_ID_AURA2, CODEC_ID_V210X, CODEC_ID_TMV, CODEC_ID_V210, CODEC_ID_DPX, CODEC_ID_MAD, CODEC_ID_FRWU, CODEC_ID_FLASHSV2, CODEC_ID_CDGRAPHICS, CODEC_ID_R210, CODEC_ID_ANM, CODEC_ID_BINKVIDEO, CODEC_ID_IFF_ILBM, CODEC_ID_IFF_BYTERUN1, CODEC_ID_PCM_S16LE = 0x10000, CODEC_ID_PCM_S16BE, CODEC_ID_PCM_U16LE, CODEC_ID_PCM_U16BE, CODEC_ID_PCM_S8, CODEC_ID_PCM_U8, CODEC_ID_PCM_MULAW, CODEC_ID_PCM_ALAW, CODEC_ID_PCM_S32LE, CODEC_ID_PCM_S32BE, CODEC_ID_PCM_U32LE, CODEC_ID_PCM_U32BE, CODEC_ID_PCM_S24LE, CODEC_ID_PCM_S24BE, CODEC_ID_PCM_U24LE, CODEC_ID_PCM_U24BE, CODEC_ID_PCM_S24DAUD, CODEC_ID_PCM_ZORK, CODEC_ID_PCM_S16LE_PLANAR, CODEC_ID_PCM_DVD, CODEC_ID_PCM_F32BE, CODEC_ID_PCM_F32LE, CODEC_ID_PCM_F64BE, CODEC_ID_PCM_F64LE, CODEC_ID_PCM_BLURAY, CODEC_ID_ADPCM_IMA_QT = 0x11000, CODEC_ID_ADPCM_IMA_WAV, CODEC_ID_ADPCM_IMA_DK3, CODEC_ID_ADPCM_IMA_DK4, CODEC_ID_ADPCM_IMA_WS, CODEC_ID_ADPCM_IMA_SMJPEG, CODEC_ID_ADPCM_MS, CODEC_ID_ADPCM_4XM, CODEC_ID_ADPCM_XA, CODEC_ID_ADPCM_ADX, CODEC_ID_ADPCM_EA, CODEC_ID_ADPCM_G726, CODEC_ID_ADPCM_CT, CODEC_ID_ADPCM_SWF, CODEC_ID_ADPCM_YAMAHA, CODEC_ID_ADPCM_SBPRO_4, CODEC_ID_ADPCM_SBPRO_3, CODEC_ID_ADPCM_SBPRO_2, CODEC_ID_ADPCM_THP, CODEC_ID_ADPCM_IMA_AMV, CODEC_ID_ADPCM_EA_R1, CODEC_ID_ADPCM_EA_R3, CODEC_ID_ADPCM_EA_R2, CODEC_ID_ADPCM_IMA_EA_SEAD, CODEC_ID_ADPCM_IMA_EA_EACS, CODEC_ID_ADPCM_EA_XAS, CODEC_ID_ADPCM_EA_MAXIS_XA, CODEC_ID_ADPCM_IMA_ISS, CODEC_ID_AMR_NB = 0x12000, CODEC_ID_AMR_WB, CODEC_ID_RA_144 = 0x13000, CODEC_ID_RA_288, CODEC_ID_ROQ_DPCM = 0x14000, CODEC_ID_INTERPLAY_DPCM, CODEC_ID_XAN_DPCM, CODEC_ID_SOL_DPCM, CODEC_ID_MP2 = 0x15000, CODEC_ID_MP3, CODEC_ID_AAC, CODEC_ID_AC3, CODEC_ID_DTS, CODEC_ID_VORBIS, CODEC_ID_DVAUDIO, CODEC_ID_WMAV1, CODEC_ID_WMAV2, CODEC_ID_MACE3, CODEC_ID_MACE6, CODEC_ID_VMDAUDIO, CODEC_ID_SONIC, CODEC_ID_SONIC_LS, CODEC_ID_FLAC, CODEC_ID_MP3ADU, CODEC_ID_MP3ON4, CODEC_ID_SHORTEN, CODEC_ID_ALAC, CODEC_ID_WESTWOOD_SND1, CODEC_ID_GSM, CODEC_ID_QDM2, CODEC_ID_COOK, CODEC_ID_TRUESPEECH, CODEC_ID_TTA, CODEC_ID_SMACKAUDIO, CODEC_ID_QCELP, CODEC_ID_WAVPACK, CODEC_ID_DSICINAUDIO, CODEC_ID_IMC, CODEC_ID_MUSEPACK7, CODEC_ID_MLP, CODEC_ID_GSM_MS, CODEC_ID_ATRAC3, CODEC_ID_VOXWARE, CODEC_ID_APE, CODEC_ID_NELLYMOSER, CODEC_ID_MUSEPACK8, CODEC_ID_SPEEX, CODEC_ID_WMAVOICE, CODEC_ID_WMAPRO, CODEC_ID_WMALOSSLESS, CODEC_ID_ATRAC3P, CODEC_ID_EAC3, CODEC_ID_SIPR, CODEC_ID_MP1, CODEC_ID_TWINVQ, CODEC_ID_TRUEHD, CODEC_ID_MP4ALS, CODEC_ID_ATRAC1, CODEC_ID_BINKAUDIO_RDFT, CODEC_ID_BINKAUDIO_DCT, CODEC_ID_DVD_SUBTITLE = 0x17000, CODEC_ID_DVB_SUBTITLE, CODEC_ID_TEXT, CODEC_ID_XSUB, CODEC_ID_SSA, CODEC_ID_MOV_TEXT, CODEC_ID_HDMV_PGS_SUBTITLE, CODEC_ID_DVB_TELETEXT, CODEC_ID_TTF = 0x18000, CODEC_ID_PROBE = 0x19000, CODEC_ID_MPEG2TS = 0x20000 } |
| Identifies the syntax and semantics of the bitstream. More... | |
| enum | CodecType { CODEC_TYPE_UNKNOWN = -1, CODEC_TYPE_VIDEO, CODEC_TYPE_AUDIO, CODEC_TYPE_DATA, CODEC_TYPE_SUBTITLE, CODEC_TYPE_ATTACHMENT, CODEC_TYPE_NB } |
| enum | SampleFormat { SAMPLE_FMT_NONE = -1, SAMPLE_FMT_U8, SAMPLE_FMT_S16, SAMPLE_FMT_S32, SAMPLE_FMT_FLT, SAMPLE_FMT_DBL, SAMPLE_FMT_NB } |
| all in native-endian format More... | |
| enum | Motion_Est_ID { ME_ZERO = 1, ME_FULL, ME_LOG, ME_PHODS, ME_EPZS, ME_X1, ME_HEX, ME_UMH, ME_ITER, ME_TESA } |
| motion estimation type. More... | |
| enum | AVDiscard { AVDISCARD_NONE = -16, AVDISCARD_DEFAULT = 0, AVDISCARD_NONREF = 8, AVDISCARD_BIDIR = 16, AVDISCARD_NONKEY = 32, AVDISCARD_ALL = 48 } |
| enum | AVColorPrimaries { AVCOL_PRI_BT709 = 1, AVCOL_PRI_UNSPECIFIED = 2, AVCOL_PRI_BT470M = 4, AVCOL_PRI_BT470BG = 5, AVCOL_PRI_SMPTE170M = 6, AVCOL_PRI_SMPTE240M = 7, AVCOL_PRI_FILM = 8, AVCOL_PRI_NB } |
| enum | AVColorTransferCharacteristic { AVCOL_TRC_BT709 = 1, AVCOL_TRC_UNSPECIFIED = 2, AVCOL_TRC_GAMMA22 = 4, AVCOL_TRC_GAMMA28 = 5, AVCOL_TRC_NB } |
| enum | AVColorSpace { AVCOL_SPC_RGB = 0, AVCOL_SPC_BT709 = 1, AVCOL_SPC_UNSPECIFIED = 2, AVCOL_SPC_FCC = 4, AVCOL_SPC_BT470BG = 5, AVCOL_SPC_SMPTE170M = 6, AVCOL_SPC_SMPTE240M = 7, AVCOL_SPC_NB } |
| enum | AVColorRange { AVCOL_RANGE_UNSPECIFIED = 0, AVCOL_RANGE_MPEG = 1, AVCOL_RANGE_JPEG = 2, AVCOL_RANGE_NB } |
| enum | AVChromaLocation { AVCHROMA_LOC_UNSPECIFIED = 0, AVCHROMA_LOC_LEFT = 1, AVCHROMA_LOC_CENTER = 2, AVCHROMA_LOC_TOPLEFT = 3, AVCHROMA_LOC_TOP = 4, AVCHROMA_LOC_BOTTOMLEFT = 5, AVCHROMA_LOC_BOTTOM = 6, AVCHROMA_LOC_NB } |
| X X 3 4 X X are luma samples, 1 2 1-6 are possible chroma positions X X 5 6 X 0 is undefined/unknown position. More... | |
| enum | AVSubtitleType { SUBTITLE_NONE, SUBTITLE_BITMAP, SUBTITLE_TEXT, SUBTITLE_ASS } |
| enum | AVLockOp { AV_LOCK_CREATE, AV_LOCK_OBTAIN, AV_LOCK_RELEASE, AV_LOCK_DESTROY } |
| Lock operation used by lockmgr. More... | |
Functions | |
| attribute_deprecated void | av_destruct_packet_nofree (AVPacket *pkt) |
| void | av_destruct_packet (AVPacket *pkt) |
| Default packet destructor. | |
| void | av_init_packet (AVPacket *pkt) |
| Initialize optional fields of a packet with default values. | |
| int | av_new_packet (AVPacket *pkt, int size) |
| Allocate the payload of a packet and initialize its fields with default values. | |
| void | av_shrink_packet (AVPacket *pkt, int size) |
| Reduce packet size, correctly zeroing padding. | |
| int | av_dup_packet (AVPacket *pkt) |
| void | av_free_packet (AVPacket *pkt) |
| Free a packet. | |
| attribute_deprecated ReSampleContext * | audio_resample_init (int output_channels, int input_channels, int output_rate, int input_rate) |
| ReSampleContext * | av_audio_resample_init (int output_channels, int input_channels, int output_rate, int input_rate, enum SampleFormat sample_fmt_out, enum SampleFormat sample_fmt_in, int filter_length, int log2_phase_count, int linear, double cutoff) |
| Initializes audio resampling context. | |
| int | audio_resample (ReSampleContext *s, short *output, short *input, int nb_samples) |
| void | audio_resample_close (ReSampleContext *s) |
| struct AVResampleContext * | av_resample_init (int out_rate, int in_rate, int filter_length, int log2_phase_count, int linear, double cutoff) |
| Initializes an audio resampler. | |
| int | av_resample (struct AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx) |
| resamples. | |
| void | av_resample_compensate (struct AVResampleContext *c, int sample_delta, int compensation_distance) |
| Compensates samplerate/timestamp drift. | |
| void | av_resample_close (struct AVResampleContext *c) |
| int | avpicture_alloc (AVPicture *picture, enum PixelFormat pix_fmt, int width, int height) |
| Allocate memory for a picture. | |
| void | avpicture_free (AVPicture *picture) |
| Free a picture previously allocated by avpicture_alloc(). | |
| int | avpicture_fill (AVPicture *picture, uint8_t *ptr, enum PixelFormat pix_fmt, int width, int height) |
| Fill in the AVPicture fields. | |
| int | avpicture_layout (const AVPicture *src, enum PixelFormat pix_fmt, int width, int height, unsigned char *dest, int dest_size) |
| int | avpicture_get_size (enum PixelFormat pix_fmt, int width, int height) |
| Calculate the size in bytes that a picture of the given width and height would occupy if stored in the given picture format. | |
| void | avcodec_get_chroma_sub_sample (enum PixelFormat pix_fmt, int *h_shift, int *v_shift) |
| const char * | avcodec_get_pix_fmt_name (enum PixelFormat pix_fmt) |
| void | avcodec_set_dimensions (AVCodecContext *s, int width, int height) |
| attribute_deprecated enum PixelFormat | avcodec_get_pix_fmt (const char *name) |
| Returns the pixel format corresponding to the name name. | |
| unsigned int | avcodec_pix_fmt_to_codec_tag (enum PixelFormat pix_fmt) |
| Returns a value representing the fourCC code associated to the pixel format pix_fmt, or 0 if no associated fourCC code can be found. | |
| int | avcodec_get_pix_fmt_loss (enum PixelFormat dst_pix_fmt, enum PixelFormat src_pix_fmt, int has_alpha) |
| Computes what kind of losses will occur when converting from one specific pixel format to another. | |
| enum PixelFormat | avcodec_find_best_pix_fmt (int64_t pix_fmt_mask, enum PixelFormat src_pix_fmt, int has_alpha, int *loss_ptr) |
| Finds the best pixel format to convert to given a certain source pixel format. | |
| void | avcodec_pix_fmt_string (char *buf, int buf_size, enum PixelFormat pix_fmt) |
| Print in buf the string corresponding to the pixel format with number pix_fmt, or an header if pix_fmt is negative. | |
| int | img_get_alpha_info (const AVPicture *src, enum PixelFormat pix_fmt, int width, int height) |
| Tell if an image really has transparent alpha values. | |
| int | avpicture_deinterlace (AVPicture *dst, const AVPicture *src, enum PixelFormat pix_fmt, int width, int height) |
| AVCodec * | av_codec_next (AVCodec *c) |
| If c is NULL, returns the first registered codec, if c is non-NULL, returns the next registered codec after c, or NULL if c is the last one. | |
| unsigned | avcodec_version (void) |
| Returns the LIBAVCODEC_VERSION_INT constant. | |
| const char * | avcodec_configuration (void) |
| Returns the libavcodec build-time configuration. | |
| const char * | avcodec_license (void) |
| Returns the libavcodec license. | |
| void | avcodec_init (void) |
| Initializes libavcodec. | |
| attribute_deprecated void | register_avcodec (AVCodec *codec) |
| void | avcodec_register (AVCodec *codec) |
| Register the codec codec and initialize libavcodec. | |
| AVCodec * | avcodec_find_encoder (enum CodecID id) |
| Finds a registered encoder with a matching codec ID. | |
| AVCodec * | avcodec_find_encoder_by_name (const char *name) |
| Finds a registered encoder with the specified name. | |
| AVCodec * | avcodec_find_decoder (enum CodecID id) |
| Finds a registered decoder with a matching codec ID. | |
| AVCodec * | avcodec_find_decoder_by_name (const char *name) |
| Finds a registered decoder with the specified name. | |
| void | avcodec_string (char *buf, int buf_size, AVCodecContext *enc, int encode) |
| void | avcodec_get_context_defaults (AVCodecContext *s) |
| Sets the fields of the given AVCodecContext to default values. | |
| void | avcodec_get_context_defaults2 (AVCodecContext *s, enum CodecType) |
| THIS FUNCTION IS NOT YET PART OF THE PUBLIC API! we WILL change its arguments and name a few times! | |
| AVCodecContext * | avcodec_alloc_context (void) |
| Allocates an AVCodecContext and sets its fields to default values. | |
| AVCodecContext * | avcodec_alloc_context2 (enum CodecType) |
| THIS FUNCTION IS NOT YET PART OF THE PUBLIC API! we WILL change its arguments and name a few times! | |
| void | avcodec_get_frame_defaults (AVFrame *pic) |
| Sets the fields of the given AVFrame to default values. | |
| AVFrame * | avcodec_alloc_frame (void) |
| Allocates an AVFrame and sets its fields to default values. | |
| int | avcodec_default_get_buffer (AVCodecContext *s, AVFrame *pic) |
| void | avcodec_default_release_buffer (AVCodecContext *s, AVFrame *pic) |
| int | avcodec_default_reget_buffer (AVCodecContext *s, AVFrame *pic) |
| void | avcodec_align_dimensions (AVCodecContext *s, int *width, int *height) |
| int | avcodec_check_dimensions (void *av_log_ctx, unsigned int w, unsigned int h) |
| Checks if the given dimension of a picture is valid, meaning that all bytes of the picture can be addressed with a signed int. | |
| enum PixelFormat | avcodec_default_get_format (struct AVCodecContext *s, const enum PixelFormat *fmt) |
| int | avcodec_thread_init (AVCodecContext *s, int thread_count) |
| void | avcodec_thread_free (AVCodecContext *s) |
| Free what has been allocated by avcodec_thread_init(). | |
| int | avcodec_thread_execute (AVCodecContext *s, int(*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size) |
| int | avcodec_default_execute (AVCodecContext *c, int(*func)(AVCodecContext *c2, void *arg2), void *arg, int *ret, int count, int size) |
| int | avcodec_default_execute2 (AVCodecContext *c, int(*func)(AVCodecContext *c2, void *arg2, int, int), void *arg, int *ret, int count) |
| int | avcodec_open (AVCodecContext *avctx, AVCodec *codec) |
| Initializes the AVCodecContext to use the given AVCodec. | |
| attribute_deprecated int | avcodec_decode_audio2 (AVCodecContext *avctx, int16_t *samples, int *frame_size_ptr, const uint8_t *buf, int buf_size) |
| Decodes an audio frame from buf into samples. | |
| int | avcodec_decode_audio3 (AVCodecContext *avctx, int16_t *samples, int *frame_size_ptr, AVPacket *avpkt) |
| Decodes the audio frame of size avpkt->size from avpkt->data into samples. | |
| attribute_deprecated int | avcodec_decode_video (AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, const uint8_t *buf, int buf_size) |
| Decodes a video frame from buf into picture. | |
| int | avcodec_decode_video2 (AVCodecContext *avctx, AVFrame *picture, int *got_picture_ptr, AVPacket *avpkt) |
| Decodes the video frame of size avpkt->size from avpkt->data into picture. | |
| attribute_deprecated int | avcodec_decode_subtitle (AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, const uint8_t *buf, int buf_size) |
| int | avcodec_decode_subtitle2 (AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, AVPacket *avpkt) |
| Decodes a subtitle message. | |
| int | avcodec_parse_frame (AVCodecContext *avctx, uint8_t **pdata, int *data_size_ptr, uint8_t *buf, int buf_size) |
| int | avcodec_encode_audio (AVCodecContext *avctx, uint8_t *buf, int buf_size, const short *samples) |
| Encodes an audio frame from samples into buf. | |
| int | avcodec_encode_video (AVCodecContext *avctx, uint8_t *buf, int buf_size, const AVFrame *pict) |
| Encodes a video frame from pict into buf. | |
| int | avcodec_encode_subtitle (AVCodecContext *avctx, uint8_t *buf, int buf_size, const AVSubtitle *sub) |
| int | avcodec_close (AVCodecContext *avctx) |
| void | avcodec_register_all (void) |
| Register all the codecs, parsers and bitstream filters which were enabled at configuration time. | |
| void | avcodec_flush_buffers (AVCodecContext *avctx) |
| Flush buffers, should be called when seeking or when switching to a different stream. | |
| void | avcodec_default_free_buffers (AVCodecContext *s) |
| char | av_get_pict_type_char (int pict_type) |
| Returns a single letter to describe the given picture type pict_type. | |
| int | av_get_bits_per_sample (enum CodecID codec_id) |
| Returns codec bits per sample. | |
| int | av_get_bits_per_sample_format (enum SampleFormat sample_fmt) |
| Returns sample format bits per sample. | |
| AVCodecParser * | av_parser_next (AVCodecParser *c) |
| void | av_register_codec_parser (AVCodecParser *parser) |
| AVCodecParserContext * | av_parser_init (int codec_id) |
| attribute_deprecated int | av_parser_parse (AVCodecParserContext *s, AVCodecContext *avctx, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int64_t pts, int64_t dts) |
| int | av_parser_parse2 (AVCodecParserContext *s, AVCodecContext *avctx, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int64_t pts, int64_t dts, int64_t pos) |
| Parse a packet. | |
| int | av_parser_change (AVCodecParserContext *s, AVCodecContext *avctx, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int keyframe) |
| void | av_parser_close (AVCodecParserContext *s) |
| void | av_register_bitstream_filter (AVBitStreamFilter *bsf) |
| AVBitStreamFilterContext * | av_bitstream_filter_init (const char *name) |
| int | av_bitstream_filter_filter (AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int keyframe) |
| void | av_bitstream_filter_close (AVBitStreamFilterContext *bsf) |
| AVBitStreamFilter * | av_bitstream_filter_next (AVBitStreamFilter *f) |
| void * | av_fast_realloc (void *ptr, unsigned int *size, unsigned int min_size) |
| Reallocates the given block if it is not large enough, otherwise it does nothing. | |
| void | av_fast_malloc (void *ptr, unsigned int *size, unsigned int min_size) |
| Allocates a buffer, reusing the given one if large enough. | |
| void | av_picture_copy (AVPicture *dst, const AVPicture *src, enum PixelFormat pix_fmt, int width, int height) |
| Copy image 'src' to 'dst'. | |
| int | av_picture_crop (AVPicture *dst, const AVPicture *src, enum PixelFormat pix_fmt, int top_band, int left_band) |
| Crop image top and left side. | |
| int | av_picture_pad (AVPicture *dst, const AVPicture *src, int height, int width, enum PixelFormat pix_fmt, int padtop, int padbottom, int padleft, int padright, int *color) |
| Pad image. | |
| unsigned int | av_xiphlacing (unsigned char *s, unsigned int v) |
| int | av_parse_video_frame_size (int *width_ptr, int *height_ptr, const char *str) |
| Parses str and put in width_ptr and height_ptr the detected values. | |
| int | av_parse_video_frame_rate (AVRational *frame_rate, const char *str) |
| Parses str and put in frame_rate the detected values. | |
| void | av_log_missing_feature (void *avc, const char *feature, int want_sample) |
| Logs a generic warning message about a missing feature. | |
| void | av_log_ask_for_sample (void *avc, const char *msg) |
| Logs a generic warning message asking for a sample. | |
| void | av_register_hwaccel (AVHWAccel *hwaccel) |
| Registers the hardware accelerator hwaccel. | |
| AVHWAccel * | av_hwaccel_next (AVHWAccel *hwaccel) |
| If hwaccel is NULL, returns the first registered hardware accelerator, if hwaccel is non-NULL, returns the next registered hardware accelerator after hwaccel, or NULL if hwaccel is the last one. | |
| int | av_lockmgr_register (int(*cb)(void **mutex, enum AVLockOp op)) |
| Register a user provided lock manager supporting the operations specified by AVLockOp. | |
Definition in file avcodec.h.
| #define AV_NOPTS_VALUE INT64_C(0x8000000000000000) |
Definition at line 46 of file avcodec.h.
Referenced by add_pes_stream(), asf_read_frame_header(), asf_read_pts(), asf_write_packet(), audio_decode_frame(), av_encode(), av_estimate_timings_from_bit_rate(), av_estimate_timings_from_pts(), av_find_stream_info(), av_gen_search(), av_has_duration(), av_init_packet(), av_interleaved_write_frame(), av_new_stream(), av_open_input_stream(), av_parser_init(), av_parser_parse(), av_read_frame(), av_read_frame_flush(), av_read_frame_internal(), av_seek_frame_binary(), av_update_stream_timings(), av_write_header(), avcodec_get_context_defaults2(), avcodec_get_frame_defaults(), avi_write_packet(), compute_chapters_end(), compute_pkt_fields(), compute_pkt_fields2(), decode_frame(), decode_thread(), decode_vop_header(), dirac_combine_frame(), do_audio_out(), do_subtitle_out(), do_video_out(), dump_format(), dvbsub_parse(), event_loop(), ff_fetch_timestamp(), ff_gen_syncpoint_search(), ff_rate_estimate_qscale(), ff_rm_retrieve_cache(), ff_store_parser_state(), fill_all_stream_timings(), finalize_packet(), flush_packet(), flv_read_packet(), get_pts(), get_vcd_padding_size(), gxf_header(), gxf_material_tags(), gxf_resync_media(), http_prepare_data(), load_input_picture(), matroska_parse_block(), matroska_read_header(), mov_write_packet(), mpeg_mux_write_packet(), mpegps_read_dts(), mpegps_read_pes_header(), mpegts_get_pcr(), mpegts_push_data(), mpegts_write_header(), mpegts_write_packet(), mpegts_write_pes(), MPV_encode_init(), mxf_parse_structural_metadata(), new_pes_packet(), nut_read_timestamp(), ogg_get_length(), ogg_gptopts(), ogg_read_packet(), ogg_read_timestamp(), ogg_reset(), open_input_stream(), opt_input_file(), output_packet(), parse_timecode(), pkt_dump_internal(), pva_read_timestamp(), read_header(), read_part_of_packet(), read_seek(), rm_assemble_video_frame(), rm_read_dts(), rm_read_packet(), rtcp_parse_packet(), rtcp_send_sr(), rtp_check_and_send_back_rr(), rtp_parse_open(), rtp_write_header(), rtsp_cmd_pause(), rtsp_parse_range_npt(), sdp_parse_line(), search_hi_lo_keyframes(), set_frame_distances(), speex_packet(), subtitle_thread(), sync(), ts_str(), update_initial_durations(), update_initial_timestamps(), video_thread(), write_audio_frame(), write_packet(), and write_video_frame().
| #define AV_PARSER_PTS_NB 4 |
Definition at line 3396 of file avcodec.h.
Referenced by av_parser_parse2(), and ff_fetch_timestamp().
| #define AV_PKT_FLAG_KEY 0x0001 |
| #define AV_TIME_BASE 1000000 |
Definition at line 47 of file avcodec.h.
Referenced by amf_parse_object(), av_encode(), av_estimate_timings(), av_seek_frame(), av_update_stream_timings(), avi_read_header(), avi_read_packet(), decode_syncpoint(), decode_thread(), dump_format(), dxa_read_header(), event_loop(), ff_gen_syncpoint_search(), flv_read_packet(), flv_write_header(), get_sync_ipts(), http_prepare_data(), main(), matroska_read_header(), mov_find_next_sample(), mpeg_mux_write_packet(), mpegts_write_packet(), mpegts_write_pes(), opt_input_file(), opt_output_file(), output_packet(), pkt_dump_internal(), pre_process_video_frame(), read_seek(), and rtp_write_header().
| #define AV_TIME_BASE_Q (AVRational){1, AV_TIME_BASE} |
Definition at line 48 of file avcodec.h.
Referenced by av_encode(), av_find_stream_info(), av_update_stream_timings(), compute_chapters_end(), decode_frame(), do_subtitle_out(), fill_all_stream_timings(), http_prepare_data(), main(), ogg_compare_granule(), and output_packet().
| #define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 |
Definition at line 423 of file avcodec.h.
Referenced by audio_decode_example(), avcodec_decode_audio3(), dv_assemble_frame(), dv_init_mux(), output_packet(), try_decode_frame(), and vorbis_parse_id_hdr().
| #define AVERROR | ( | e | ) | (e) |
Definition at line 3664 of file avcodec.h.
Referenced by aea_read_header(), aea_read_packet(), aiff_read_header(), amr_read_header(), amr_read_packet(), apc_read_header(), apc_read_packet(), asf_read_header(), asf_read_seek(), asfrtp_parse_packet(), atrac3_decode_init(), audio_open(), audio_read_header(), audio_read_packet(), audio_write_header(), audio_write_packet(), av_dup_packet(), av_encode(), av_estimate_timings_from_pts(), av_find_stream_info(), av_metadata_set2(), av_new_packet(), av_open_input_file(), av_open_input_stream(), av_read_frame(), av_read_frame_internal(), av_read_packet(), av_read_pause(), av_read_play(), av_seek_frame_generic(), av_set_number2(), av_set_parameters(), av_set_string3(), av_url_read_fpause(), av_url_read_fseek(), av_url_read_pause(), av_url_read_seek(), av_write_header(), avcodec_open(), avf_sdp_create(), avfilter_add_colorspace(), avi_read_header(), avi_write_header(), avisynth_read_packet(), avs_read_audio_packet(), avs_read_packet(), avs_read_video_packet(), bfi_read_header(), bfi_read_packet(), build_modpred(), cdata_read_header(), cdata_read_packet(), cdg_decode_frame(), cdg_tile_block(), che_configure(), cin_read_frame_header(), cin_read_header(), cin_read_packet(), concat_open(), concat_seek(), daud_header(), daud_packet(), decode_frame(), decode_i_frame(), decode_init(), decode_p_frame(), decode_stream_header(), dv1394_read_header(), dv1394_read_packet(), dv_read_header(), dv_read_packet(), dxa_read_packet(), ea_read_header(), ea_read_packet(), ebml_parse_elem(), ebml_read_ascii(), ebml_read_binary(), ebml_read_master(), ebml_read_num(), ff_alsa_open(), ff_asf_get_packet(), ff_combine_frame(), ff_h263_decode_frame(), ff_ivi_init_planes(), ff_ivi_init_tiles(), ff_mov_read_esds(), ff_rtmp_packet_create(), ff_rtmp_packet_read(), ffm_is_avail_data(), ffm_read_header(), file_open(), film_read_header(), film_read_packet(), flac_read_header(), flic_read_header(), flic_read_packet(), flv_get_extradata(), flv_read_header(), flv_read_packet(), fourxm_read_header(), fourxm_read_packet(), g726_init(), get_packet(), get_sindex(), get_tag(), gif_read_image(), gif_write_header(), gopher_connect(), gopher_open(), grab_read_header(), grab_read_packet(), gxf_packet(), gxf_write_header(), h264_mp4toannexb_filter(), http_connect(), http_get_line(), http_getc(), http_open(), http_open_cnx(), http_read(), idcin_read_header(), idcin_read_packet(), iff_read_header(), iff_read_packet(), img_read_header(), img_read_packet(), ipmovie_read_header(), ipmovie_read_packet(), iss_read_header(), iss_read_packet(), iv_alloc_frames(), lmlm4_read_header(), lmlm4_read_packet(), matroska_parse_block(), matroska_read_header(), mimic_decode_frame(), mkv_add_cuepoint(), mkv_add_seekhead_entry(), mkv_write_header(), mm_read_header(), mm_read_packet(), mmap_read_frame(), mmf_read_header(), mmf_read_packet(), mov_open_dref(), mov_read_cmov(), mov_read_ctts(), mov_read_dref(), mov_read_ftyp(), mov_read_glbl(), mov_read_smi(), mov_read_stco(), mov_read_stps(), mov_read_stsc(), mov_read_stss(), mov_read_stsz(), mov_read_stts(), mov_read_trak(), mov_read_trex(), mov_read_trun(), mov_read_wave(), mov_write_header(), mov_write_packet(), mp_decode_frame(), mpc8_read_header(), mpc8_read_packet(), mpc_read_header(), mpc_read_packet(), mpeg_mux_init(), mpegps_read_packet(), mpegps_read_pes_header(), mpegts_push_data(), mpegts_raw_read_packet(), mpegts_set_stream_info(), mtv_read_header(), mtv_read_packet(), mxf_add_metadata_set(), mxf_write_header(), nc_read_header(), nc_read_packet(), nuv_header(), nuv_packet(), ogg_new_stream(), ogg_read_packet(), oma_read_header(), oma_read_packet(), opt_input_file(), opt_output_file(), packetizer_read(), parse_key_value_pair(), print_error(), pva_read_header(), pva_read_packet(), qcp_read_header(), r3d_read_rdvo(), r3d_read_red1(), read_ffserver_streams(), read_frame(), read_header(), read_kuki_chunk(), read_packet(), read_part_of_packet(), read_specific_config(), ret_str(), rl2_read_header(), rl2_read_packet(), rm_assemble_video_frame(), rm_read_extradata(), rm_read_header(), rm_read_packet(), roq_read_header(), roq_read_packet(), rpl_read_header(), rpl_read_packet(), rtmp_open(), rtp_open(), rtp_read(), rtp_write_header(), rtsp_open_transport_ctx(), seq_fill_buffer(), seq_init_frame_buffers(), seq_read_header(), seq_read_packet(), siff_read_packet(), smacker_read_header(), smacker_read_packet(), sol_read_packet(), sox_read_header(), sox_read_packet(), spdif_write_packet(), start_jack(), str_read_header(), str_read_packet(), stream_pause(), swf_read_header(), swf_read_packet(), swf_write_header(), tcp_open(), tcp_read(), tcp_write(), thp_read_header(), thp_read_packet(), tmv_read_header(), tqi_decode_frame(), tta_read_header(), txd_read_header(), txd_read_packet(), udp_open(), udp_read(), udp_set_remote_url(), udp_set_url(), udp_write(), url_fdopen(), url_fseek(), url_fsize(), url_open(), url_open_protocol(), url_read(), url_read_complete(), url_resetbuf(), url_seek(), url_setbufsize(), url_write(), v4l2_read_header(), v4l2_read_packet(), v4l2_set_parameters(), v4l_mm_read_picture(), vc1t_read_packet(), vfw_read_header(), vfw_read_packet(), vid_read_header(), vid_read_packet(), vmd_read_header(), vmd_read_packet(), voc_get_packet(), voc_read_header(), vqf_read_header(), vqf_read_packet(), wc3_read_header(), wc3_read_packet(), wsaud_read_header(), wsaud_read_packet(), wsvqa_read_header(), wsvqa_read_packet(), wv_read_packet(), x11grab_read_header(), x11grab_read_packet(), xa_read_header(), xa_read_packet(), yuv4_read_header(), and yuv4_read_packet().
| #define AVERROR_EOF AVERROR(EPIPE) |
End of file.
Definition at line 3675 of file avcodec.h.
Referenced by aiff_read_packet(), decode_thread(), ff_asf_parse_packet(), ffm_is_avail_data(), find_record(), flv_read_packet(), get_buffer(), get_packet(), get_partial_buffer(), img_read_packet(), ipmovie_read_header(), matroska_read_packet(), mov_read_packet(), mxf_read_packet(), qcp_read_packet(), ret_str(), sox_read_packet(), and tmv_read_packet().
| #define AVERROR_INVALIDDATA AVERROR(EINVAL) |
invalid data found
Definition at line 3670 of file avcodec.h.
Referenced by aiff_read_header(), av_write_header(), cin_read_file_header(), cin_read_frame_header(), decode_channel_transform(), decode_coeffs(), decode_frame(), decode_init(), decode_packet(), decode_scale_factors(), decode_subframe(), decode_subframe_length(), decode_tilehdr(), ebml_parse_elem(), ebml_read_float(), ebml_read_num(), ebml_read_uint(), encode_frame(), ff_cmap_read_palette(), ff_vorbis_parse_fmtp_config(), film_read_header(), find_record(), flac_read_header(), flic_read_header(), fourxm_read_header(), h263_handle_packet(), iff_read_header(), ipmovie_read_header(), ipmovie_read_packet(), mm_read_header(), parse_packed_headers(), parse_streaminfo(), print_error(), qcp_read_header(), read_header(), read_kuki_chunk(), read_packet(), read_pakt_chunk(), read_rle_sgi(), rl2_read_header(), roq_read_packet(), sdp_read_header(), seq_fill_buffer(), seq_parse_frame_data(), str_read_packet(), vorbis_handle_packet(), wc3_read_header(), wc3_read_packet(), write_header(), wsaud_read_header(), and wsaud_read_packet().
| #define AVERROR_IO AVERROR(EIO) |
I/O error.
Definition at line 3668 of file avcodec.h.
Referenced by ape_read_packet(), ff_alsa_open(), ff_alsa_xrun_recover(), flac_read_header(), read_packet(), sox_read_header(), and vfw_read_header().
| #define AVERROR_NOENT AVERROR(ENOENT) |
| #define AVERROR_NOFMT AVERROR(EILSEQ) |
unknown format
Definition at line 3672 of file avcodec.h.
Referenced by av_open_input_file(), decode_frame(), decoder_init(), matroska_read_header(), and print_error().
| #define AVERROR_NOMEM AVERROR(ENOMEM) |
not enough memory
Definition at line 3671 of file avcodec.h.
Referenced by ac3_decode_init(), ape_read_header(), ape_read_packet(), ape_tag_read_field(), ff_vorbis_parse_fmtp_config(), flac_encode_init(), flac_read_header(), gif_encode_init(), h263_handle_packet(), msnwc_tcp_read_header(), ogg_build_flac_headers(), ogg_build_speex_headers(), parse_packed_headers(), read_desc_chunk(), rm_read_extradata(), tgv_decode_frame(), vfw_read_header(), vorbis_handle_packet(), and wc3_read_header().
| #define AVERROR_NOTSUPP AVERROR(ENOSYS) |
| #define AVERROR_NUMEXPECTED AVERROR(EDOM) |
Number syntax expected in filename.
Definition at line 3669 of file avcodec.h.
Referenced by av_open_input_file(), opt_output_file(), and print_error().
| #define AVERROR_PATCHWELCOME -MKTAG('P','A','W','E') |
Not yet implemented in FFmpeg.
Patches welcome.
Definition at line 3676 of file avcodec.h.
Referenced by parse_packed_headers(), qcp_read_header(), vfw_read_header(), voc_write_header(), and vorbis_handle_packet().
| #define AVERROR_UNKNOWN AVERROR(EINVAL) |
| #define AVPALETTE_COUNT 256 |
Definition at line 2609 of file avcodec.h.
Referenced by cmv_process_header(), rl2_decode_init(), and tgv_decode_frame().
| #define AVPALETTE_SIZE 1024 |
AVPaletteControl This structure defines a method for communicating palette changes between and demuxer and a decoder.
Definition at line 2608 of file avcodec.h.
Referenced by asf_read_header(), avi_read_header(), cinepak_decode_frame(), cmv_decode_frame(), decode_dvd_subtitles(), decode_frame(), display_end_segment(), dvbsub_display_end_segment(), flic_decode_frame_8BPP(), iff_read_packet(), mm_decode_frame(), msrle_decode_frame(), msvideo1_decode_8bit(), qtrle_decode_frame(), raw_decode(), rl2_decode_frame(), smc_decode_stream(), tgv_decode_frame(), and xan_decode_frame().
| #define CH_LAYOUT_2_1 (CH_LAYOUT_STEREO|CH_BACK_CENTER) |
Definition at line 407 of file avcodec.h.
Referenced by pcm_bluray_decode_frame(), pcm_bluray_parse_header(), and set_channel_info().
| #define CH_LAYOUT_2_2 (CH_LAYOUT_STEREO|CH_SIDE_LEFT|CH_SIDE_RIGHT) |
Definition at line 410 of file avcodec.h.
Referenced by pcm_bluray_decode_frame(), pcm_bluray_parse_header(), and set_channel_info().
| #define CH_LAYOUT_4POINT0 (CH_LAYOUT_SURROUND|CH_BACK_CENTER) |
Definition at line 409 of file avcodec.h.
Referenced by pcm_bluray_decode_frame(), pcm_bluray_parse_header(), and set_channel_info().
| #define CH_LAYOUT_5POINT0 (CH_LAYOUT_SURROUND|CH_SIDE_LEFT|CH_SIDE_RIGHT) |
Definition at line 412 of file avcodec.h.
Referenced by avcodec_guess_channel_layout(), pcm_bluray_decode_frame(), pcm_bluray_parse_header(), and set_channel_info().
| #define CH_LAYOUT_5POINT0_BACK (CH_LAYOUT_SURROUND|CH_BACK_LEFT|CH_BACK_RIGHT) |
| #define CH_LAYOUT_5POINT1 (CH_LAYOUT_5POINT0|CH_LOW_FREQUENCY) |
Definition at line 413 of file avcodec.h.
Referenced by avcodec_guess_channel_layout(), pcm_bluray_decode_frame(), and pcm_bluray_parse_header().
| #define CH_LAYOUT_5POINT1_BACK (CH_LAYOUT_5POINT0_BACK|CH_LOW_FREQUENCY) |
| #define CH_LAYOUT_7POINT0 (CH_LAYOUT_5POINT0|CH_BACK_LEFT|CH_BACK_RIGHT) |
Definition at line 416 of file avcodec.h.
Referenced by pcm_bluray_decode_frame(), and pcm_bluray_parse_header().
| #define CH_LAYOUT_7POINT1 (CH_LAYOUT_5POINT1|CH_BACK_LEFT|CH_BACK_RIGHT) |
Definition at line 417 of file avcodec.h.
Referenced by avcodec_guess_channel_layout(), pcm_bluray_decode_frame(), and pcm_bluray_parse_header().
| #define CH_LAYOUT_7POINT1_WIDE |
Value:
| #define CH_LAYOUT_MONO (CH_FRONT_CENTER) |
Definition at line 405 of file avcodec.h.
Referenced by aea_read_header(), ape_decode_init(), avcodec_guess_channel_layout(), cook_decode_init(), decode_init(), imc_decode_init(), mpc7_decode_init(), mpc8_decode_init(), pcm_bluray_decode_frame(), pcm_bluray_parse_header(), set_channel_info(), smka_decode_init(), and wavpack_decode_init().
| #define CH_LAYOUT_NATIVE 0x8000000000000000LL |
Channel mask value used for AVCodecContext.request_channel_layout to indicate that the user requests the channel order of the decoder output to be the native codec channel order.
| #define CH_LAYOUT_QUAD (CH_LAYOUT_STEREO|CH_BACK_LEFT|CH_BACK_RIGHT) |
Definition at line 411 of file avcodec.h.
Referenced by avcodec_guess_channel_layout(), and set_channel_info().
| #define CH_LAYOUT_STEREO (CH_FRONT_LEFT|CH_FRONT_RIGHT) |
Definition at line 406 of file avcodec.h.
Referenced by aea_read_header(), ape_decode_init(), avcodec_guess_channel_layout(), cook_decode_init(), dca_decode_frame(), imc_decode_init(), mpc7_decode_init(), mpc8_decode_init(), pcm_bluray_decode_frame(), pcm_bluray_parse_header(), set_channel_info(), smka_decode_init(), and wavpack_decode_init().
| #define CH_LAYOUT_STEREO_DOWNMIX (CH_STEREO_LEFT|CH_STEREO_RIGHT) |
| #define CH_LAYOUT_SURROUND (CH_LAYOUT_STEREO|CH_FRONT_CENTER) |
Definition at line 408 of file avcodec.h.
Referenced by avcodec_guess_channel_layout(), pcm_bluray_decode_frame(), pcm_bluray_parse_header(), and set_channel_info().
| #define CH_LOW_FREQUENCY 0x00000008 |
Definition at line 381 of file avcodec.h.
Referenced by dca_decode_frame(), ff_ac3_parse_header(), and set_channel_info().
| #define CODEC_CAP_DELAY 0x0020 |
Codec has a nonzero delay and needs to be fed with NULL at the end to get the delayed data.
If this is not set, the codec is guaranteed to never be fed with NULL data.
Definition at line 615 of file avcodec.h.
Referenced by avcodec_decode_audio3(), avcodec_decode_video2(), avcodec_encode_audio(), and avcodec_encode_video().
| #define CODEC_CAP_DR1 0x0002 |
Codec uses get_buffer() for allocating buffers.
direct rendering method 1
Definition at line 605 of file avcodec.h.
Referenced by opt_show_formats(), and show_codecs().
| #define CODEC_CAP_DRAW_HORIZ_BAND 0x0001 |
Decoder can use draw_horiz_band callback.
Definition at line 600 of file avcodec.h.
Referenced by opt_show_formats(), and show_codecs().
| #define CODEC_CAP_HWACCEL_VDPAU 0x0080 |
Codec can export data for HW decoding (VDPAU).
Definition at line 624 of file avcodec.h.
Referenced by decode_chunks(), decode_nal_units(), execute_decode_slices(), ff_er_frame_end(), ff_h263_decode_frame(), field_end(), mpeg_get_pixelformat(), MPV_frame_end(), vc1_decode_frame(), and vcr2_init_sequence().
| #define CODEC_CAP_PARSE_ONLY 0x0004 |
| #define CODEC_CAP_SMALL_LAST_FRAME 0x0040 |
Codec can be fed a final frame with a smaller size.
This can be used to prevent truncation of the last audio samples.
Definition at line 620 of file avcodec.h.
Referenced by output_packet().
| #define CODEC_CAP_SUBFRAMES 0x0100 |
Codec can output multiple frames per AVPacket Normally demuxers return one frame at a time, demuxers which do not do are connected to a parser to split what they return into proper frames.
This flag is reserved to the very rare category of codecs which have a bitstream that cannot be split into frames without timeconsuming operations like full decoding. Demuxers carring such bitstreams thus may return multiple frames in a packet. This has many disadvantages like prohibiting stream copy in many cases thus it should only be considered as a last resort.
| #define CODEC_CAP_TRUNCATED 0x0008 |
Definition at line 608 of file avcodec.h.
Referenced by opt_show_formats(), show_codecs(), and video_decode_example().
| #define CODEC_FLAG2_8X8DCT 0x00000080 |
H.264 high profile 8x8 transform.
Definition at line 580 of file avcodec.h.
Referenced by X264_init().
| #define CODEC_FLAG2_AUD 0x00000200 |
| #define CODEC_FLAG2_BIT_RESERVOIR 0x00020000 |
Use a bit reservoir when encoding if possible.
Definition at line 590 of file avcodec.h.
Referenced by MP3lame_encode_init().
| #define CODEC_FLAG2_BPYRAMID 0x00000010 |
H.264 allow B-frames to be used as references.
Definition at line 577 of file avcodec.h.
Referenced by X264_init().
| #define CODEC_FLAG2_BRDO 0x00000400 |
| #define CODEC_FLAG2_CHUNKS 0x00008000 |
Input bitstream might be truncated at a packet boundaries instead of only at frame boundaries.
Definition at line 588 of file avcodec.h.
Referenced by decode_frame(), and decode_nal_units().
| #define CODEC_FLAG2_DROP_FRAME_TIMECODE 0x00002000 |
timecode is in drop frame format.
Definition at line 586 of file avcodec.h.
Referenced by encode_init(), and mpeg1_encode_sequence_header().
| #define CODEC_FLAG2_FAST 0x00000001 |
Allow non spec compliant speedup tricks.
Definition at line 573 of file avcodec.h.
Referenced by decode_slice_header(), ff_h263_decode_frame(), mpeg_decode_mb(), and stream_component_open().
| #define CODEC_FLAG2_FASTPSKIP 0x00000100 |
| #define CODEC_FLAG2_INTRA_VLC 0x00000800 |
Use MPEG-2 intra VLC table.
Definition at line 584 of file avcodec.h.
Referenced by MPV_encode_init().
| #define CODEC_FLAG2_LOCAL_HEADER 0x00000008 |
Place global headers at every keyframe instead of in extradata.
Definition at line 576 of file avcodec.h.
Referenced by av_parser_change(), dump_extradata(), new_video_stream(), and remove_extradata().
| #define CODEC_FLAG2_MBTREE 0x00040000 |
Use macroblock tree ratecontrol (x264 only).
Definition at line 591 of file avcodec.h.
Referenced by X264_init().
| #define CODEC_FLAG2_MEMC_ONLY 0x00001000 |
| #define CODEC_FLAG2_MIXED_REFS 0x00000040 |
H.264 one reference per partition, as opposed to one reference per macroblock.
Definition at line 579 of file avcodec.h.
Referenced by X264_init().
| #define CODEC_FLAG2_NO_OUTPUT 0x00000004 |
Skip bitstream encoding.
Definition at line 575 of file avcodec.h.
Referenced by encode_bgr_bitstream(), ff_h263_encode_motion_vector(), and mpeg4_encode_blocks().
| #define CODEC_FLAG2_NON_LINEAR_QUANT 0x00010000 |
Use MPEG-2 nonlinear quantizer.
Definition at line 589 of file avcodec.h.
Referenced by MPV_encode_init().
| #define CODEC_FLAG2_SKIP_RD 0x00004000 |
RD optimal MB level residual skipping.
Definition at line 587 of file avcodec.h.
Referenced by encode_thread().
| #define CODEC_FLAG2_STRICT_GOP 0x00000002 |
Strictly enforce GOP size.
Definition at line 574 of file avcodec.h.
Referenced by select_input_picture().
| #define CODEC_FLAG2_WPRED 0x00000020 |
H.264 weighted biprediction for B-frames.
Definition at line 578 of file avcodec.h.
Referenced by X264_init().
| #define CODEC_FLAG_4MV 0x0004 |
4 MV per MB allowed / advanced prediction for H.263.
Definition at line 536 of file avcodec.h.
Referenced by check_input_motion(), ff_estimate_p_frame_motion(), ff_fix_long_p_mvs(), ff_xvid_encode_init(), MPV_encode_init(), and parse_ffconfig().
| #define CODEC_FLAG_AC_PRED 0x01000000 |
H.263 advanced intra coding / MPEG-4 AC prediction.
Definition at line 562 of file avcodec.h.
Referenced by ff_xvid_encode_init(), mpeg4_encode_mb(), and MPV_encode_init().
| #define CODEC_FLAG_ALT_SCAN 0x00100000 |
| #define CODEC_FLAG_BITEXACT 0x00800000 |
Use only bitexact stuff (except (I)DCT).
Definition at line 560 of file avcodec.h.
Referenced by aac_encode_frame(), dsputil_init_mmx(), dsputil_init_pix_mmx(), dsputilenc_init_mmx(), encode_block(), ff_dct_common_init(), ff_dsputil_init_neon(), float_init_altivec(), jpeg_put_comments(), mkv_write_header(), mkv_write_trailer(), mov_write_udta_tag(), mpeg4_encode_vol_header(), MPV_common_init_mmx(), mxf_write_header(), mxf_write_identification(), ogg_write_header(), opt_default(), parse_ffconfig(), read_ffserver_streams(), and write_globalinfo().
| #define CODEC_FLAG_CBP_RD 0x04000000 |
Use rate distortion optimization for cbp.
Definition at line 564 of file avcodec.h.
Referenced by encode_mb_internal(), get_b_cbp(), get_p_cbp(), and MPV_encode_init().
| #define CODEC_FLAG_CLOSED_GOP 0x80000000 |
Definition at line 572 of file avcodec.h.
Referenced by ff_xvid_encode_init(), mpeg1_encode_sequence_header(), mpeg4_encode_gop_header(), MPV_encode_init(), and select_input_picture().
| #define CODEC_FLAG_EMU_EDGE 0x4000 |
Don't draw edges.
Definition at line 551 of file avcodec.h.
Referenced by avcodec_default_get_buffer(), chroma_4mv_motion(), chroma_4mv_motion_lowres(), decode_frame(), decode_slice_header(), ff_mspel_motion(), ff_rv34_decode_init(), gmc1_motion(), halfpel_interpol(), hpel_motion(), mjpeg_decode_scan(), MPV_frame_end(), MPV_motion_internal(), opt_input_file(), sp5x_decode_frame(), stream_component_open(), svq3_mc_dir_part(), and vc1_decode_init().
| #define CODEC_FLAG_EXTERN_HUFF 0x1000 |
Use external Huffman table (for MJPEG).
Definition at line 549 of file avcodec.h.
Referenced by ff_mjpeg_decode_init().
| #define CODEC_FLAG_GLOBAL_HEADER 0x00400000 |
Place global headers in extradata instead of every keyframe.
Definition at line 559 of file avcodec.h.
Referenced by add_audio_stream(), add_video_stream(), av_parser_change(), av_write_header(), encode_init(), Faac_encode_init(), ff_xvid_encode_init(), ffm_read_header(), ffm_write_header(), mpeg4_encode_picture_header(), new_audio_stream(), new_video_stream(), remove_extradata(), and X264_init().
| #define CODEC_FLAG_GMC 0x0020 |
| #define CODEC_FLAG_GRAY 0x2000 |
Only decode/encode grayscale.
Definition at line 550 of file avcodec.h.
Referenced by backup_mb_border(), comp_block(), dct_get(), decode_slice(), dnxhd_decode_macroblock(), encode_mb_internal(), ff_mspel_motion(), ff_wmv2_add_mb(), ff_xvid_encode_init(), ff_xvmc_decode_mb(), gmc1_motion(), gmc_motion(), hl_decode_mb_internal(), idct_put(), indeo3_decode_frame(), iv_decode_frame(), mc_dir_part(), mpeg_motion_internal(), mpeg_motion_lowres(), MPV_decode_mb_internal(), MPV_motion_internal(), MPV_motion_lowres(), qpel_motion(), render_slice(), svq1_decode_frame(), svq3_mc_dir_part(), tgq_idct_put_mb(), tgq_idct_put_mb_dconly(), tqi_idct_put(), unpack_dct_coeffs(), vc1_decode_b_mb(), vc1_decode_i_blocks(), vc1_decode_i_blocks_adv(), vc1_decode_init(), vc1_decode_p_mb(), vc1_interp_mc(), vc1_mc_1mv(), vc1_mc_4mv_chroma(), vc1_put_block(), and xchg_mb_border().
| #define CODEC_FLAG_H263P_AIV 0x00000008 |
H.263 alternative inter VLC.
Definition at line 566 of file avcodec.h.
Referenced by MPV_encode_init().
| #define CODEC_FLAG_H263P_SLICE_STRUCT 0x10000000 |
| #define CODEC_FLAG_H263P_UMV 0x02000000 |
| #define CODEC_FLAG_INPUT_PRESERVED 0x0100 |
The parent program guarantees that the input for B-frames containing streams is not written to for at least s->max_b_frames+1 frames, if this is not set the input will be copied.
Definition at line 546 of file avcodec.h.
Referenced by estimate_best_b_count(), and load_input_picture().
| #define CODEC_FLAG_INTERLACED_DCT 0x00040000 |
Use interlaced DCT.
Definition at line 556 of file avcodec.h.
Referenced by dnxhd_encode_init(), do_video_out(), dv_guess_dct_mode(), encode_frame(), encode_mb_internal(), ff_dnxhd_find_cid(), MPV_encode_init(), and X264_init().
| #define CODEC_FLAG_INTERLACED_ME 0x20000000 |
interlaced motion estimation
Definition at line 570 of file avcodec.h.
Referenced by check_input_motion(), do_video_out(), encode_picture(), ff_estimate_b_frame_motion(), ff_estimate_p_frame_motion(), libdirac_encode_init(), libschroedinger_encode_init(), MPV_common_init(), and MPV_encode_init().
| #define CODEC_FLAG_LOOP_FILTER 0x00000800 |
loop filter
Definition at line 568 of file avcodec.h.
Referenced by MPV_encode_init(), and X264_init().
| #define CODEC_FLAG_LOW_DELAY 0x00080000 |
Force low delay.
Definition at line 557 of file avcodec.h.
Referenced by decode_nal_units(), decode_vop_header(), ff_mpeg4_decode_picture_header(), mpeg1_decode_sequence(), mpeg_decode_sequence_extension(), and MPV_encode_init().
| #define CODEC_FLAG_MV0 0x0040 |
Always try a MB with MV=<0,0>.
Definition at line 539 of file avcodec.h.
Referenced by epzs_motion_search_internal(), ff_estimate_b_frame_motion(), and ff_estimate_p_frame_motion().
| #define CODEC_FLAG_NORMALIZE_AQP 0x00020000 |
Normalize adaptive quantization.
Definition at line 555 of file avcodec.h.
Referenced by adaptive_quantization().
| #define CODEC_FLAG_OBMC 0x00000001 |
| #define CODEC_FLAG_PART 0x0080 |
| #define CODEC_FLAG_PASS1 0x0200 |
Use internal 2pass ratecontrol in first pass mode.
Definition at line 547 of file avcodec.h.
Referenced by av_encode(), avcodec_string(), encode_bgr_bitstream(), encode_frame(), encode_init(), encode_thread(), ff_xvid_encode_init(), h263_encode_mb(), mpeg4_encode_mb(), MPV_encode_picture(), new_video_stream(), write_slice_end(), and X264_init().
| #define CODEC_FLAG_PASS2 0x0400 |
Use internal 2pass ratecontrol in second pass mode.
Definition at line 548 of file avcodec.h.
Referenced by av_encode(), avcodec_string(), encode_frame(), encode_init(), encode_picture(), ff_rate_control_init(), ff_rate_control_uninit(), ff_rate_estimate_qscale(), ff_xvid_encode_init(), MPV_encode_init(), new_video_stream(), select_input_picture(), and X264_init().
| #define CODEC_FLAG_PSNR 0x8000 |
error[?] variables will be set during encoding.
Definition at line 552 of file avcodec.h.
Referenced by do_video_stats(), encode_thread(), estimate_best_b_count(), MPV_decode_mb_internal(), new_video_stream(), print_report(), and X264_init().
| #define CODEC_FLAG_QP_RD 0x08000000 |
Use rate distortion optimization for qp selectioon.
Definition at line 565 of file avcodec.h.
Referenced by encode_mb_internal(), encode_thread(), and MPV_encode_init().
| #define CODEC_FLAG_QPEL 0x0010 |
Use qpel MC.
Definition at line 537 of file avcodec.h.
Referenced by estimate_best_b_count(), ff_init_me(), ff_xvid_encode_init(), get_flags(), and MPV_encode_init().
| #define CODEC_FLAG_QSCALE 0x0002 |
Use fixed qscale.
Definition at line 535 of file avcodec.h.
Referenced by aac_encode_frame(), encode_init(), encode_picture(), estimate_best_b_count(), Faac_encode_init(), ff_psy_preprocess_init(), ff_xvid_encode_init(), libdirac_encode_init(), libschroedinger_encode_init(), MP3lame_encode_init(), MPV_encode_init(), new_audio_stream(), new_video_stream(), oggvorbis_init_encoder(), parse_ffconfig(), and vorbis_encode_init().
| #define CODEC_FLAG_SVCD_SCAN_OFFSET 0x40000000 |
Will reserve space for SVCD scan offset user data.
Definition at line 571 of file avcodec.h.
Referenced by mpeg1_encode_picture_header().
| #define CODEC_FLAG_TRUNCATED 0x00010000 |
Definition at line 553 of file avcodec.h.
Referenced by ff_h263_decode_frame(), get_consumed_bytes(), mpeg_decode_frame(), and video_decode_example().
| #define FF_AA_FLOAT 3 |
| #define FF_ALPHA_SEMI_TRANSP 0x0002 |
Definition at line 2952 of file avcodec.h.
Referenced by get_alpha_info_pal8(), and img_get_alpha_info().
| #define FF_ALPHA_TRANSP 0x0001 |
Definition at line 2951 of file avcodec.h.
Referenced by get_alpha_info_pal8(), and img_get_alpha_info().
| #define FF_ASPECT_EXTENDED 15 |
Definition at line 957 of file avcodec.h.
Referenced by decode_vol_header(), ff_h263_aspect_to_info(), h263_decode_picture_header(), h263_encode_picture_header(), and mpeg4_encode_vol_header().
| #define FF_B_TYPE 3 |
Bi-dir predicted.
Definition at line 793 of file avcodec.h.
Referenced by av_get_pict_type_char(), cavs_decode_frame(), compute_pkt_fields(), decode_cabac_mb_ref(), decode_cabac_mb_skip(), decode_cabac_mb_type_b(), decode_chunks(), decode_frame(), decode_mb_skip(), decode_nal_units(), decode_pic(), decode_slice(), decode_slice_header(), decode_vop_header(), dirac_combine_frame(), encode_mb_internal(), encode_picture(), encode_thread(), epzs_motion_search_internal(), estimate_best_b_count(), estimate_motion_thread(), ff_alloc_picture(), ff_clean_mpeg4_qscales(), ff_draw_horiz_band(), ff_er_frame_end(), ff_get_best_fcode(), ff_h263_decode_frame(), ff_h263_decode_mb(), ff_h264_decode_mb_cabac(), ff_h264_decode_mb_cavlc(), ff_h264_direct_ref_list_init(), ff_h264_fill_default_ref_list(), ff_h264_get_slice_type(), ff_init_block_index(), ff_mpeg4_get_video_packet_prefix_length(), ff_print_debug_info(), ff_rate_control_init(), ff_rate_estimate_qscale(), ff_rv34_decode_frame(), ff_set_mpeg4_time(), ff_vdpau_mpeg4_decode_picture(), ff_vdpau_mpeg_picture_complete(), ff_vdpau_vc1_decode_picture(), ff_xvid_encode_frame(), ff_xvid_rate_estimate_qscale(), ff_xvmc_field_start(), fill_decode_caches(), fill_picture_parameters(), fill_slice_long(), get_diff_limited_q(), get_qminmax(), get_qscale(), gxf_write_media_preamble(), h261_decode_frame(), h263_decode_picture_header(), init_pass2(), mpeg1_decode_picture(), mpeg1_encode_mb_internal(), mpeg1_encode_picture_header(), mpeg4_decode_mb(), mpeg4_decode_video_packet_header(), mpeg4_encode_mb(), mpeg4_encode_picture_header(), mpeg4_is_resync(), mpeg_decode_mb(), mpeg_decode_picture_coding_extension(), mpeg_decode_slice(), MPV_decode_mb_internal(), MPV_encode_picture(), MPV_frame_end(), MPV_frame_start(), MPV_motion_internal(), MPV_motion_lowres(), output_picture2(), pred_weight_table(), rv10_decode_frame(), rv10_decode_packet(), rv20_decode_picture_header(), rv30_decode_mb_info(), rv34_decode_mb_header(), rv34_decode_slice(), select_input_picture(), set_frame_distances(), set_mv_intra(), slice_end(), svq1_decode_frame(), svq3_decode_frame(), svq3_decode_mb(), vaapi_mpeg2_start_frame(), vaapi_mpeg4_start_frame(), vaapi_vc1_start_frame(), vc1_decode_blocks(), vc1_decode_frame(), vc1_extract_headers(), vc1_get_MVMODE(), vc1_get_PTYPE(), vc1_has_ACPRED_bitplane(), vc1_has_DIRECTMB_bitplane(), vc1_has_OVERFLAGS_bitplane(), vc1_has_SKIPMB_bitplane(), vc1_parse_frame_header(), vc1_parse_frame_header_adv(), write_back_motion(), and X264_frame().
| #define FF_BI_TYPE 7 |
Definition at line 797 of file avcodec.h.
Referenced by av_get_pict_type_char(), vc1_extract_headers(), vc1_parse_frame_header(), and vc1_parse_frame_header_adv().
| #define FF_BUFFER_HINTS_PRESERVE 0x04 |
Definition at line 801 of file avcodec.h.
Referenced by aasc_decode_frame(), bethsoftvid_decode_init(), cdg_init_frame(), cinepak_decode_frame(), cinvideo_decode_frame(), decode_frame(), flashsv_decode_frame(), flic_decode_frame_15_16BPP(), flic_decode_frame_8BPP(), ir2_decode_frame(), mp_decode_frame(), msrle_decode_frame(), msvideo1_decode_frame(), qtrle_decode_frame(), rpza_decode_frame(), seqvideo_decode_frame(), smc_decode_frame(), truemotion1_decode_frame(), and ulti_decode_frame().
| #define FF_BUFFER_HINTS_READABLE 0x02 |
Definition at line 800 of file avcodec.h.
Referenced by avcodec_default_reget_buffer(), cdg_init_frame(), decode_frame(), qtrle_decode_frame(), and smc_decode_frame().
| #define FF_BUFFER_HINTS_REUSABLE 0x08 |
Definition at line 802 of file avcodec.h.
Referenced by aasc_decode_frame(), bethsoftvid_decode_init(), cdg_init_frame(), cinepak_decode_frame(), cinvideo_decode_frame(), decode_frame(), flashsv_decode_frame(), flic_decode_frame_15_16BPP(), flic_decode_frame_8BPP(), ir2_decode_frame(), mp_decode_frame(), msrle_decode_frame(), msvideo1_decode_frame(), qtrle_decode_frame(), rpza_decode_frame(), seqvideo_decode_frame(), smc_decode_frame(), truemotion1_decode_frame(), and ulti_decode_frame().
| #define FF_BUFFER_HINTS_VALID 0x01 |
Definition at line 799 of file avcodec.h.
Referenced by aasc_decode_frame(), aura_decode_frame(), bethsoftvid_decode_init(), cdg_init_frame(), cinepak_decode_frame(), cinvideo_decode_frame(), cmv_decode_frame(), cyuv_decode_frame(), decode_frame(), flashsv_decode_frame(), flic_decode_frame_15_16BPP(), flic_decode_frame_8BPP(), ir2_decode_frame(), mp_decode_frame(), msrle_decode_frame(), msvideo1_decode_frame(), qtrle_decode_frame(), rpza_decode_frame(), seqvideo_decode_frame(), smc_decode_frame(), tgq_decode_frame(), tgv_decode_frame(), truemotion1_decode_frame(), and ulti_decode_frame().
| #define FF_BUFFER_TYPE_COPY 8 |
Just a (modified) copy of some other buffer, don't deallocate anything.
Definition at line 788 of file avcodec.h.
Referenced by ff_copy_picture(), and ff_print_debug_info().
| #define FF_BUFFER_TYPE_INTERNAL 1 |
Definition at line 785 of file avcodec.h.
Referenced by avcodec_default_get_buffer(), avcodec_default_reget_buffer(), avcodec_default_release_buffer(), ff_mpeg_flush(), and select_input_picture().
| #define FF_BUFFER_TYPE_SHARED 4 |
Buffer from somewhere else; don't deallocate image (data/base), all other tables are not shared.
Definition at line 787 of file avcodec.h.
Referenced by estimate_best_b_count(), ff_alloc_picture(), free_picture(), mpeg4_encode_mb(), select_input_picture(), and skip_check().
| #define FF_BUFFER_TYPE_USER 2 |
direct rendering buffers (image is (de)allocated by user)
Definition at line 786 of file avcodec.h.
Referenced by ff_mpeg_flush(), and select_input_picture().
| #define FF_BUG_AC_VLC 0 |
| #define FF_BUG_AUTODETECT 1 |
autodetection
Definition at line 1158 of file avcodec.h.
Referenced by decode_slice(), and ff_h263_decode_frame().
| #define FF_BUG_DC_CLIP 4096 |
Definition at line 1171 of file avcodec.h.
Referenced by ff_h263_decode_frame(), and ff_mpeg4_pred_dc().
| #define FF_BUG_DIRECT_BLOCKSIZE 512 |
Definition at line 1168 of file avcodec.h.
Referenced by ff_h263_decode_frame(), and ff_mpeg4_set_direct_mv().
| #define FF_BUG_EDGE 1024 |
Definition at line 1169 of file avcodec.h.
Referenced by decode_vop_header(), and ff_h263_decode_frame().
| #define FF_BUG_HPEL_CHROMA 2048 |
Definition at line 1170 of file avcodec.h.
Referenced by ff_h263_decode_frame(), and mpeg_motion_internal().
| #define FF_BUG_MS 8192 |
Work around various bugs in Microsoft's broken decoders.
Definition at line 1172 of file avcodec.h.
Referenced by encode_init(), mpeg4_encode_picture_header(), and mpeg4_encode_vol_header().
| #define FF_BUG_NO_PADDING 16 |
Definition at line 1162 of file avcodec.h.
Referenced by decode_slice(), ff_h263_decode_frame(), and mpeg4_is_resync().
| #define FF_BUG_QPEL_CHROMA 64 |
| #define FF_BUG_QPEL_CHROMA2 256 |
| #define FF_BUG_STD_QPEL 128 |
| #define FF_BUG_UMP4 8 |
Definition at line 1161 of file avcodec.h.
Referenced by decode_vop_header(), and ff_h263_decode_frame().
| #define FF_BUG_XVID_ILACE 4 |
Definition at line 1160 of file avcodec.h.
Referenced by ff_h263_decode_frame(), and mpeg4_decode_mb().
| #define FF_CMP_BIT 5 |
| #define FF_CMP_CHROMA 256 |
Definition at line 1615 of file avcodec.h.
Referenced by check_bidir_mv(), ff_estimate_p_frame_motion(), ff_init_me(), h263_mv4_search(), and X264_init().
| #define FF_CMP_DCT 3 |
| #define FF_CMP_DCT264 14 |
| #define FF_CMP_DCTMAX 13 |
| #define FF_CMP_NSSE 10 |
Definition at line 1610 of file avcodec.h.
Referenced by ff_set_cmp(), get_penalty_factor(), and sse_mb().
| #define FF_CMP_PSNR 4 |
| #define FF_CMP_RD 6 |
Definition at line 1606 of file avcodec.h.
Referenced by ff_set_cmp(), get_penalty_factor(), h263_mv4_search(), and interlaced_search().
| #define FF_CMP_SAD 0 |
Definition at line 1600 of file avcodec.h.
Referenced by ff_init_me(), ff_set_cmp(), and get_penalty_factor().
| #define FF_CMP_SATD 2 |
| #define FF_CMP_SSE 1 |
Definition at line 1601 of file avcodec.h.
Referenced by ff_estimate_p_frame_motion(), ff_set_cmp(), and get_penalty_factor().
| #define FF_CMP_VSAD 8 |
| #define FF_CMP_VSSE 9 |
| #define FF_CMP_W53 11 |
| #define FF_CMP_W97 12 |
| #define FF_CMP_ZERO 7 |
| #define FF_CODER_TYPE_AC 1 |
| #define FF_CODER_TYPE_RAW 2 |
| #define FF_CODER_TYPE_VLC 0 |
Definition at line 1745 of file avcodec.h.
Referenced by libdirac_encode_init(), and libschroedinger_encode_init().
| #define FF_COMPLIANCE_EXPERIMENTAL -2 |
Allow nonstandardized experimental things.
Definition at line 1206 of file avcodec.h.
Referenced by encode_init(), mp3_header_compress(), and MPV_encode_init().
| #define FF_COMPLIANCE_INOFFICIAL -1 |
Allow inofficial extensions.
Definition at line 1205 of file avcodec.h.
Referenced by find_frame_rate_index(), libgsm_init(), and MPV_encode_init().
| #define FF_COMPLIANCE_NORMAL 0 |
Definition at line 1204 of file avcodec.h.
Referenced by encode_init(), ff_fix_long_p_mvs(), ff_get_best_fcode(), and mov_get_codec_tag().
| #define FF_COMPLIANCE_STRICT 1 |
Strictly conform to all the things in the spec no matter what consequences.
Definition at line 1203 of file avcodec.h.
Referenced by decode_frame().
| #define FF_COMPLIANCE_VERY_STRICT 2 |
Strictly conform to a older more strict version of the spec or reference software.
Definition at line 1202 of file avcodec.h.
Referenced by mpeg4_encode_picture_header().
| #define FF_COMPRESSION_DEFAULT -1 |
Definition at line 2249 of file avcodec.h.
Referenced by alac_encode_init(), encode_frame(), and MP3lame_encode_init().
| #define FF_DCT_ALTIVEC 5 |
Definition at line 1371 of file avcodec.h.
Referenced by dsputil_init_ppc(), and MPV_common_init_altivec().
| #define FF_DCT_AUTO 0 |
Definition at line 1366 of file avcodec.h.
Referenced by dsputil_init_bfin(), dsputil_init_ppc(), dsputilenc_init_mmx(), MPV_common_init_altivec(), MPV_common_init_mlib(), and MPV_common_init_mmx().
| #define FF_DCT_FAAN 6 |
| #define FF_DCT_FASTINT 1 |
| #define FF_DCT_MLIB 4 |
| #define FF_DCT_MMX 3 |
Definition at line 1369 of file avcodec.h.
Referenced by dsputilenc_init_mmx(), and MPV_common_init_mmx().
| #define FF_DEBUG_BITSTREAM 4 |
Definition at line 1530 of file avcodec.h.
Referenced by decode_init(), and pcm_bluray_decode_frame().
| #define FF_DEBUG_BUFFERS 0x00008000 |
Definition at line 1543 of file avcodec.h.
Referenced by avcodec_default_get_buffer(), and avcodec_default_release_buffer().
| #define FF_DEBUG_BUGS 0x00001000 |
Definition at line 1540 of file avcodec.h.
Referenced by decode_unregistered_user_data(), and ff_h263_decode_frame().
| #define FF_DEBUG_DCT_COEFF 0x00000040 |
Definition at line 1534 of file avcodec.h.
Referenced by ff_alloc_picture(), and MPV_decode_mb_internal().
| #define FF_DEBUG_ER 0x00000400 |
| #define FF_DEBUG_MB_TYPE 8 |
| #define FF_DEBUG_MMCO 0x00000800 |
Definition at line 1539 of file avcodec.h.
Referenced by ff_h264_execute_ref_pic_marking(), find_short(), print_long_term(), print_short_term(), and remove_short().
| #define FF_DEBUG_MV 32 |
| #define FF_DEBUG_PICT_INFO 1 |
Definition at line 1528 of file avcodec.h.
Referenced by decode_ext_header(), decode_frame(), decode_init(), decode_picture_timing(), decode_slice_header(), decode_vol_header(), decode_vop_header(), ff_flv_decode_picture_header(), ff_h263_show_pict_info(), ff_h264_decode_picture_parameter_set(), ff_h264_decode_seq_parameter_set(), ff_mjpeg_decode_sos(), ff_wmv2_decode_secondary_picture_header(), mjpeg_decode_app(), mjpeg_decode_com(), mpeg1_decode_picture(), mpeg1_decode_sequence(), mpeg_decode_gop(), mpeg_decode_picture_display_extension(), mpeg_decode_sequence_display_extension(), mpeg_decode_sequence_extension(), mpeg_decode_slice(), msmpeg4_decode_picture_header(), pcm_bluray_parse_header(), rv10_decode_init(), rv20_decode_picture_header(), svq3_decode_frame(), and truemotion1_decode_header().
| #define FF_DEBUG_PTS 0x00000200 |
| #define FF_DEBUG_QP 16 |
Definition at line 1532 of file avcodec.h.
Referenced by ff_mjpeg_decode_frame(), ff_print_debug_info(), and mjpegb_decode_frame().
| #define FF_DEBUG_RC 2 |
Definition at line 1529 of file avcodec.h.
Referenced by ff_rate_estimate_qscale(), ff_vbv_update(), and modify_qscale().
| #define FF_DEBUG_SKIP 0x00000080 |
| #define FF_DEBUG_STARTCODE 0x00000100 |
Definition at line 1536 of file avcodec.h.
Referenced by decode_chunks(), decode_nal_units(), ff_mjpeg_decode_frame(), ff_mpeg4_decode_picture_header(), and mjpeg_decode_app().
| #define FF_DEBUG_VIS_MB_TYPE 0x00004000 |
Definition at line 1542 of file avcodec.h.
Referenced by ff_print_debug_info(), and MPV_common_init().
| #define FF_DEBUG_VIS_MV_B_BACK 0x00000004 |
| #define FF_DEBUG_VIS_MV_B_FOR 0x00000002 |
| #define FF_DEBUG_VIS_MV_P_FOR 0x00000001 |
| #define FF_DEBUG_VIS_QP 0x00002000 |
Definition at line 1541 of file avcodec.h.
Referenced by ff_print_debug_info(), and MPV_common_init().
| #define FF_DEFAULT_QUANT_BIAS 999999 |
Definition at line 1702 of file avcodec.h.
Referenced by dnxhd_encode_init(), and MPV_encode_init().
| #define FF_DTG_AFD_14_9 11 |
| #define FF_DTG_AFD_16_9 10 |
| #define FF_DTG_AFD_16_9_SP_14_9 14 |
| #define FF_DTG_AFD_4_3 9 |
| #define FF_DTG_AFD_4_3_SP_14_9 13 |
| #define FF_DTG_AFD_SAME 8 |
| #define FF_DTG_AFD_SP_4_3 15 |
| #define FF_EC_DEBLOCK 2 |
| #define FF_EC_GUESS_MVS 1 |
| #define FF_ER_AGGRESSIVE 3 |
| #define FF_ER_CAREFUL 1 |
| #define FF_ER_COMPLIANT 2 |
Definition at line 1223 of file avcodec.h.
Referenced by h261_decode_gob_header(), h263_decode_block(), huffman_decode(), mpeg1_decode_picture(), mpeg1_decode_sequence(), and mpeg4_decode_block().
| #define FF_I_TYPE 1 |
Intra.
Definition at line 791 of file avcodec.h.
Referenced by av_get_pict_type_char(), av_parser_init(), avs_decode_frame(), bfi_decode_frame(), bmp_decode_frame(), bmp_encode_frame(), cmv_decode_frame(), compute_pkt_fields(), decode_chunks(), decode_frame(), decode_mb_i(), decode_nal_units(), decode_pic(), decode_slice(), decode_slice_header(), decode_vop_header(), dnxhd_decode_init(), dnxhd_encode_init(), encode_frame(), encode_init(), encode_picture(), encode_picture_lossless(), encode_picture_ls(), encode_thread(), estimate_best_b_count(), ff_flv_decode_picture_header(), ff_h263_decode_frame(), ff_h264_decode_mb_cabac(), ff_h264_decode_mb_cavlc(), ff_h264_get_slice_type(), ff_h264_init_cabac_states(), ff_intel_h263_decode_picture_header(), ff_mjpeg_decode_sof(), ff_mpeg4_decode_partitions(), ff_mpeg4_get_video_packet_prefix_length(), ff_mpeg4_merge_partitions(), ff_print_debug_info(), ff_rate_control_init(), ff_rate_estimate_qscale(), ff_rv34_decode_frame(), ff_wmv2_decode_picture_header(), ff_wmv2_decode_secondary_picture_header(), ff_wmv2_encode_mb(), ff_wmv2_encode_picture_header(), ff_xvid_encode_frame(), ff_xvmc_field_start(), fill_picture_parameters(), flashsv_encode_frame(), get_diff_limited_q(), get_qminmax(), get_qscale(), gif_encode_frame(), gxf_write_media_preamble(), h261_decode_frame(), h263_decode_block(), h263_decode_picture_header(), h263_encode_gob_header(), h263_encode_mb(), init_pass2(), is_intra_more_likely(), mimic_decode_frame(), mpeg1_decode_picture(), mpeg1_encode_mb_internal(), mpeg4_decode_partition_a(), mpeg4_decode_partition_b(), mpeg4_decode_video_packet_header(), mpeg4_encode_mb(), mpeg4_encode_picture_header(), mpeg_decode_mb(), mpeg_decode_picture_coding_extension(), mpeg_decode_slice(), MPV_decode_mb_internal(), MPV_frame_start(), msmpeg4_decode_picture_header(), output_picture2(), pam_encode_frame(), parse(), parse_nal_units(), pcx_decode_frame(), pcx_encode_frame(), pnm_decode_frame(), pnm_encode_frame(), ptx_decode_frame(), qtrle_encode_frame(), raw_init_decoder(), raw_init_encoder(), rv10_decode_picture_header(), rv10_encode_picture_header(), rv20_decode_picture_header(), rv20_encode_picture_header(), rv34_decode_slice(), select_input_picture(), sp5x_decode_frame(), sunrast_decode_frame(), svq1_decode_frame(), svq1_decode_frame_header(), svq1_encode_frame(), svq1_encode_plane(), svq1_write_header(), svq3_decode_frame(), svq3_decode_mb(), targa_encode_frame(), tgq_decode_frame(), tgv_decode_frame(), tmv_decode_frame(), txd_decode_frame(), vaapi_mpeg4_start_frame(), vaapi_vc1_start_frame(), vc1_decode_blocks(), vc1_decode_frame(), vc1_get_PTYPE(), vc1_has_ACPRED_bitplane(), vc1_has_OVERFLAGS_bitplane(), vc1_parse_frame_header(), vc1_parse_frame_header_adv(), vp56_decode_frame(), and X264_frame().
| #define FF_IDCT_ALTIVEC 8 |
Definition at line 1423 of file avcodec.h.
Referenced by dsputil_init_ppc(), and MPV_common_init_altivec().
| #define FF_IDCT_ARM 7 |
| #define FF_IDCT_AUTO 0 |
Definition at line 1415 of file avcodec.h.
Referenced by decode_init(), dsputil_init(), dsputil_init_alpha(), dsputil_init_arm(), dsputil_init_bfin(), dsputil_init_mmi(), dsputil_init_mmx(), dsputil_init_ppc(), dsputil_init_sh4(), ff_dsputil_init_armv5te(), ff_dsputil_init_armv6(), ff_dsputil_init_neon(), ff_h263_decode_frame(), MPV_common_init_altivec(), tgq_decode_init(), tqi_decode_init(), vc1_decode_init(), vcr2_init_sequence(), vp3_decode_init(), vp56_init(), and wmv2_decode_init().
| #define FF_IDCT_CAVS 15 |
| #define FF_IDCT_EA 21 |
Definition at line 1436 of file avcodec.h.
Referenced by calc_intra_matrix(), decode_init(), dsputil_init(), tgq_calculate_qtable(), tgq_decode_init(), tqi_calculate_qtable(), and tqi_decode_init().
| #define FF_IDCT_FAAN 20 |
| #define FF_IDCT_INT 1 |
| #define FF_IDCT_LIBMPEG2MMX 4 |
| #define FF_IDCT_MLIB 6 |
| #define FF_IDCT_PS2 5 |
| #define FF_IDCT_SH4 9 |
| #define FF_IDCT_SIMPLE 2 |
Definition at line 1417 of file avcodec.h.
Referenced by parse_ffconfig(), and vcr2_init_sequence().
| #define FF_IDCT_SIMPLEALPHA 23 |
| #define FF_IDCT_SIMPLEARM 10 |
| #define FF_IDCT_SIMPLEARMV5TE 16 |
| #define FF_IDCT_SIMPLEARMV6 17 |
| #define FF_IDCT_SIMPLEMMX 3 |
| #define FF_IDCT_SIMPLENEON 22 |
| #define FF_IDCT_SIMPLEVIS 18 |
| #define FF_IDCT_VP3 12 |
Definition at line 1427 of file avcodec.h.
Referenced by dsputil_init(), dsputil_init_bfin(), dsputil_init_mmx(), dsputil_init_ppc(), ff_dsputil_init_neon(), render_slice(), vp3_decode_init(), and vp56_init().
| #define FF_IDCT_WMV2 19 |
Definition at line 1434 of file avcodec.h.
Referenced by dsputil_init(), vc1_decode_init(), and wmv2_decode_init().
| #define FF_IDCT_XVIDMMX 14 |
Definition at line 1429 of file avcodec.h.
Referenced by dsputil_init_mmx(), and ff_h263_decode_frame().
| #define FF_INPUT_BUFFER_PADDING_SIZE 8 |
Required number of additionally allocated bytes at the end of the input bitstream for decoding.
This is mainly needed because some optimized bitstream readers read 32 or 64 bit at once and could read over the end.
Note: If the first 23 bits of the additional bytes are not 0, then damaged MPEG bitstreams could cause overread and segfault.
Definition at line 432 of file avcodec.h.
Referenced by aac_adtstoasc_filter(), ac3_decode_init(), aiff_read_header(), apc_read_header(), asf_read_header(), atrac3_decode_init(), audio_decode_example(), av_dup_packet(), av_find_stream_info(), av_new_packet(), av_parser_change(), av_parser_parse2(), av_shrink_packet(), avi_read_header(), cook_decode_init(), decode_frame(), decode_i_frame(), decode_p_frame(), decode_stream_header(), dump_extradata(), Faac_encode_init(), ff_combine_frame(), ff_h263_decode_frame(), ff_h264_decode_nal(), ff_mjpeg_decode_frame(), ff_mov_read_esds(), fixup_vorbis_headers(), flac_header(), flac_read_header(), flv_get_extradata(), h264_new_context(), imx_dump_header(), matroska_fix_ass_packet(), matroska_read_header(), mimic_decode_frame(), mjpega_dump_header(), mov2textsub(), mov_read_extradata(), mov_read_glbl(), mov_read_smi(), mov_read_stsz(), mov_read_wave(), mp3_header_compress(), mp3_header_decompress(), mp_decode_frame(), mpc7_decode_frame(), mpc8_parse_seektable(), mpc8_read_header(), mpc_read_header(), mpegts_push_data(), new_pes_packet(), noise(), oma_read_header(), rdt_parse_b64buf(), read_header(), read_kuki_chunk(), rl2_read_header(), rm_read_audio_stream_info(), rm_read_extradata(), sdp_parse_fmtp_config(), spdif_write_packet(), speex_header(), text2movsub(), theora_header(), tiff_unpack_strip(), tqi_decode_frame(), tta_read_header(), vc1_decode_frame(), vc1_decode_init(), vc1_extract_headers(), video_decode_example(), vmd_read_header(), wsvqa_read_header(), and wv_get_value_float().
| #define FF_LAMBDA_MAX (256*128-1) |
| #define FF_LAMBDA_SCALE (1<<FF_LAMBDA_SHIFT) |
Definition at line 1732 of file avcodec.h.
Referenced by ff_init_qscale_tab(), svq1_encode_plane(), and update_qscale().
| #define FF_LAMBDA_SHIFT 7 |
Definition at line 1731 of file avcodec.h.
Referenced by dct_quantize_refine(), dct_quantize_trellis_c(), encode_mb_hq(), estimate_best_b_count(), ff_estimate_p_frame_motion(), ff_init_qscale_tab(), get_b_cbp(), get_p_cbp(), get_penalty_factor(), svq1_encode_plane(), and update_qscale().
| #define FF_LEVEL_UNKNOWN -99 |
Definition at line 2015 of file avcodec.h.
Referenced by encode_init(), and mpeg4_encode_visual_object_header().
| #define FF_LOSS_ALPHA 0x0008 |
loss of alpha bits
Definition at line 2889 of file avcodec.h.
Referenced by avcodec_find_best_pix_fmt(), and avcodec_get_pix_fmt_loss().
| #define FF_LOSS_CHROMA 0x0020 |
loss of chroma (e.g.
RGB to gray conversion)
Definition at line 2891 of file avcodec.h.
Referenced by avcodec_get_pix_fmt_loss().
| #define FF_LOSS_COLORQUANT 0x0010 |
loss due to color quantization
Definition at line 2890 of file avcodec.h.
Referenced by avcodec_find_best_pix_fmt(), and avcodec_get_pix_fmt_loss().
| #define FF_LOSS_COLORSPACE 0x0004 |
loss due to color space conversion
Definition at line 2888 of file avcodec.h.
Referenced by avcodec_find_best_pix_fmt(), and avcodec_get_pix_fmt_loss().
| #define FF_LOSS_DEPTH 0x0002 |
loss due to color depth change
Definition at line 2887 of file avcodec.h.
Referenced by avcodec_find_best_pix_fmt(), and avcodec_get_pix_fmt_loss().
| #define FF_LOSS_RESOLUTION 0x0001 |
loss due to resolution change
Definition at line 2886 of file avcodec.h.
Referenced by avcodec_find_best_pix_fmt(), and avcodec_get_pix_fmt_loss().
| #define FF_MAX_B_FRAMES 16 |
| #define FF_MB_DECISION_BITS 1 |
chooses the one which needs the fewest bits
Definition at line 1796 of file avcodec.h.
Referenced by encode_thread(), and parse_ffconfig().
| #define FF_MB_DECISION_RD 2 |
rate distortion
Definition at line 1797 of file avcodec.h.
Referenced by dnxhd_calc_bits_thread(), dnxhd_encode_picture(), dnxhd_init_rc(), encode_mb_hq(), MPV_decode_mb_internal(), and MPV_encode_init().
| #define FF_MB_DECISION_SIMPLE 0 |
uses mb_cmp
Definition at line 1795 of file avcodec.h.
Referenced by clip_coeffs(), ff_estimate_b_frame_motion(), ff_estimate_p_frame_motion(), and MPV_encode_init().
| #define FF_MIN_BUFFER_SIZE 16384 |
minimum encoding buffer size Used to avoid some checks during header writing.
Definition at line 438 of file avcodec.h.
Referenced by avcodec_decode_audio3(), avcodec_encode_audio(), avcodec_encode_video(), and do_audio_out().
| #define FF_MM_3DNOW 0x0004 |
AMD 3DNOW.
Definition at line 1474 of file avcodec.h.
Referenced by dsputil_init_mmx(), dsputil_init_pix_mmx(), dsputilenc_init_mmx(), ff_fft_init_mmx(), and mm_support().
| #define FF_MM_3DNOWEXT 0x0020 |
AMD 3DNowExt.
Definition at line 1481 of file avcodec.h.
Referenced by dsputil_init_mmx(), ff_fft_init_mmx(), and mm_support().
| #define FF_MM_ALTIVEC 0x0001 |
standard AltiVec
Definition at line 1487 of file avcodec.h.
Referenced by dsputil_init_ppc(), mm_support(), and MPV_common_init_altivec().
| #define FF_MM_FORCE 0x80000000 |
Definition at line 1471 of file avcodec.h.
Referenced by dsputil_init_mmx(), ff_dsputil_init_iwmmxt(), and main().
| #define FF_MM_IWMMXT 0x0100 |
XScale IWMMXT.
Definition at line 1486 of file avcodec.h.
Referenced by ff_dsputil_init_iwmmxt(), mm_support(), and MPV_common_init_iwmmxt().
| #define FF_MM_MMX 0x0001 |
standard MMX
Definition at line 1473 of file avcodec.h.
Referenced by dsputil_init_mmx(), dsputil_init_pix_mmx(), dsputilenc_init_mmx(), ff_h263_decode_frame(), main(), mm_support(), mmx_emms(), and MPV_common_init_mmx().
| #define FF_MM_MMX2 0x0002 |
SSE integer functions or AMD MMX ext.
Definition at line 1478 of file avcodec.h.
Referenced by dsputil_init_mmx(), dsputil_init_pix_mmx(), dsputilenc_init_mmx(), ff_vc1dsp_init_mmx(), main(), mm_support(), and MPV_common_init_mmx().
| #define FF_MM_MMXEXT 0x0002 |
| #define FF_MM_SSE 0x0008 |
SSE functions.
Definition at line 1479 of file avcodec.h.
Referenced by dsputil_init_mmx(), ff_fft_init_mmx(), and mm_support().
| #define FF_MM_SSE2 0x0010 |
PIV SSE2 functions.
Definition at line 1480 of file avcodec.h.
Referenced by dsputil_init_mmx(), dsputil_init_pix_mmx(), dsputilenc_init_mmx(), ff_dnxhd_init_mmx(), mm_support(), and MPV_common_init_mmx().
| #define FF_MM_SSE3 0x0040 |
| #define FF_MM_SSE4 0x0100 |
Penryn SSE4.1 functions.
Definition at line 1484 of file avcodec.h.
Referenced by dsputil_init_mmx(), and mm_support().
| #define FF_MM_SSE42 0x0200 |
Nehalem SSE4.2 functions.
Definition at line 1485 of file avcodec.h.
Referenced by dsputil_init_mmx(), and mm_support().
| #define FF_MM_SSSE3 0x0080 |
Conroe SSSE3 functions.
Definition at line 1483 of file avcodec.h.
Referenced by dsputil_init_mmx(), dsputilenc_init_mmx(), mm_support(), and MPV_common_init_mmx().
| #define FF_P_TYPE 2 |
Predicted.
Definition at line 792 of file avcodec.h.
Referenced by av_get_pict_type_char(), avs_decode_frame(), bfi_decode_frame(), cmv_decode_frame(), decode_chunks(), decode_frame(), decode_pic(), decode_slice_header(), decode_vop_header(), encode_frame(), encode_picture(), estimate_best_b_count(), ff_fix_long_p_mvs(), ff_flv_decode_picture_header(), ff_flv_encode_picture_header(), ff_h263_decode_mb(), ff_h264_decode_mb_cabac(), ff_h264_decode_mb_cavlc(), ff_h264_get_slice_type(), ff_mpeg4_decode_partitions(), ff_mpeg4_get_video_packet_prefix_length(), ff_print_debug_info(), ff_rate_control_init(), ff_rate_estimate_qscale(), ff_vdpau_mpeg4_decode_picture(), ff_vdpau_mpeg_picture_complete(), ff_vdpau_vc1_decode_picture(), ff_wmv2_decode_mb(), ff_xvid_encode_frame(), ff_xvmc_field_start(), flashsv_encode_frame(), get_diff_limited_q(), get_qscale(), h261_decode_picture_header(), h263_decode_picture_header(), h263_encode_picture_header(), init_pass2(), mimic_decode_frame(), modify_qscale(), mpeg1_decode_picture(), mpeg1_encode_mb_internal(), mpeg1_encode_picture_header(), mpeg4_decode_mb(), mpeg4_decode_partitioned_mb(), mpeg4_encode_picture_header(), mpeg_decode_mb(), mpeg_decode_picture_coding_extension(), mpeg_decode_slice(), MPV_encode_picture(), msmpeg4_decode_picture_header(), msmpeg4v12_decode_mb(), msmpeg4v34_decode_mb(), parse(), preview_obmc(), qtrle_encode_frame(), rv10_decode_picture_header(), rv10_encode_picture_header(), rv20_decode_picture_header(), rv34_decode_mb_header(), rv40_decode_mb_info(), select_input_picture(), svq1_encode_frame(), svq1_encode_plane(), svq3_decode_frame(), svq3_decode_mb(), tgv_decode_frame(), vaapi_mpeg2_start_frame(), vaapi_vc1_start_frame(), vc1_decode_blocks(), vc1_decode_skip_blocks(), vc1_get_MVMODE(), vc1_get_MVMODE2(), vc1_get_PTYPE(), vc1_has_MVTYPEMB_bitplane(), vc1_has_SKIPMB_bitplane(), vc1_mc_1mv(), vc1_parse_frame_header(), vc1_parse_frame_header_adv(), vp56_decode_frame(), and X264_frame().
| #define FF_PROFILE_AAC_LOW 1 |
| #define FF_PROFILE_AAC_LTP 3 |
| #define FF_PROFILE_AAC_MAIN 0 |
| #define FF_PROFILE_AAC_SSR 2 |
| #define FF_PROFILE_H264_HIGH_444 244 |