Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/writeavi.c
| Show First 20 Lines • Show All 116 Lines • ▼ Show 20 Lines | |||||
| #endif | #endif | ||||
| /* do the platform specific handles */ | /* do the platform specific handles */ | ||||
| #ifdef WITH_FFMPEG | #ifdef WITH_FFMPEG | ||||
| if (ELEM(imtype, | if (ELEM(imtype, | ||||
| R_IMF_IMTYPE_FFMPEG, | R_IMF_IMTYPE_FFMPEG, | ||||
| R_IMF_IMTYPE_H264, | R_IMF_IMTYPE_H264, | ||||
| R_IMF_IMTYPE_XVID, | R_IMF_IMTYPE_XVID, | ||||
| R_IMF_IMTYPE_THEORA)) { | R_IMF_IMTYPE_THEORA, | ||||
| R_IMF_IMTYPE_AV1)) { | |||||
| mh.start_movie = BKE_ffmpeg_start; | mh.start_movie = BKE_ffmpeg_start; | ||||
| mh.append_movie = BKE_ffmpeg_append; | mh.append_movie = BKE_ffmpeg_append; | ||||
| mh.end_movie = BKE_ffmpeg_end; | mh.end_movie = BKE_ffmpeg_end; | ||||
| mh.get_movie_path = BKE_ffmpeg_filepath_get; | mh.get_movie_path = BKE_ffmpeg_filepath_get; | ||||
| mh.context_create = BKE_ffmpeg_context_create; | mh.context_create = BKE_ffmpeg_context_create; | ||||
| mh.context_free = BKE_ffmpeg_context_free; | mh.context_free = BKE_ffmpeg_context_free; | ||||
| } | } | ||||
| #endif | #endif | ||||
| ▲ Show 20 Lines • Show All 178 Lines • Show Last 20 Lines | |||||