~ubuntu-branches/ubuntu/trusty/mkvtoolnix/trusty

« back to all changes in this revision

Viewing changes to src/input/r_mpeg_ts.h

  • Committer: Package Import Robot
  • Author(s): Christian Marillat
  • Date: 2013-01-21 09:04:27 UTC
  • mfrom: (1.1.18) (4.2.26 sid)
  • Revision ID: package-import@ubuntu.com-20130121090427-5c9d0gyf2807ju9d
Tags: 6.0.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
283
283
  bool v_interlaced;
284
284
  int v_version, v_width, v_height, v_dwidth, v_dheight;
285
285
  double v_frame_rate, v_aspect_ratio;
286
 
  memory_cptr v_avcc, raw_seq_hdr;
 
286
  memory_cptr raw_seq_hdr;
287
287
 
288
288
  // audio related parameters
289
289
  int a_channels, a_sample_rate, a_bits_per_sample, a_bsid;
385
385
 
386
386
  static bool probe_file(mm_io_c *in, uint64_t size);
387
387
 
388
 
  virtual const std::string get_format_name(bool translate = true) const {
389
 
    return translate ? Y("MPEG transport stream") : "MPEG transport stream";
 
388
  virtual translatable_string_c get_format_name() const {
 
389
    return YT("MPEG transport stream");
390
390
  }
391
391
 
392
392
  virtual void read_headers();