~ubuntu-branches/ubuntu/lucid/mythtv/lucid

« back to all changes in this revision

Viewing changes to programs/mythtranscode/mpeg2fix.h

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2009-10-02 00:23:18 UTC
  • mfrom: (1.1.36 upstream)
  • Revision ID: james.westby@ubuntu.com-20091002002318-5qu2fr0gxl59egft
Tags: 0.22.0~trunk22167-0ubuntu1
* New upstream checkout (r22167).
  - Fixes some segfaults.

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
    int otype;
119
119
    ringbuffer vrbuf;
120
120
    ringbuffer extrbuf[N_AUDIO];
121
 
    ringbuffer ac3extrbuf[N_AUDIO];
122
121
    ringbuffer index_vrbuf;
123
122
    ringbuffer index_extrbuf[N_AUDIO];
124
 
    ringbuffer index_ac3extrbuf[N_AUDIO];
125
123
    int ext_count;
126
 
    int ac3_count;
127
124
    int exttype[N_AUDIO];
128
125
    int exttypcnt[N_AUDIO];
129
126
 
130
127
    pthread_mutex_t mutex;
131
128
    pthread_cond_t cond;
132
129
    audio_frame_t extframe[N_AUDIO];
133
 
    audio_frame_t ac3frame[N_AC3];
134
130
    sequence_t seq_head;
135
131
 
136
132
  private:
244
240
    AVFormatContext *inputFC;
245
241
    int vid_id;
246
242
    int ext_count;
247
 
    int ac3_count;
248
243
    QMap <int, int> aud_map;
249
244
    int aud_stream_count;
250
245
    int64_t ptsIncrement;