Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / synfig_0_61_07_rc2 / src / modules / mod_ffmpeg / trgt_ffmpeg.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file trgt_ffmpeg.cpp
3 **      \brief ppm Target Module
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 **
21 ** === N O T E S ===========================================================
22 **
23 ** ========================================================================= */
24
25 /* === H E A D E R S ======================================================= */
26
27 #define SYNFIG_TARGET
28
29 #ifdef USING_PCH
30 #       include "pch.h"
31 #else
32 #ifdef HAVE_CONFIG_H
33 #       include <config.h>
34 #endif
35
36 #include <ETL/stringf>
37 #include "trgt_ffmpeg.h"
38 #include <stdio.h>
39 #include <algorithm>
40 #include <functional>
41 #include <ETL/clock>
42
43 #endif
44
45 /* === M A C R O S ========================================================= */
46
47 using namespace synfig;
48 using namespace std;
49 using namespace etl;
50
51 /* === G L O B A L S ======================================================= */
52
53 SYNFIG_TARGET_INIT(ffmpeg_trgt);
54 SYNFIG_TARGET_SET_NAME(ffmpeg_trgt,"ffmpeg");
55 SYNFIG_TARGET_SET_EXT(ffmpeg_trgt,"mpg");
56 SYNFIG_TARGET_SET_VERSION(ffmpeg_trgt,"0.1");
57 SYNFIG_TARGET_SET_CVS_ID(ffmpeg_trgt,"$Id$");
58
59 /* === M E T H O D S ======================================================= */
60
61 ffmpeg_trgt::ffmpeg_trgt(const char *Filename)
62 {
63         file=NULL;
64         filename=Filename;
65         multi_image=false;
66         buffer=NULL;
67         color_buffer=0;
68         set_remove_alpha();
69 }
70
71 ffmpeg_trgt::~ffmpeg_trgt()
72 {
73         if(file)
74         {
75                 etl::yield();
76                 sleep(1);
77                 pclose(file);
78         }
79         file=NULL;
80         delete [] buffer;
81         delete [] color_buffer;
82 }
83
84 bool
85 ffmpeg_trgt::set_rend_desc(RendDesc *given_desc)
86 {
87         //given_desc->set_pixel_format(PF_RGB);
88
89         // Make sure that the width and height
90         // are multiples of 8
91         given_desc->set_w((given_desc->get_w()+4)/8*8);
92         given_desc->set_h((given_desc->get_h()+4)/8*8);
93
94         /*
95         // Valid framerates:
96         // 23.976, 24, 25, 29.97, 30, 50 ,59.94, 60
97         float fps=given_desc->get_frame_rate();
98         if(fps <24.0)
99                 given_desc->set_frame_rate(23.976);
100         if(fps>=24.0 && fps <25.0)
101                 given_desc->set_frame_rate(24);
102         if(fps>=25.0 && fps <29.97)
103                 given_desc->set_frame_rate(25);
104         if(fps>=29.97 && fps <30.0)
105                 given_desc->set_frame_rate(29.97);
106         if(fps>=29.97 && fps <30.0)
107                 given_desc->set_frame_rate(29.97);
108         if(fps>=30.0 && fps <50.0)
109                 given_desc->set_frame_rate(30.0);
110         if(fps>=50.0 && fps <59.94)
111                 given_desc->set_frame_rate(50);
112         if(fps>=59.94)
113                 given_desc->set_frame_rate(59.94);
114     */
115
116         desc=*given_desc;
117
118         return true;
119 }
120
121 bool
122 ffmpeg_trgt::init()
123 {
124         imagecount=desc.get_frame_start();
125         if(desc.get_frame_end()-desc.get_frame_start()>0)
126                 multi_image=true;
127         string command;
128
129         command=strprintf("ffmpeg -f image2pipe -vcodec ppm -an -r %f -i pipe: -loop -hq -title \"%s\" -vcodec mpeg1video -y \"%s\"\n",desc.get_frame_rate(),get_canvas()->get_name().c_str(),filename.c_str());
130
131         file=popen(command.c_str(),"w");
132
133         // etl::yield();
134
135         if(!file)
136         {
137                 synfig::error(_("Unable to open pipe to ffmpeg"));
138                 return false;
139         }
140
141         return true;
142 }
143
144 void
145 ffmpeg_trgt::end_frame()
146 {
147         //fprintf(file, " ");
148         fflush(file);
149         imagecount++;
150 }
151
152 bool
153 ffmpeg_trgt::start_frame(synfig::ProgressCallback */*callback*/)
154 {
155         int w=desc.get_w(),h=desc.get_h();
156
157         if(!file)
158                 return false;
159
160         fprintf(file, "P6\n");
161         fprintf(file, "%d %d\n", w, h);
162         fprintf(file, "%d\n", 255);
163
164         delete [] buffer;
165         buffer=new unsigned char[3*w];
166         delete [] color_buffer;
167         color_buffer=new Color[w];
168
169         return true;
170 }
171
172 Color *
173 ffmpeg_trgt::start_scanline(int /*scanline*/)
174 {
175         return color_buffer;
176 }
177
178 bool
179 ffmpeg_trgt::end_scanline()
180 {
181         if(!file)
182                 return false;
183
184         convert_color_format(buffer, color_buffer, desc.get_w(), PF_RGB, gamma());
185
186         if(!fwrite(buffer,1,desc.get_w()*3,file))
187                 return false;
188
189         return true;
190 }