diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-10-22 10:17:15 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-10-22 10:17:15 +0000 |
commit | 86288171cbc8d66e7439d25532877a41cec36f75 (patch) | |
tree | d05c82d4c57c13abc27ad55f79344c10155d1784 | |
parent | 601a18b167c73fd0491b9f32d317249076fa93ae (diff) |
Fix stupid typoTYPEFIND-ROOT
Original commit message from CVS:
Fix stupid typo
-rw-r--r-- | ext/ffmpeg/gstffmpegcodecmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ffmpeg/gstffmpegcodecmap.c b/ext/ffmpeg/gstffmpegcodecmap.c index 297105a..a71fe87 100644 --- a/ext/ffmpeg/gstffmpegcodecmap.c +++ b/ext/ffmpeg/gstffmpegcodecmap.c @@ -709,7 +709,7 @@ gst_ffmpeg_caps_to_smpfmt (GstCaps *caps, if (gst_caps_has_property_typed (caps, "channels", GST_PROPS_INT_TYPE)) { - gst_caps_get_int (caps, "rate", &context->channels); + gst_caps_get_int (caps, "channels", &context->channels); } if (gst_caps_has_property_typed (caps, "rate", |