[PATCH v3 2/3] amstream: Implement IAMMultiMediaStream::GetDuration.

Zebediah Figura z.figura12 at gmail.com
Mon Jul 27 18:40:02 CDT 2020


On 7/26/20 3:50 AM, Myah Caron wrote:
> Signed-off-by: Myah Caron <qsniyg at protonmail.com>
> ---
> v3:
>  - Fix test failure under windows server (as it doesn't have the necessary media components, mark it as broken)
>  - Add an extra test using AMMSF_NORENDER
> 
>  dlls/amstream/multimedia.c     |  7 ++-
>  dlls/amstream/tests/amstream.c | 79 ++++++++++++++++++++++++++++++++++
>  2 files changed, 84 insertions(+), 2 deletions(-)
> 
> diff --git a/dlls/amstream/multimedia.c b/dlls/amstream/multimedia.c
> index 200bd5c4a5..8f978b72ff 100644
> --- a/dlls/amstream/multimedia.c
> +++ b/dlls/amstream/multimedia.c
> @@ -177,9 +177,12 @@ static HRESULT WINAPI multimedia_stream_GetDuration(IAMMultiMediaStream *iface,
>  {
>      struct multimedia_stream *This = impl_from_IAMMultiMediaStream(iface);
> 
> -    FIXME("(%p/%p)->(%p) stub!\n", This, iface, pDuration);
> +    TRACE("(%p/%p)->(%p)\n", This, iface, pDuration);
> 
> -    return E_NOTIMPL;
> +    if (!This->media_seeking)
> +        return E_NOINTERFACE;
> +
> +    return IMediaSeeking_GetDuration(This->media_seeking, pDuration);
>  }
> 
>  static HRESULT WINAPI multimedia_stream_Seek(IAMMultiMediaStream *iface, STREAM_TIME seek_time)
> diff --git a/dlls/amstream/tests/amstream.c b/dlls/amstream/tests/amstream.c
> index 48953684f9..b0f1d42242 100644
> --- a/dlls/amstream/tests/amstream.c
> +++ b/dlls/amstream/tests/amstream.c
> @@ -335,6 +335,84 @@ static void test_openfile(const WCHAR *test_avi_path)
>      ok(!ref, "Got outstanding refcount %d.\n", ref);
>  }
> 
> +static void test_mmstream_get_duration(const WCHAR *test_avi_path)
> +{
> +    IAMMultiMediaStream *mmstream = create_ammultimediastream();
> +    LONGLONG duration;
> +    HRESULT hr;
> +    ULONG ref;
> +
> +    duration = 0xdeadbeefdeadbeefULL;
> +    hr = IAMMultiMediaStream_GetDuration(mmstream, &duration);
> +    ok(hr == E_NOINTERFACE, "Got hr %#x.\n", hr);
> +    ok(duration == 0xdeadbeefdeadbeefULL, "Got duration %s.\n",
> +       wine_dbgstr_longlong(duration));
> +
> +    hr = IAMMultiMediaStream_AddMediaStream(mmstream, NULL, &MSPID_PrimaryVideo, 0, NULL);
> +    ok(hr == S_OK, "Got hr %#x.\n", hr);
> +
> +    hr = IAMMultiMediaStream_AddMediaStream(mmstream, NULL, &MSPID_PrimaryAudio, AMMSF_ADDDEFAULTRENDERER, NULL);
> +    ok(hr == S_OK || hr == VFW_E_NO_AUDIO_HARDWARE, "Got hr %#x.\n", hr);
> +
> +    hr = IAMMultiMediaStream_OpenFile(mmstream, test_avi_path, 0);
> +    ok(hr == S_OK, "Got hr %#x.\n", hr);
> +
> +    duration = 0xdeadbeefdeadbeefULL;
> +    hr = IAMMultiMediaStream_GetDuration(mmstream, &duration);
> +
> +    ok(hr == S_OK ||
> +       broken(hr == S_FALSE && duration == 0) /* win server */, "Got hr %#x.\n", hr);
> +    ok(duration == 0xf4240ULL ||
> +       broken(hr == S_FALSE && duration == 0) /* win server */, "Got duration %s.\n",
> +       wine_dbgstr_longlong(duration));

It seems, given the tests below, that S_FALSE is returned if the graph
can't seek (i.e. it's translated from E_NOTIMPL). In that case it'd be
better to key this return value on the return from AddMediaStream() above.

Also, a bit of a nitpick, but I think that duration would be more
readable in decimal.

> +
> +    ref = IAMMultiMediaStream_Release(mmstream);
> +    ok(!ref, "Got outstanding refcount %d.\n", ref);
> +
> +    mmstream = create_ammultimediastream();
> +    hr = IAMMultiMediaStream_AddMediaStream(mmstream, NULL, &MSPID_PrimaryAudio, 0, NULL);
> +    ok(hr == S_OK, "Got hr %#x.\n", hr);
> +
> +    duration = 0xdeadbeefdeadbeefULL;
> +    hr = IAMMultiMediaStream_GetDuration(mmstream, &duration);
> +    todo_wine ok(hr == S_FALSE, "Got hr %#x.\n", hr);
> +    ok(duration == 0, "Got duration %s.\n",
> +       wine_dbgstr_longlong(duration));
> +
> +    ref = IAMMultiMediaStream_Release(mmstream);
> +    ok(!ref, "Got outstanding refcount %d.\n", ref);
> +
> +    mmstream = create_ammultimediastream();
> +
> +    hr = IAMMultiMediaStream_OpenFile(mmstream, test_avi_path, 0);
> +    todo_wine ok(hr == VFW_E_CANNOT_CONNECT, "Got hr %#x.\n", hr);
> +
> +    duration = 0xdeadbeefdeadbeefULL;
> +    hr = IAMMultiMediaStream_GetDuration(mmstream, &duration);
> +    todo_wine ok(hr == S_FALSE, "Got hr %#x.\n", hr);
> +    todo_wine ok(duration == 0, "Got duration %s.\n",
> +                 wine_dbgstr_longlong(duration));
> +
> +    ref = IAMMultiMediaStream_Release(mmstream);
> +    ok(!ref, "Got outstanding refcount %d.\n", ref);
> +
> +    mmstream = create_ammultimediastream();
> +    hr = IAMMultiMediaStream_AddMediaStream(mmstream, NULL, &MSPID_PrimaryAudio, 0, NULL);
> +    ok(hr == S_OK, "Got hr %#x.\n", hr);
> +
> +    hr = IAMMultiMediaStream_OpenFile(mmstream, test_avi_path, AMMSF_NORENDER);
> +    ok(hr == S_OK, "Got hr %#x.\n", hr);
> +
> +    duration = 0xdeadbeefdeadbeefULL;
> +    hr = IAMMultiMediaStream_GetDuration(mmstream, &duration);
> +    todo_wine ok(hr == S_FALSE, "Got hr %#x.\n", hr);
> +    ok(duration == 0, "Got duration %s.\n",
> +       wine_dbgstr_longlong(duration));
> +
> +    ref = IAMMultiMediaStream_Release(mmstream);
> +    ok(!ref, "Got outstanding refcount %d.\n", ref);
> +}
> +
>  static void test_renderfile(const WCHAR *test_avi_path)
>  {
>      IAMMultiMediaStream *pams;
> @@ -5351,6 +5429,7 @@ START_TEST(amstream)
>      test_avi_path = load_resource(L"test.avi");
> 
>      test_openfile(test_avi_path);
> +    test_mmstream_get_duration(test_avi_path);
>      test_renderfile(test_avi_path);
> 
>      unload_resource(test_avi_path);
> --
> 2.27.0
> 
> 
> 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 488 bytes
Desc: OpenPGP digital signature
URL: <http://www.winehq.org/pipermail/wine-devel/attachments/20200727/9bf36f8b/attachment.sig>


More information about the wine-devel mailing list