Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_writeffmpeg.h
| Show All 21 Lines | enum { | ||||
| FFMPEG_DV = 5, | FFMPEG_DV = 5, | ||||
| FFMPEG_H264 = 6, | FFMPEG_H264 = 6, | ||||
| FFMPEG_XVID = 7, | FFMPEG_XVID = 7, | ||||
| FFMPEG_FLV = 8, | FFMPEG_FLV = 8, | ||||
| FFMPEG_MKV = 9, | FFMPEG_MKV = 9, | ||||
| FFMPEG_OGG = 10, | FFMPEG_OGG = 10, | ||||
| FFMPEG_INVALID = 11, | FFMPEG_INVALID = 11, | ||||
| FFMPEG_WEBM = 12, | FFMPEG_WEBM = 12, | ||||
| FFMPEG_AV1 = 13, | |||||
| }; | }; | ||||
| enum { | enum { | ||||
| FFMPEG_PRESET_NONE = 0, | FFMPEG_PRESET_NONE = 0, | ||||
| FFMPEG_PRESET_DVD = 1, | FFMPEG_PRESET_DVD = 1, | ||||
| FFMPEG_PRESET_SVCD = 2, | FFMPEG_PRESET_SVCD = 2, | ||||
| FFMPEG_PRESET_VCD = 3, | FFMPEG_PRESET_VCD = 3, | ||||
| FFMPEG_PRESET_DV = 4, | FFMPEG_PRESET_DV = 4, | ||||
| FFMPEG_PRESET_H264 = 5, | FFMPEG_PRESET_H264 = 5, | ||||
| FFMPEG_PRESET_THEORA = 6, | FFMPEG_PRESET_THEORA = 6, | ||||
| FFMPEG_PRESET_XVID = 7, | FFMPEG_PRESET_XVID = 7, | ||||
| FFMPEG_PRESET_AV1 = 8, | |||||
| }; | }; | ||||
| struct RenderData; | struct RenderData; | ||||
| struct ReportList; | struct ReportList; | ||||
| struct Scene; | struct Scene; | ||||
| int BKE_ffmpeg_start(void *context_v, | int BKE_ffmpeg_start(void *context_v, | ||||
| const struct Scene *scene, | const struct Scene *scene, | ||||
| Show All 33 Lines | |||||