blob: 8a4414c18b1830ed558fdcb4fb1aad77b572db89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#include <libcxml/cxml.h>
#include "video_content.h"
#include "video_decoder.h"
int const VideoContentProperty::VIDEO_LENGTH = 0;
int const VideoContentProperty::VIDEO_SIZE = 1;
int const VideoContentProperty::VIDEO_FRAME_RATE = 2;
using std::string;
using boost::shared_ptr;
using boost::lexical_cast;
VideoContent::VideoContent (boost::filesystem::path f)
: Content (f)
, _video_length (0)
{
}
VideoContent::VideoContent (shared_ptr<const cxml::Node> node)
: Content (node)
{
_video_length = node->number_child<ContentVideoFrame> ("VideoLength");
_video_size.width = node->number_child<int> ("VideoWidth");
_video_size.height = node->number_child<int> ("VideoHeight");
_video_frame_rate = node->number_child<float> ("VideoFrameRate");
}
void
VideoContent::as_xml (xmlpp::Node* node) const
{
boost::mutex::scoped_lock lm (_mutex);
node->add_child("VideoLength")->add_child_text (lexical_cast<string> (_video_length));
node->add_child("VideoWidth")->add_child_text (lexical_cast<string> (_video_size.width));
node->add_child("VideoHeight")->add_child_text (lexical_cast<string> (_video_size.height));
node->add_child("VideoFrameRate")->add_child_text (lexical_cast<string> (_video_frame_rate));
}
void
VideoContent::take_from_video_decoder (shared_ptr<VideoDecoder> d)
{
{
boost::mutex::scoped_lock lm (_mutex);
_video_size = d->native_size ();
_video_frame_rate = d->frames_per_second ();
}
Changed (VideoContentProperty::VIDEO_SIZE);
Changed (VideoContentProperty::VIDEO_FRAME_RATE);
}
|