~ubuntu-branches/ubuntu/saucy/gst-libav1.0/saucy-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavdevice/alsa-audio-enc.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-07-30 09:00:15 UTC
  • mfrom: (1.1.16) (7.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20130730090015-sc1ou2yssu7q5w4e
Tags: 1.1.3-1
* New upstream development snapshot:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.1.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    AlsaData *s = s1->priv_data;
48
48
    AVStream *st;
49
49
    unsigned int sample_rate;
50
 
    enum CodecID codec_id;
 
50
    enum AVCodecID codec_id;
51
51
    int res;
52
52
 
53
53
    st = s1->streams[0];
106
106
    .long_name      = NULL_IF_CONFIG_SMALL("ALSA audio output"),
107
107
    .priv_data_size = sizeof(AlsaData),
108
108
    .audio_codec    = DEFAULT_CODEC_ID,
109
 
    .video_codec    = CODEC_ID_NONE,
 
109
    .video_codec    = AV_CODEC_ID_NONE,
110
110
    .write_header   = audio_write_header,
111
111
    .write_packet   = audio_write_packet,
112
112
    .write_trailer  = ff_alsa_close,