source: 3DVCSoftware/branches/HTM-6.2-dev3-Qualcomm/source/App/TAppDecoder/TAppDecCfg.cpp @ 360

Last change on this file since 360 was 121, checked in by tech, 12 years ago

Fixed several memory leaks.

  • Property svn:eol-style set to native
File size: 5.3 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2012, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TAppDecCfg.cpp
35    \brief    Decoder configuration class
36*/
37
38#include <cstdio>
39#include <cstring>
40#include <string>
41#include "TAppDecCfg.h"
42#include "TAppCommon/program_options_lite.h"
43
44#ifdef WIN32
45#define strdup _strdup
46#endif
47
48using namespace std;
49namespace po = df::program_options_lite;
50
51//! \ingroup TAppDecoder
52//! \{
53
54// ====================================================================================================================
55// Public member functions
56// ====================================================================================================================
57
58/** \param argc number of arguments
59    \param argv array of arguments
60 */
61Bool TAppDecCfg::parseCfg( Int argc, Char* argv[] )
62{
63  bool do_help = false;
64  string cfg_BitstreamFile;
65  string cfg_ReconFile;
66  string cfg_ScaleOffsetFile;
67
68  po::Options opts;
69  opts.addOptions()
70  ("help", do_help, false, "this help text")
71  ("BitstreamFile,b", cfg_BitstreamFile, string(""), "bitstream input file name")
72  ("ReconFile,o",     cfg_ReconFile,     string(""), "reconstructed YUV output file name\n"
73                                                     "YUV writing is skipped if omitted")
74  ("ScaleOffsetFile,p", cfg_ScaleOffsetFile, string(""), "file with coded scales and offsets")
75  ("SkipFrames,s", m_iSkipFrame, 0, "number of frames to skip before random access")
76  ("OutputBitDepth,d", m_outputBitDepth, 0u, "bit depth of YUV output file (use 0 for native depth)")
77  ("MaxTemporalLayer,t", m_iMaxTemporalLayer, -1, "Maximum Temporal Layer to be decoded. -1 to decode all layers")
78  ("SEIpictureDigest", m_pictureDigestEnabled, true, "Control handling of picture_digest SEI messages\n"
79                                              "\t1: check\n"
80                                              "\t0: ignore")
81  ;
82
83  po::setDefaults(opts);
84  const list<const char*>& argv_unhandled = po::scanArgv(opts, argc, (const char**) argv);
85
86  for (list<const char*>::const_iterator it = argv_unhandled.begin(); it != argv_unhandled.end(); it++)
87  {
88    fprintf(stderr, "Unhandled argument ignored: `%s'\n", *it);
89  }
90
91  if (argc == 1 || do_help)
92  {
93    po::doHelp(cout, opts);
94    return false;
95  }
96
97  /* convert std::string to c string for compatability */
98  m_pchBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str());
99  m_pchReconFile = cfg_ReconFile.empty() ? NULL : strdup(cfg_ReconFile.c_str());
100  m_pchScaleOffsetFile = cfg_ScaleOffsetFile.empty() ? NULL : strdup(cfg_ScaleOffsetFile.c_str());
101
102
103  if (!m_pchBitstreamFile)
104  {
105    fprintf(stderr, "No input file specified, aborting\n");
106    return false;
107  }
108
109  return true;
110}
111
112Void TAppDecCfg::xAppendToFileNameEnd( Char* pchInputFileName, const Char* pchStringToAppend, Char*& rpchOutputFileName)
113{
114  size_t iInLength     = strlen(pchInputFileName);
115  size_t iAppendLength = strlen(pchStringToAppend); 
116
117  rpchOutputFileName = (Char*) malloc(iInLength+iAppendLength+1);                       
118  Char* pCDot = strrchr(pchInputFileName,'.');         
119  pCDot = pCDot ? pCDot : pchInputFileName + iInLength;       
120  size_t iCharsToDot = pCDot - pchInputFileName ; 
121  size_t iCharsToEnd = iInLength - iCharsToDot;         
122  strncpy(rpchOutputFileName                            ,  pchInputFileName            , iCharsToDot  );
123  strncpy(rpchOutputFileName+ iCharsToDot               ,  pchStringToAppend           , iAppendLength); 
124  strncpy(rpchOutputFileName+ iCharsToDot+iAppendLength ,  pchInputFileName+iCharsToDot, iCharsToEnd  );       
125  rpchOutputFileName[iInLength+iAppendLength] = '\0';         
126}
127
128//! \}
Note: See TracBrowser for help on using the repository browser.