summaryrefslogtreecommitdiffstats
path: root/ext/raw1394
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2006-06-11 18:52:19 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2006-06-11 18:52:19 +0000
commit95e65f4622d78ae75c85d8a65041f5ebd7578a85 (patch)
tree404e17f1681c3f8dd8fdde1be4c329e9cda8edb9 /ext/raw1394
parenta0e0e270bc9a587f2c0cc5252992f923f8133330 (diff)
ext/raw1394/gstdv1394src.c: gratuitous comment changes
Original commit message from CVS: * ext/raw1394/gstdv1394src.c: (gst_dv1394src_discover_avc_node): gratuitous comment changes * tests/check/elements/level.c: (GST_START_TEST): fix level test leaks
Diffstat (limited to 'ext/raw1394')
-rw-r--r--ext/raw1394/gstdv1394src.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/raw1394/gstdv1394src.c b/ext/raw1394/gstdv1394src.c
index c0100dfc..e717cbca 100644
--- a/ext/raw1394/gstdv1394src.c
+++ b/ext/raw1394/gstdv1394src.c
@@ -706,7 +706,7 @@ gst_dv1394src_discover_avc_node (GstDV1394Src * src)
/* now loop over all the nodes */
for (i = 0; i < raw1394_get_nodecount (handle); i++) {
- /* are we looking for an explicit GUID */
+ /* are we looking for an explicit GUID ? */
if (src->guid != 0) {
if (src->guid == rom1394_get_guid (handle, i)) {
node = i;
@@ -718,7 +718,7 @@ gst_dv1394src_discover_avc_node (GstDV1394Src * src)
} else {
rom1394_directory rom_dir;
- /* select first AV/C Tape Reccorder Player node */
+ /* select first AV/C Tape Recorder Player node */
if (rom1394_get_directory (handle, i, &rom_dir) < 0) {
GST_WARNING ("error reading config rom directory for node %d\n", i);
continue;