Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2017-09-23 00:13:46 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2017-09-23 00:13:46 +0300
commitdc86b7a4b5c61a4a6e195351961181b74fc15446 (patch)
treee07bca13a6dc6a593e256ca46413abae82b94eba /source/blender/blenkernel/intern/scene.c
parentefd5e3c25401b43cbd7f909418835bb570db1ab3 (diff)
Remove remaining qtcodecdata
This fixes a mistake in rBefd5e3c25401b43cbd7f909418835bb570db1ab3
Diffstat (limited to 'source/blender/blenkernel/intern/scene.c')
-rw-r--r--source/blender/blenkernel/intern/scene.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/blenkernel/intern/scene.c b/source/blender/blenkernel/intern/scene.c
index f1a6b244344..5b809386267 100644
--- a/source/blender/blenkernel/intern/scene.c
+++ b/source/blender/blenkernel/intern/scene.c
@@ -383,12 +383,6 @@ Scene *BKE_scene_copy(Main *bmain, Scene *sce, int type)
sce_copy->r.avicodecdata->lpParms = MEM_dupallocN(sce_copy->r.avicodecdata->lpParms);
}
- /* make a private copy of the qtcodecdata */
- if (sce->r.qtcodecdata) {
- sce_copy->r.qtcodecdata = MEM_dupallocN(sce->r.qtcodecdata);
- sce_copy->r.qtcodecdata->cdParms = MEM_dupallocN(sce_copy->r.qtcodecdata->cdParms);
- }
-
if (sce->r.ffcodecdata.properties) { /* intentionally check scen not sce. */
sce_copy->r.ffcodecdata.properties = IDP_CopyProperty(sce->r.ffcodecdata.properties);
}