diff --git a/src/org/jitsi/impl/neomedia/format/MediaFormatFactoryImpl.java b/src/org/jitsi/impl/neomedia/format/MediaFormatFactoryImpl.java index f9d93d23e18a45bc9b4668fc34fcabaaed482fe1..3d50966d97b9eefdb8c40e5766773681cc071b34 100644 --- a/src/org/jitsi/impl/neomedia/format/MediaFormatFactoryImpl.java +++ b/src/org/jitsi/impl/neomedia/format/MediaFormatFactoryImpl.java @@ -173,8 +173,7 @@ private MediaFormat createMediaFormat( * clockRate. We just want to make sure that the channels and the * format parameters match. */ - if (AbstractMediaStream.matches( - format, + if (format.matches( format.getMediaType(), format.getEncoding(), format.getClockRate(), channels, fmtps)) diff --git a/src/org/jitsi/impl/neomedia/format/MediaFormatImpl.java b/src/org/jitsi/impl/neomedia/format/MediaFormatImpl.java index b79507f26cffd2cf0074bba972be305524c0e50e..29dc9cee58efb9bd2ade1d94f58a1f84ebba5518 100644 --- a/src/org/jitsi/impl/neomedia/format/MediaFormatImpl.java +++ b/src/org/jitsi/impl/neomedia/format/MediaFormatImpl.java @@ -608,4 +608,87 @@ public String toString() return str.toString(); } + + /** + * Determines whether this <tt>MediaFormat</tt> matches properties of a + * specific <tt>MediaFormat</tt>, such as <tt>mediaType</tt>, + * <tt>encoding</tt>, <tt>clockRate</tt> and <tt>channels</tt> for + * <tt>MediaFormat</tt>s with <tt>mediaType</tt> equal to + * {@link MediaType#AUDIO}. + * + * @param format the {@link MediaFormat} whose properties we'd like to + * examine and compare with ours. + */ + public boolean matches(MediaFormat format) + { + if(format == null) + return false; + + MediaType mediaType = format.getMediaType(); + String encoding = format.getEncoding(); + double clockRate = format.getClockRate(); + int channels = MediaType.AUDIO.equals(mediaType) + ? ((AudioMediaFormat) format).getChannels() + : MediaFormatFactory.CHANNELS_NOT_SPECIFIED; + Map<String, String> formatParameters = format.getFormatParameters(); + + return matches( + mediaType, encoding, clockRate, channels, formatParameters); + } + + /** + * Determines whether this <tt>MediaFormat</tt> has specific values + * for its properties <tt>mediaType</tt>, <tt>encoding</tt>, + * <tt>clockRate</tt> and <tt>channels</tt> for <tt>MediaFormat</tt>s with + * <tt>mediaType</tt> equal to {@link MediaType#AUDIO}. + * + * @param mediaType the type we expect {@link MediaFormat} to have + * @param encoding the encoding we are looking for. + * @param clockRate the clock rate that we'd like the format to have. + * @param channels the number of channels that expect to find in this format + * @param formatParameters the format parameters expected to match these of + * the specified <tt>format</tt> + * @return <tt>true</tt> if the specified <tt>format</tt> has specific + * values for its properties <tt>mediaType</tt>, <tt>encoding</tt>, + * <tt>clockRate</tt> and <tt>channels</tt>; otherwise, <tt>false</tt> + */ + public boolean matches(MediaType mediaType, + String encoding, + double clockRate, + int channels, + Map<String, String> formatParameters) + { + // mediaType + // encoding + if (!getMediaType().equals(mediaType) + || !getEncoding().equals(encoding)) + return false; + + // clockRate + if (clockRate != MediaFormatFactory.CLOCK_RATE_NOT_SPECIFIED) + { + double formatClockRate = getClockRate(); + + if ((formatClockRate != MediaFormatFactory.CLOCK_RATE_NOT_SPECIFIED) + && (formatClockRate != clockRate)) + return false; + } + + // channels + if (MediaType.AUDIO.equals(mediaType)) + { + if (channels == MediaFormatFactory.CHANNELS_NOT_SPECIFIED) + channels = 1; + + int formatChannels = ((AudioMediaFormat) this).getChannels(); + + if (formatChannels == MediaFormatFactory.CHANNELS_NOT_SPECIFIED) + formatChannels = 1; + if (formatChannels != channels) + return false; + } + + // formatParameters + return formatParametersMatch(formatParameters); + } } diff --git a/src/org/jitsi/service/neomedia/AbstractMediaStream.java b/src/org/jitsi/service/neomedia/AbstractMediaStream.java index c766a4857c28da0778b1a77fd2c88d3633237d91..4cb77264e55909443a08e13ccf7ecdbd029fe76c 100644 --- a/src/org/jitsi/service/neomedia/AbstractMediaStream.java +++ b/src/org/jitsi/service/neomedia/AbstractMediaStream.java @@ -83,64 +83,6 @@ public String getName() return name; } - /** - * Determines whether a specific <tt>MediaFormat</tt> has specific values - * for its properties <tt>mediaType</tt>, <tt>encoding</tt>, - * <tt>clockRate</tt> and <tt>channels</tt> for <tt>MediaFormat</tt>s with - * <tt>mediaType</tt> equal to {@link MediaType#AUDIO}. - * - * @param format the {@link MediaFormat} whose properties we'd like to - * examine - * @param mediaType the type we expect {@link MediaFormat} to have - * @param encoding the encoding we are looking for. - * @param clockRate the clock rate that we'd like the format to have. - * @param channels the number of channels that expect to find in this format - * @param formatParameters the format parameters expected to match these of - * the specified <tt>format</tt> - * @return <tt>true</tt> if the specified <tt>format</tt> has specific - * values for its properties <tt>mediaType</tt>, <tt>encoding</tt>, - * <tt>clockRate</tt> and <tt>channels</tt>; otherwise, <tt>false</tt> - */ - public static boolean matches( - MediaFormat format, - MediaType mediaType, - String encoding, double clockRate, int channels, - Map<String, String> formatParameters) - { - // mediaType - // encoding - if (!format.getMediaType().equals(mediaType) - || !format.getEncoding().equals(encoding)) - return false; - - // clockRate - if (clockRate != MediaFormatFactory.CLOCK_RATE_NOT_SPECIFIED) - { - double formatClockRate = format.getClockRate(); - - if ((formatClockRate != MediaFormatFactory.CLOCK_RATE_NOT_SPECIFIED) - && (formatClockRate != clockRate)) - return false; - } - - // channels - if (MediaType.AUDIO.equals(mediaType)) - { - if (channels == MediaFormatFactory.CHANNELS_NOT_SPECIFIED) - channels = 1; - - int formatChannels = ((AudioMediaFormat) format).getChannels(); - - if (formatChannels == MediaFormatFactory.CHANNELS_NOT_SPECIFIED) - formatChannels = 1; - if (formatChannels != channels) - return false; - } - - // formatParameters - return format.formatParametersMatch(formatParameters); - } - /** * Removes the specified <tt>PropertyChangeListener</tt> from this stream so * that it won't receive further property change events. diff --git a/src/org/jitsi/service/neomedia/format/MediaFormat.java b/src/org/jitsi/service/neomedia/format/MediaFormat.java index 4d7a34c522cc0f9763a1b898d847f92d04cd9bad..2da0c1652e916a4044e9600dfd18cfed58da0734 100644 --- a/src/org/jitsi/service/neomedia/format/MediaFormat.java +++ b/src/org/jitsi/service/neomedia/format/MediaFormat.java @@ -171,4 +171,47 @@ public interface MediaFormat */ @Override public String toString(); + + /** + * Determines whether this <tt>MediaFormat</tt> matches properties of a + * specific <tt>MediaFormat</tt>, such as <tt>mediaType</tt>, + * <tt>encoding</tt>, <tt>clockRate</tt> and <tt>channels</tt> for + * <tt>MediaFormat</tt>s with <tt>mediaType</tt> equal to + * {@link MediaType#AUDIO}. + * + * @param format the {@link MediaFormat} whose properties we'd like to + * examine + * @param mediaType the type we expect {@link MediaFormat} to have + * @param encoding the encoding we are looking for. + * @param clockRate the clock rate that we'd like the format to have. + * @param channels the number of channels that expect to find in this format + * @param formatParameters the format parameters expected to match these of + * the specified <tt>format</tt> + * @return <tt>true</tt> if the specified <tt>format</tt> has specific + * values for its properties <tt>mediaType</tt>, <tt>encoding</tt>, + * <tt>clockRate</tt> and <tt>channels</tt>; otherwise, <tt>false</tt> + */ + public boolean matches(MediaFormat format); + + /** + * Determines whether this <tt>MediaFormat</tt> has specific values + * for its properties <tt>mediaType</tt>, <tt>encoding</tt>, + * <tt>clockRate</tt> and <tt>channels</tt> for <tt>MediaFormat</tt>s with + * <tt>mediaType</tt> equal to {@link MediaType#AUDIO}. + * + * @param mediaType the type we expect {@link MediaFormat} to have + * @param encoding the encoding we are looking for. + * @param clockRate the clock rate that we'd like the format to have. + * @param channels the number of channels that expect to find in this format + * @param formatParameters the format parameters expected to match these of + * the specified <tt>format</tt> + * @return <tt>true</tt> if the specified <tt>format</tt> has specific + * values for its properties <tt>mediaType</tt>, <tt>encoding</tt>, + * <tt>clockRate</tt> and <tt>channels</tt>; otherwise, <tt>false</tt> + */ + public boolean matches(MediaType mediaType, + String encoding, + double clockRate, + int channels, + Map<String, String> formatParameters); }