diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-03-26 08:12:02 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-03-26 08:12:02 +0100 |
commit | e5caf2eddadd6746fac36a46444358b68d8dfa98 (patch) | |
tree | 00e3cf9b11cb24362b979cfcf1a57dc0df8eddfd /gst/mxf/mxfdv-dif.c | |
parent | 3b88dce4d1bf82e290cbac5a68df2d6fc189b205 (diff) | |
download | gst-plugins-bad-e5caf2eddadd6746fac36a46444358b68d8dfa98.tar.gz gst-plugins-bad-e5caf2eddadd6746fac36a46444358b68d8dfa98.tar.bz2 gst-plugins-bad-e5caf2eddadd6746fac36a46444358b68d8dfa98.zip |
mxfmux: Cleanup
Diffstat (limited to 'gst/mxf/mxfdv-dif.c')
-rw-r--r-- | gst/mxf/mxfdv-dif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/mxf/mxfdv-dif.c b/gst/mxf/mxfdv-dif.c index 508a69fe..220100a3 100644 --- a/gst/mxf/mxfdv-dif.c +++ b/gst/mxf/mxfdv-dif.c @@ -201,8 +201,8 @@ mxf_dv_dif_get_edit_rate (MXFMetadataFileDescriptor * a, GstCaps * caps, gpointer mapping_data, GstBuffer * buf, MXFMetadataSourcePackage * package, MXFMetadataTimelineTrack * track, MXFFraction * edit_rate) { - (*edit_rate).n = a->sample_rate.n; - (*edit_rate).d = a->sample_rate.d; + edit_rate->n = a->sample_rate.n; + edit_rate->d = a->sample_rate.d; } static guint32 |