Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b147f7e5 authored by Lajos Molnar's avatar Lajos Molnar
Browse files

Codec2: fix miscellaneous typos

Bug: 30262321
Change-Id: Iccb33d6a1fd0242b8e64dc2b5344b70c2286a527
parent e8059502
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -154,7 +154,7 @@ public:
     *
     * \retval C2_OK            the fence(s) were successfully signaled
     * \retval C2_BAD_STATE     the fence(s) have already been abandoned or merged (caller error)
     * \retval C2_ALREADY_EXISTS the fence(s) have already been signaled (caller error)
     * \retval C2_DUPLICATE     the fence(s) have already been signaled (caller error)
     * \retval C2_NO_PERMISSION no permission to signal the fence (unexpected - system)
     * \retval C2_CORRUPTED     some unknown error prevented signaling the fence(s) (unexpected)
     */
@@ -167,7 +167,7 @@ public:
     *
     * \retval C2_OK            the merging was successfully done
     * \retval C2_NO_MEMORY     not enough memory to perform the merging
     * \retval C2_ALREADY_EXISTS    the fence have already been merged (caller error)
     * \retval C2_DUPLICATE     the fence have already been merged (caller error)
     * \retval C2_BAD_STATE     the fence have already been signaled or abandoned (caller error)
     * \retval C2_NO_PERMISSION no permission to merge the fence (unexpected - system)
     * \retval C2_CORRUPTED     some unknown error prevented merging the fence(s) (unexpected)
@@ -182,7 +182,7 @@ public:
     *
     * \retval C2_OK            the fence(s) were successfully signaled
     * \retval C2_BAD_STATE     the fence(s) have already been signaled or merged (caller error)
     * \retval C2_ALREADY_EXISTS    the fence(s) have already been abandoned (caller error)
     * \retval C2_DUPLICATE     the fence(s) have already been abandoned (caller error)
     * \retval C2_NO_PERMISSION no permission to abandon the fence (unexpected - system)
     * \retval C2_CORRUPTED     some unknown error prevented signaling the fence(s) (unexpected)
     */
@@ -1379,6 +1379,7 @@ public:
     * \retval C2_OK        the operation was successful
     * \retval C2_NO_PERMISSION no permission to map the portion
     * \retval C2_TIMED_OUT the operation timed out
     * \retval C2_DUPLICATE if the allocation is already mapped.
     * \retval C2_NO_MEMORY not enough memory to complete the operation
     * \retval C2_BAD_VALUE the parameters (offset/size) are invalid or outside the allocation, or
     *                      the usage flags are invalid (caller error)
@@ -1402,6 +1403,7 @@ public:
     *
     * \retval C2_OK        the operation was successful
     * \retval C2_TIMED_OUT the operation timed out
     * \retval C2_NOT_FOUND if the allocation was not mapped previously.
     * \retval C2_BAD_VALUE the parameters (addr/size) do not correspond to previously mapped
     *                      regions (caller error)
     * \retval C2_CORRUPTED some unknown error prevented the operation from completing (unexpected)
@@ -1462,7 +1464,7 @@ public:
     *
     * \retval C2_OK        the operation was successful
     * \retval C2_NO_PERMISSION no permission to map the section
     * \retval C2_ALREADY_EXISTS there is already a mapped region (caller error)
     * \retval C2_DUPLICATE there is already a mapped region (caller error)
     * \retval C2_TIMED_OUT the operation timed out
     * \retval C2_NO_MEMORY not enough memory to complete the operation
     * \retval C2_BAD_VALUE the parameters (rect) are invalid or outside the allocation, or the
+1 −1
Original line number Diff line number Diff line
@@ -224,7 +224,7 @@ public:
     *
     * \retval C2_OK        the tunnel was successfully created
     * \retval C2_BAD_INDEX the target component does not exist
     * \retval C2_ALREADY_EXIST the tunnel already exists
     * \retval C2_DUPLICATE the tunnel already exists
     * \retval C2_UNSUPPORTED  the tunnel is not supported
     *
     * \retval C2_TIMED_OUT could not create the tunnel within the time limit (unexpected)
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ enum C2ParamIndexKind : uint32_t {
    kParamIndexParamStart = 0x800,
};

C2ENUM(C2DomainKind, int32_t,
C2ENUM(C2DomainKind, uint32_t,
    C2DomainVideo,
    C2DomainAudio,
    C2DomainOther = C2DomainAudio + 1
+1 −1
Original line number Diff line number Diff line
/*
 * Copyright (C) 2017 The Android Open Source Project
 * Copyright (C) 2016 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
+1 −1

File changed.

Contains only whitespace changes.