~vanvugt/ubuntu/oneiric/mediatomb/fix-770964-784431

« back to all changes in this revision

Viewing changes to src/transcoding/transcoding.cc

  • Committer: Bazaar Package Importer
  • Author(s): Andres Mejia
  • Date: 2009-04-22 21:39:19 UTC
  • mto: (4.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20090422213919-52m015y6gcpv1m1g
Tags: upstream-0.12.0~svn2018
ImportĀ upstreamĀ versionĀ 0.12.0~svn2018

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    Copyright (C) 2005 Gena Batyan <bgeradz@mediatomb.cc>,
8
8
                       Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
9
9
    
10
 
    Copyright (C) 2006-2008 Gena Batyan <bgeradz@mediatomb.cc>,
 
10
    Copyright (C) 2006-2009 Gena Batyan <bgeradz@mediatomb.cc>,
11
11
                            Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>,
12
12
                            Leonhard Wimmer <leo@mediatomb.cc>
13
13
    
24
24
    version 2 along with MediaTomb; if not, write to the Free Software
25
25
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
26
26
    
27
 
    $Id: transcoding.cc 1698 2008-02-23 20:48:30Z lww $
 
27
    $Id: transcoding.cc 2010 2009-01-11 19:10:43Z lww $
28
28
*/
29
29
 
30
30
/// \file transcoding.cc
50
50
    tr_type = TR_None;
51
51
    theora = false;
52
52
    accept_url = true;
 
53
    dvd_only = false;
 
54
    force_chunked = true;
53
55
    hide_orig_res = false;
54
56
    thumbnail = false;
 
57
    sample_frequency = SOURCE; // keep original
 
58
    number_of_channels = SOURCE;
55
59
    attributes = Ref<Dictionary>(new Dictionary());
56
60
    fourcc_list = Ref<Array<StringBase> >(new Array<StringBase>());
57
61
    fourcc_mode = FCC_None;
64
68
    theora = false;
65
69
    first_resource = false;
66
70
    accept_url = true;
 
71
    dvd_only = false;
 
72
    force_chunked = true;
67
73
    hide_orig_res = false;
68
74
    thumbnail = false;
 
75
    sample_frequency = SOURCE; // keep original
 
76
    number_of_channels = SOURCE;
69
77
    buffer_size = 0;
70
78
    chunk_size = 0;
71
79
    initial_fill_size = 0;