aud_player_mpl.c 48.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
/*****************************************************************************
*  Copyright Statement:
*  --------------------
*  This software is protected by Copyright and the information contained
*  herein is confidential. The software may not be copied and the information
*  contained herein may not be used or disclosed except with the written
*  permission of MediaTek Inc. (C) 2005
*
*  BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
*  THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
*  RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
*  AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
*  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
*  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
*  NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
*  SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
*  SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
*  THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
*  NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
*  SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
*
*  BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
*  LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
*  AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
*  OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
*  MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE. 
*
*  THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
*  WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
*  LAWS PRINCIPLES.  ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
*  RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
*  THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
*
*****************************************************************************/

/*******************************************************************************
 * Filename:
 * ---------
 * aud_player_rm.c
 *
 * Project:
 * --------
 *   Maui
 *
 * Description:
 * ------------
 *   This file includes primary functions of Real Media (RM) player.
 *
 * Author:
 * -------
 * -------
 *
 *==============================================================================
 *             HISTORY
 * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!! 
 *------------------------------------------------------------------------------
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 *------------------------------------------------------------------------------
 * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!! 
 *==============================================================================
 *******************************************************************************/

/******************************************************************
 * MODULE
 *    RM Player
 * DESCRIPTION
 *    This module defines related function of RA Player.
 *  
 ******************************************************************/

#ifndef MED_NOT_PRESENT

/*-----------------------------------------------------------------------------
                    include files
-----------------------------------------------------------------------------*/
#include "kal_release.h"
#include "kal_trace.h"
//#include "stack_common.h"
//#include "stack_msgs.h"
//#include "app_ltlcom.h"      /* Task message communiction */
//#include "syscomp_config.h"
//#include "task_config.h"     /* Task creation */
//#include "stacklib.h"        /* Basic type for dll, evshed, stacktimer */
//#include "event_shed.h"      /* Event scheduler */
//#include "stack_timer.h"     /* Stack timer */

/* global includes */
#include "l1audio.h"
//#include "device.h"
//#include "resource_audio.h"
//#include "fat_fs.h"
//#include "drm_gprot.h"
//#include "nvram_enums.h"
//#include "nvram_struct.h"
//#include "nvram_user_defs.h"
//#include "nvram_data_items.h"
//#include "custom_nvram_editor_data_item.h"
//#include "custom_equipment.h"
#include "FSAL.h"

/* local includes */
#include "med_global.h"
#include "aud_defs.h"
#include "med_utility.h"
#include "med_struct.h"
//#include "med_api.h"
//#include "med_context.h"
#include "med_main.h"
#include "aud_main.h"
#include "aud_player.h"
#include "mpl_player.h"
#include "media_session.h"

#include "kal_general_types.h"
#include "med_smalloc.h"

#ifdef __AUD_TRACE_ON__
#include "med_trc.h"
#endif 

#if defined(__MTK_TARGET__) && defined(__MED_MPL_PLAYER__)
/*-----------------------------------------------------------------------------
                    macros, defines, typedefs, enums
-----------------------------------------------------------------------------*/
#define _AUD_PLAYER_MPL_TRACE(x, y, z)    AUD_PLAYER_RM_TRACE(x, y, z, __LINE__)

/* Media Player */
typedef struct
{
    med_aud_player_t              itf;                /* Player interfaces */
    mpl_player_t*                 mpl_player_p;       /* MPL player */
    mpl_player_client_t           mpl_client;         /* MPL client events */
    STFSAL                        fsal_handle;        /* file handle */
    kal_bool                      is_player_opened;   /* Indicate if a player handler is opened successfully */
    kal_bool                      is_file_opened;     /* Indicate if a file handler has been opened successfully */
    kal_uint8                     audio_path;         /* Audio path for audio output */
    kal_uint8                     state;              /* Player state */
    kal_uint16                    app_id;             /* App id (used if __MED_IN_ASM__ is defined) */
    kal_int16                     media_type;         /* Media type */
    kal_uint32                    start_time;         /* Start time */
    kal_uint32                    stop_time;          /* Stop time */
    kal_uint32                    async_result;       /* Result set in asynchronous callback (rm_on_xxx) */
    med_aud_player_cb_fct         cb_fct;             /* Callback when there is event arisen */
    void*                         cb_param;           /* Callback parameter */
} med_aud_player_mpl_t;

/*-----------------------------------------------------------------------------
                    data declaraions
 ----------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
                    function prototypes
 ----------------------------------------------------------------------------*/ 

/*-----------------------------------------------------------------------------
                    private function declarations
 ----------------------------------------------------------------------------*/

/*****************************************************************************
* FUNCTION
*  _aud_player_mpl_to_med_result
* DESCRIPTION
*  This function remaps the result of MPL to MED's.
* PARAMETERS
*  void 
* RETURNS
*  void
*****************************************************************************/
static kal_int32 _aud_player_mpl_to_med_result(media_error_t mpl_result)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/    

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    
    if (mpl_result == MED_S_ASYNC)
    {
        return MED_RES_OK_ASYNC;
    }
    else if (mpl_result == MED_S_TERMINATED)
    {
        return MED_RES_TERMINATED;
    }
    else if (mpl_result == MED_E_CORRUPTED_DATA)
    {
        return MED_RES_INVALID_FORMAT;
    }
    else if (mpl_result == MED_E_STREAM_UNSUPPORTED_BANDWIDTH)
    {
        return MED_RES_STREAM_UNSUPPORTED_BANDWIDTH;
    }
    else if (mpl_result == MED_E_NO_REQUIRED_TRACK)
    {
        return MED_RES_NO_REQUIRED_TRACK;
    }
    else if (mpl_result == MED_E_OVER_LIMIT || mpl_result == MED_E_DECODER_NOT_SUPPORT)
    {
        return MED_RES_DECODER_NOT_SUPPORT;
    }
    else if (mpl_result == MED_E_FRAME_RATE_TOO_HIGH)
    {
        return MED_RES_VIDEO_FRAME_RATE_TOO_HIGH;
    }
    else if (mpl_result == MED_E_INVALID_RESOLUTION)
    {
        return MED_RES_VIDEO_UNSUPPORT_DECODE_SIZE;
    }
    else if (mpl_result == MED_E_MEM_INSUFFICIENT)
    {
        return MED_RES_MEM_INSUFFICIENT;
    }
    else if (mpl_result == MED_E_BAD_FORMAT)
    {
        return MED_RES_BAD_FORMAT;
    }
    else if (mpl_result == MED_E_OPEN_FILE_FAIL)
    {
        return MED_RES_OPEN_FILE_FAIL;
    }
    else if (mpl_result == MED_E_AUDIO_ERROR)
    {
        return MED_RES_AUDIO_ERROR;
    }
    else if (mpl_result == MED_E_VIDEO_ERROR)
    {
        return MED_RES_VIDEO_ERROR;
    }    
    else if (mpl_result == MED_E_STOP_TIME_REACHED)
    {
        return MED_RES_STOP_TIME_REACHED;
    }
    else if (mpl_result == MED_S_PLAY_FINISH)
    {
        return MED_RES_PLAY_FINISH;
    }
    else if (mpl_result == MED_E_STREAM_BUFFER_UNDERFLOW)
    {
        return MED_RES_STREAM_BUFFER_UNDERFLOW;
    }
    else if (mpl_result == MED_E_PDL_AUDIO_UNDERFLOW)
    {
        return MED_RES_PDL_AUDIO_UNDERFLOW;
    } 
    else if (mpl_result == MED_E_PDL_VIDEO_UNDERFLOW)
    {
        return MED_RES_PDL_VIDEO_UNDERFLOW;
    }
    else if (mpl_result == MED_E_STREAM_BUFFER_OVERFLOW)
    {
        return MED_RES_STREAM_BUFFER_OVERFLOW;
    }
    else if (mpl_result == MED_E_MP4_NO_VIDEO_TRACK)
    {
        return MED_RES_MP4_NO_VIDEO_TRACK;
    }
    else if (mpl_result >= 0)
    {
        return MED_RES_OK;
    }

    return MED_RES_FAIL;
}

/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_resume
 * DESCRIPTION
 *  This function is used to seek to a given time.
 * PARAMETERS
 *  player_p      [IN]        Player handle. 
 * RETURNS
 *  
 *****************************************************************************/
static kal_int32 _aud_player_mpl_seek(med_aud_player_t* player_p, kal_uint32 time)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t*       self_p;
    mpl_player_seek_t          seek_req;
    media_error_t              mpl_result;
    kal_int32                  med_result;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(player_p != NULL);
    self_p = PTHIS(player_p, med_aud_player_mpl_t, itf);
    
    /* Seek */
    kal_mem_set(&seek_req, 0, sizeof(mpl_player_seek_t));

    /* get default setting */
    self_p->mpl_player_p->get_default(self_p->mpl_player_p, MPL_SEEK_PARAM, &seek_req);
    
    seek_req.time     = (kal_uint32)time;

    mpl_result = self_p->mpl_player_p->seek(self_p->mpl_player_p, &seek_req);
    med_result = _aud_player_mpl_to_med_result(mpl_result);
    _AUD_PLAYER_MPL_TRACE(med_result, self_p->mpl_player_p, -1);
    
    if (med_result == MED_RES_OK_ASYNC) /* Seeking */
    {
        /* When the seeking is completed, the on_seek function will be called.
         * We have to check the seek result which is updated in the callback function.
         */
        med_result = self_p->async_result;
        _AUD_PLAYER_MPL_TRACE(med_result, self_p->mpl_player_p, -1);
    }
    
    return med_result;
}


/*****************************************************************************
 * FUNCTION
 *  _aud_player_mpl_on_open
 * DESCRIPTION
 *  This function is called when the RA player is opened.
 * PARAMETERS
 *  result      [IN]           Open result.              
 * RETURNS
 *  
 *****************************************************************************/
static void _aud_player_mpl_on_open(mpl_player_client_t* client_p, media_error_t mpl_result)
{
    /* Do nothing because the opening of RA is a blocking call. */
}


/*****************************************************************************
 * FUNCTION
 *  _aud_player_mpl_on_play
 * DESCRIPTION
 *  This function is called when there is play event arisen. Note that when
 *  the play is finished or there is some wrong, the player will be automatically
 *  stopped. Hence, we have to update player to IDLE state in these cases. When
 *  the player is asked to be stopped again, we could prevent any failure when
 *  we try to stop the player again.
 * PARAMETERS
 *  result      [IN]           Open result.              
 * RETURNS
 *  
 *****************************************************************************/
static void _aud_player_mpl_on_play(mpl_player_client_t* client_p, media_error_t mpl_result)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t* self_p;
    Media_Event          event = MEDIA_NONE;
    kal_int32            med_result;
    
    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(client_p != NULL);
    self_p = PTHIS(client_p, med_aud_player_mpl_t, mpl_client);

    med_result = _aud_player_mpl_to_med_result(mpl_result);
    _AUD_PLAYER_MPL_TRACE(med_result, client_p, -1);
    
    switch (med_result)
    {
        case MED_RES_PLAY_FINISH:
            event = MEDIA_END;
            break;
        case MED_RES_STOP_TIME_REACHED:
            event = MEDIA_STOP_TIME_UP;
            break;
        case MED_RES_FAIL:
        case MED_RES_AUDIO_ERROR:
            event = MEDIA_ERROR;
            break;
        default:
            event = MEDIA_ERROR;
            break;
    }

    self_p->state = AUD_MEDIA_IDLE;

    /* Callback event to player handler */
    if (self_p->cb_fct)
    {
        self_p->cb_fct(&self_p->itf, event, self_p->cb_param);
    }
}


/*****************************************************************************
 * FUNCTION
 *  _aud_player_mpl_on_seek
 * DESCRIPTION
 *  This function is called when seeking is done.
 * PARAMETERS
 *  result      [IN]           Open result.              
 * RETURNS
 *  
 *****************************************************************************/
static void _aud_player_mpl_on_seek(mpl_player_client_t* client_p, media_error_t mpl_result)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t* self_p;
    kal_int32            med_result;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(client_p != NULL);
    self_p = PTHIS(client_p, med_aud_player_mpl_t, mpl_client);

    /* Update result */
    med_result = _aud_player_mpl_to_med_result(mpl_result);
    self_p->async_result = med_result;
}


/*****************************************************************************
 * FUNCTION
 *  _aud_player_mpl_on_close
 * DESCRIPTION
 *  This function is called when the player is closed.
 * PARAMETERS
 *  result      [IN]           Open result.              
 * RETURNS
 *  
 *****************************************************************************/
static void _aud_player_mpl_on_close(mpl_player_client_t* client_p, media_error_t mpl_result)
{

}

/*****************************************************************************
 * FUNCTION
 *  _aud_player_mpl_on_event
 * DESCRIPTION
 *  This function is called when the player is closed.
 * PARAMETERS
 *  result      [IN]           Open result.              
 * RETURNS
 *  
 *****************************************************************************/
static void _aud_player_mpl_on_event(mpl_player_client_t *client, mpl_player_event_t event, media_error_t mpl_result)
{
    switch(event)
    {
        case MPL_PLAYER_EVENT_OPEN:
            _aud_player_mpl_on_open(client, mpl_result);
            break;
        case MPL_PLAYER_EVENT_SEEK:
            _aud_player_mpl_on_seek(client, mpl_result);
            break;
        case MPL_PLAYER_EVENT_PLAY:
            _aud_player_mpl_on_play(client, mpl_result);
            break;
        case MPL_PLAYER_EVENT_CLOSE:
            _aud_player_mpl_on_close(client, mpl_result);
            break;
        default:
            ASSERT(0);
            break;
    }
}

/*****************************************************************************
 * FUNCTION
 *  _aud_player_mpl_alloc_mem
 * DESCRIPTION
 *  This function is to allocate memory.
 * PARAMETERS
 *  client_p      [IN]          MPL handle    
 *  size          [IN]          Memory size
 *  type          [IN]          Memory type
 *  file          [IN]          File name       
 *  line          [IN]          The line number in the file
 * RETURNS
 *  
 *****************************************************************************/
static void* _aud_player_mpl_alloc_mem(mpl_player_client_t *client_p, kal_uint32 size, med_mem_type_enum type, char* file, long line)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t* self_p;
    void* mem_p = NULL;
    kal_bool use_med_aud = KAL_FALSE;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(client_p != NULL);
    self_p = PTHIS(client_p, med_aud_player_mpl_t, mpl_client);

    switch(self_p->media_type)
    {
        case MED_TYPE_M4A:
        case MED_TYPE_MP4:
        case MED_TYPE_3GP:
        {
            use_med_aud = KAL_TRUE;
            break;
        }
        default:
            break;
    }

    switch (type)
    {
        case MED_MEM_NONCACHE:
        {
            if(use_med_aud)
            {
                mem_p = med_alloc_ext_mem_ext(size,MED_EXT_MEMORY_TYPE_AUDIO_NONCACHEABLE,file,line);
            }
            else
            {
                mem_p = med_alloc_mem(self_p->app_id, size, file, line);
            }
            break;
        }

        case MED_MEM_CACHE:
        {
            if(use_med_aud)
            {
                mem_p = med_alloc_ext_mem_ext(size,MED_EXT_MEMORY_TYPE_AUDIO_CACHEABLE,file,line);
            }
            else
            {
                mem_p = med_alloc_mem_cacheable(self_p->app_id, size, file, line);
            }
            break;
        }

        case MED_MEM_AUD_RINGBUFF:
            aud_util_alloc_ring_buffer_w_log(file, line, size, (kal_uint16**)&mem_p);
            break;
        default:
            break;
    }
    
    return mem_p;
}


/*****************************************************************************
 * FUNCTION
 *  _aud_player_mpl_free_mem
 * DESCRIPTION
 *  This function is to free memory.
 * PARAMETERS
 *  client_p      [IN]          MPL handle    
 *  mem_p         [IN]          Memory pointer
 *  type          [IN]          Memory type
 *  file          [IN]          File name       
 *  line          [IN]          The line number in the file
 * RETURNS
 *  
 *****************************************************************************/
static void _aud_player_mpl_free_mem(mpl_player_client_t *client_p, void** mem_p, med_mem_type_enum type, char* file, long line)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t* self_p;
    kal_bool use_med_aud = KAL_FALSE;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(client_p != NULL);
    self_p = PTHIS(client_p, med_aud_player_mpl_t, mpl_client);

    switch(self_p->media_type)
    {
        case MED_TYPE_M4A:
        case MED_TYPE_MP4:
        case MED_TYPE_3GP:
        {
            use_med_aud = KAL_TRUE;
            break;
        }
        default:
            break;
    }

    switch (type)
    {
        case MED_MEM_NONCACHE:
        case MED_MEM_CACHE:
            if(use_med_aud)
            {
                med_free_aud_mem_ext(mem_p, file, line);
            }
            else
            {
                med_free_mem(self_p->app_id, mem_p, file, line);
            }
            break;
        case MED_MEM_AUD_RINGBUFF:
            aud_util_free_ring_buffer_w_log(file, line, (kal_uint16**)mem_p);
            break;
        default:
            break;
    }
}


/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_close
 * DESCRIPTION
 *  This function is used to close an MP4 player.
 * PARAMETERS
 *  player_p      [IN]        Player handle.              
 * RETURNS
 *  
 *****************************************************************************/
static kal_int32 _aud_player_mpl_close(med_aud_player_t* player_p)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t* self_p;
    media_error_t        mpl_result;
    kal_int32            med_result;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(player_p != NULL);
    self_p = PTHIS(player_p, med_aud_player_mpl_t, itf);

    if (self_p->is_player_opened)
    {
        mpl_result = self_p->mpl_player_p->close(self_p->mpl_player_p);
        med_result = _aud_player_mpl_to_med_result(mpl_result);
        _AUD_PLAYER_MPL_TRACE(med_result, self_p->mpl_player_p, -1);

        self_p->is_player_opened = KAL_FALSE;
    }

    /* Free FSAL resources */
    if (self_p->is_file_opened)
    {
        /* Free buffer */
        if (self_p->fsal_handle.bBuffering && self_p->fsal_handle.pbBuf != NULL)
        {
        #if defined(AUD_PROC_USE_EXT_MEM)
            AUD_PLAYER_FREE_AUD_MEM(self_p->fsal_handle.pbBuf);
        #else
            AUD_PLAYER_FREE_CTRL_BUF(self_p->fsal_handle.pbBuf);
        #endif
        }
        
        /* Close FSAL handler */
        FSAL_Close(&self_p->fsal_handle);
        
        self_p->is_file_opened = KAL_FALSE;
    }
    
    return MED_RES_OK;
}


/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_open
 * DESCRIPTION
 *  This function is used to open a RA player.
 * PARAMETERS
 *  player_p       [IN]        Player handle.
 *  cfg            [IN]        Player configuration.  
 * RETURNS
 *  
 *****************************************************************************/
static kal_int32 _aud_player_mpl_open(med_aud_player_t* player_p, med_aud_player_cfg_t* cfg_p)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t*       self_p;
    mpl_player_open_t          open_req;
    FSAL_Status                fsal_result;
    kal_uint8*                 fsal_buf_p;
    media_error_t              mpl_result;
    kal_int32                  med_result = MED_RES_OK;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(player_p != NULL);
    self_p = PTHIS(player_p, med_aud_player_mpl_t, itf);
     
    /* Open from file */
    if (cfg_p->file_name != NULL)
    {
        self_p->media_type = med_get_media_type(cfg_p->file_name);

        /* Open a FSAL handle for content descriptor */
        fsal_result = FSAL_Open(&self_p->fsal_handle, cfg_p->file_name, FSAL_READ_SHARED);
        
        if (fsal_result != FSAL_OK)
        {
            return MED_RES_OPEN_FILE_FAIL;
        }

        /* Set Buffer to increase read performance */
    #if defined(AUD_PROC_USE_EXT_MEM)
        fsal_buf_p = (kal_uint8*) med_alloc_aud_mem(sizeof(kal_uint8) * AUD_PROC_BUF_SIZE);
    #else
        fsal_buf_p = (kal_uint8*) get_ctrl_buffer(sizeof(kal_uint8) * AUD_PROC_BUF_SIZE);
    #endif
    
        FSAL_SetBuffer(&self_p->fsal_handle, AUD_PROC_BUF_SIZE, fsal_buf_p);
    }
    /* Open from buffer */
    else if (cfg_p->data_p != NULL)
    {
        self_p->media_type = (kal_int16)cfg_p->format;

        /* Open a FSAL handle for content descriptor */
        FSAL_Direct_SetRamFileSize(&self_p->fsal_handle, cfg_p->data_len);

        fsal_result = FSAL_Open(&self_p->fsal_handle, cfg_p->data_p, FSAL_ROMFILE);

        if (fsal_result != FSAL_OK)
        {
            return MED_RES_OPEN_FILE_FAIL;
        }
    }
    else
    {
        ASSERT(0);
        return MED_RES_PARAM_ERROR;
    }

    self_p->is_file_opened = KAL_TRUE;

    /* Construct RM player only if the callback function is not NULL. This mechanism is to
     * allow a client to get content description by opening an RM player with NULL callback.
     * In this case, the app_id is not required.
     */
    if (cfg_p->cb_fct)
    {
        /* Keep app id */
    #if defined(__MED_IN_ASM__) && defined(__PLUTO_MMI_PACKAGE__)
        self_p->app_id = 0;
    #else
        self_p->app_id = cfg_p->app_id;
    #endif
        
        /* Construct a media session */
        self_p->mpl_player_p = construct_media_session(&self_p->mpl_client);
        MED_ASSERT(self_p->mpl_player_p != NULL);
        _AUD_PLAYER_MPL_TRACE(self_p->mpl_player_p, -1, -1);

        /* Construct open struct */
        kal_mem_set(&open_req, 0, sizeof(mpl_player_open_t));

        self_p->mpl_player_p->get_default(self_p->mpl_player_p, MPL_OPEN_PARAM, &open_req);
        
        if (cfg_p->file_name != NULL)
        {
            open_req.media_mode      = MED_MODE_FILE;
            open_req.media_type      = (kal_uint8)med_get_media_type(cfg_p->file_name);
            open_req.data            = (void*)cfg_p->file_name;
            open_req.data_size       = (kal_uint32)kal_wstrlen(cfg_p->file_name);
            open_req.open_track      = MED_VID_AUDIO_ONLY;
            open_req.enable_aud_only = (kal_bool)KAL_TRUE;
        }
        else
        {
            open_req.media_mode      = MED_MODE_ARRAY;
            open_req.media_type      = (kal_uint8)cfg_p->format;
            open_req.data            = (void*)cfg_p->data_p;
            open_req.data_size       = (kal_uint32)cfg_p->data_len;
            open_req.open_track      = MED_VID_AUDIO_ONLY;
            open_req.enable_aud_only = (kal_bool)KAL_TRUE;
        }

        /* MPL do not recognize m4a, it is identical to mp4 in their point of view */
        if(open_req.media_type == MED_TYPE_M4A)
        {
            open_req.media_type = MED_TYPE_MP4;
        }

        mpl_result = self_p->mpl_player_p->open(self_p->mpl_player_p, &open_req);
        med_result = _aud_player_mpl_to_med_result(mpl_result);

        _AUD_PLAYER_MPL_TRACE(med_result, open_req.media_type, player_p);

        if ((med_result == MED_RES_OK) || (med_result == MED_RES_MP4_NO_VIDEO_TRACK)) /* Open Successfully */
        {
            self_p->is_player_opened = KAL_TRUE;
            self_p->state            = AUD_MEDIA_IDLE;
            self_p->start_time       = 0;
            self_p->audio_path       = cfg_p->audio_path;
            self_p->cb_fct           = cfg_p->cb_fct;
            self_p->cb_param         = cfg_p->cb_param;
            
            /* Seek to the beginning */
            med_result = _aud_player_mpl_seek(player_p, 0);
            _AUD_PLAYER_MPL_TRACE(med_result, player_p, -1);
        }
        else
        {
            /* Overwrite return code to have consistent UI display */
            switch (med_result)
            {
                case MED_RES_NO_REQUIRED_TRACK:
                    med_result = MED_RES_MP4_NO_AUDIO_TRACK;
                    break;
                default:
                    med_result = MED_RES_BAD_FORMAT;
                    break;
            }
        }
    }

    /*------------------------ Error handling -------------------------------*/
    if (med_result != MED_RES_OK)
    {
        /* Close the MPL player */
        _aud_player_mpl_close(player_p);
    }

    return med_result;
}


/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_play
 * DESCRIPTION
 *  This function is used to start RA playback.
 * PARAMETERS
 *  player_p      [IN]        Player handle. 
 * RETURNS
 *  
 *****************************************************************************/
static kal_int32 _aud_player_mpl_play(med_aud_player_t* player_p)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t*     self_p;
    mpl_player_play_t          play_req;
    media_error_t              mpl_result;
    kal_int32                  med_result;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(player_p != NULL);
    self_p = PTHIS(player_p, med_aud_player_mpl_t, itf);

    /* Directly return if the player is already in play state */
    if (self_p->state == AUD_MEDIA_PLAY)
    {
        return MED_RES_OK;
    }
    
    /* Configure parameters for audio playback */
    kal_mem_set(&play_req, 0, sizeof(mpl_player_play_t));

    /* get default setting */
    self_p->mpl_player_p->get_default(self_p->mpl_player_p, MPL_PLAY_PARAM, &play_req);
    
    play_req.play_speed = (kal_int16)100;
    play_req.play_audio = (kal_uint8)KAL_TRUE;
    play_req.audio_path = (kal_uint8)self_p->audio_path;
    
    /* Begin to play */
    mpl_result = self_p->mpl_player_p->play(self_p->mpl_player_p, &play_req);
    med_result = _aud_player_mpl_to_med_result(mpl_result);
    _AUD_PLAYER_MPL_TRACE(med_result, self_p->mpl_player_p, mpl_result);
    
    if (med_result == MED_RES_OK)
    {
        /* enter AUD_MEDIA_PLAY state */
        self_p->state = AUD_MEDIA_PLAY;
    }
    
    return med_result;
}


/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_stop
 * DESCRIPTION
 *  This function is used to stop RA playback.
 * PARAMETERS
 *  player_p      [IN]        Player handle. 
 * RETURNS
 *  
 *****************************************************************************/
static kal_int32 _aud_player_mpl_stop(med_aud_player_t* player_p)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t* self_p;
    media_error_t        mpl_result;
    kal_int32            med_result = MED_RES_OK;
    
    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(player_p != NULL);
    self_p = PTHIS(player_p, med_aud_player_mpl_t, itf);

    /* It's important to check player state because the player will be
     * automatically closed when the play is finished or there is something
     * wrong. Once the player is stopped, any attempt to stop the player
     * again will get failure.
     */
    if (self_p->state != AUD_MEDIA_IDLE)
    {
        mpl_result = self_p->mpl_player_p->stop_play(self_p->mpl_player_p);  
        med_result = _aud_player_mpl_to_med_result(mpl_result);

        _AUD_PLAYER_MPL_TRACE(med_result, self_p->mpl_player_p, mpl_result);

        /* Seek to the beginning */
        med_result = _aud_player_mpl_seek(player_p, 0);
        _AUD_PLAYER_MPL_TRACE(med_result, player_p, -1);
        
        /* enter AUD_MEDIA_IDLE state */
        self_p->state = AUD_MEDIA_IDLE;
    }
    
    return med_result;
}


/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_pause
 * DESCRIPTION
 *  This function is used to pause RA playback.
 * PARAMETERS
 *  player_p      [IN]        Player handle. 
 * RETURNS
 *  
 *****************************************************************************/
static kal_int32 _aud_player_mpl_pause(med_aud_player_t* player_p)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t*          self_p;
    media_error_t                 mpl_result;
    kal_int32                     med_result;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(player_p != NULL);
    self_p = PTHIS(player_p, med_aud_player_mpl_t, itf);
    
    /* Stop the play */
    mpl_result = self_p->mpl_player_p->stop_play(self_p->mpl_player_p);  
    med_result = _aud_player_mpl_to_med_result(mpl_result);
    _AUD_PLAYER_MPL_TRACE(med_result, self_p->mpl_player_p, mpl_result);
    
    if (med_result == MED_RES_OK)
    {
        /* enter AUD_MEDIA_PLAY_PAUSED state */
        self_p->state = AUD_MEDIA_PLAY_PAUSED;
    }
    
    return med_result;
}


/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_resume
 * DESCRIPTION
 *  This function is used to resume RA playback.
 * PARAMETERS
 *  player_p      [IN]        Player handle. 
 * RETURNS
 *  
 *****************************************************************************/
static kal_int32 _aud_player_mpl_resume(med_aud_player_t* player_p)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t*       self_p;
    kal_int32                  med_result;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(player_p != NULL);
    self_p = PTHIS(player_p, med_aud_player_mpl_t, itf);
    
    /* Play from last stopped time. Note that we don't have to seek 
     * to last time because when MPL player is stopped, it will stay
     * at last pasued position. When we try to play the MPL player
     * again, it will resume playback from last position. I.e. we 
     * could save the time to seek to last time.
     */
    med_result = _aud_player_mpl_play(player_p);
    _AUD_PLAYER_MPL_TRACE(med_result, self_p->mpl_player_p, -1);
    
    if (med_result == MED_RES_OK)
    {
        /* enter AUD_MEDIA_PLAY state */
        self_p->state = AUD_MEDIA_PLAY;
    }
    
    return med_result;
}


/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_set
 * DESCRIPTION
 *  This function is used to set parameters to a MPL player.
 * PARAMETERS
 *  player_p       [IN]        Player handle.
 *  set_type       [IN]        Set command.
 *  data_p         [IN]        The data relative to the command.
 *  data_len       [IN]        The length of the data.
 * RETURNS
 *  
 *****************************************************************************/
static kal_int32 _aud_player_mpl_set(med_aud_player_t*     player_p,
                                    med_aud_player_set_t  set_type,
                                    void*                 data_p)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t* self_p;
    kal_int32            med_result = MED_RES_UNSUPPORTED_OPERATION;

    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(player_p != NULL);
    self_p = PTHIS(player_p, med_aud_player_mpl_t, itf);

    _AUD_PLAYER_MPL_TRACE(set_type, (kal_uint32)data_p, -1);
    
    switch (set_type)
    {
        case AUD_PLAYER_SET_START_TIME:
        {
            kal_uint32 start_time = (kal_uint32)data_p;
            
            med_result = _aud_player_mpl_seek(player_p, start_time);
            _AUD_PLAYER_MPL_TRACE(med_result, self_p->mpl_player_p, -1);
            
            if (med_result == MED_RES_OK)
            {
                self_p->start_time = start_time;
            }
            
            break;
        }
        case AUD_PLAYER_SET_STOP_TIME:
        {
            kal_uint32 stop_time = (kal_uint32)data_p;

            self_p->mpl_player_p->set_param(self_p->mpl_player_p, MPL_PARAM_STOP_TIME, (kal_uint64*)&stop_time);
            self_p->stop_time = stop_time;
            
            break;
        }
        case AUD_PLAYER_SET_LEVEL:
        {
            kal_uint8 volume = (kal_uint8)(kal_uint32)data_p;
            
            self_p->mpl_player_p->set_param(self_p->mpl_player_p, MPL_PARAM_AUD_VOLUME, (void*)&volume);
            
            break;
        }
        
        /* Unsupported commands */
        case AUD_PLAYER_SET_CACHE_TABLE:
        case AUD_PLAYER_SET_BUFFER:
        case AUD_PLAYER_SET_STORE_FLAG:
        case AUD_PLAYER_SET_FILE_OFFSET:
        default:
            med_result = MED_RES_UNSUPPORTED_OPERATION;
            break;
    }
    
    return med_result;
}


/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_get
 * DESCRIPTION
 *  This function is used to get parameters from a RA player.
 * PARAMETERS
 *  player_p       [IN]        Player handle.
 *  get_type       [IN]        Set command.
 *  data_p         [OUT]       The data relative to the command.
 *  data_len       [IN]        Indicats the length of the data buffer.
 * RETURNS
 *  
 *****************************************************************************/
static kal_int32 _aud_player_mpl_get(med_aud_player_t*     player_p,
                                    med_aud_player_get_t  get_type,
                                    void*                 data_p)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t* self_p;
    Media_Status         drv_result = MEDIA_SUCCESS;
    kal_int32            med_result = MED_RES_PARAM_ERROR;
    
    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(player_p != NULL && data_p != NULL);
    self_p = PTHIS(player_p, med_aud_player_mpl_t, itf);
    
    switch (get_type)
    {
        case AUD_PLAYER_GET_START_TIME:
        {
            {
                *((kal_uint32*)data_p) = self_p->start_time;
                med_result = MED_RES_OK;
            }
            
            break;
        }
        case AUD_PLAYER_GET_STOP_TIME:
        {
            {
                *((kal_uint32*)data_p) = self_p->stop_time;
                med_result = MED_RES_OK;
            }
            
            break;
        }             
        case AUD_PLAYER_GET_CURRENT_TIME:
        case AUD_PLAYER_GET_LAST_TIME:
        { 
            {
                kal_uint64 time;
                
                self_p->mpl_player_p->get_param(self_p->mpl_player_p, MPL_PARAM_CURRENT_PLAY_TIME, (void*)&time);
                
                *((kal_uint32*)data_p) = (kal_uint32)time;
                
                med_result = MED_RES_OK;
            }
            
            break;
        }
        case AUD_PLAYER_GET_DURATION:
        {
            mpl_player_get_media_info_t media_info;

            {
                self_p->mpl_player_p->get_media_info(self_p->mpl_player_p, &media_info);
                
                *((kal_uint32*)data_p) = (kal_uint32)media_info.duration;
                
                med_result = MED_RES_OK;
            }
            
            break;
        }
        case AUD_PLAYER_GET_LEVEL:
        {
            kal_uint8 volume;

            {
                self_p->mpl_player_p->get_param(self_p->mpl_player_p, MPL_PARAM_AUD_VOLUME, (void*)&volume);
                
                *((kal_uint8*)data_p) = volume;

                med_result = MED_RES_OK;
            }
            
            break;
        }
        case AUD_PLAYER_GET_CONTENT_DESC:
        {
            {
                switch(self_p->media_type)
                {
                #ifdef __RM_DEC_SUPPORT__
                    case MED_TYPE_RA:
                    case MED_TYPE_RM:
                    case MED_TYPE_RMVB:
                    case MED_TYPE_RV:
                    {
                        drv_result = RM_GetContentDescInfo(&self_p->fsal_handle, (audInfoStruct*)data_p, (void*)self_p->app_id);
                        break;
                    }
                #endif /* __RM_DEC_SUPPORT__ */

                #ifdef M4A_DECODE
                     case MED_TYPE_M4A:
                     {
                        drv_result = MP4S_GetContentDescInfo(&self_p->fsal_handle, (audInfoStruct*)data_p, (void*)self_p->app_id);
                        break;
                     }
                 #endif /* M4A_DECODE */

                 #if defined(MED_PURE_AUDIO) //|| defined(MP4_DECODE)
                     case MED_TYPE_MP4:
                     case MED_TYPE_3GP:
                     {
                        drv_result = MP4S_GetContentDescInfo(&self_p->fsal_handle, (audInfoStruct*)data_p, (void*)self_p->app_id);
                        break;
                     }
                #endif    

                #ifdef __FLV_FILE_FORMAT_SUPPORT__
                    case MED_TYPE_FLV:
                    case MED_TYPE_F4V:
                    case MED_TYPE_F4A:
                    {
                        drv_result = FLV_GetContentDescInfo(&self_p->fsal_handle, (audInfoStruct*)data_p, (void*)self_p->app_id);
                        break;
                    }
                #endif

                    default:
                        break;
                }

                med_result = aud_get_res(drv_result);
            }
            
            break;
        }
        
        /* Unsupported commands */
        default:
            med_result = MED_RES_UNSUPPORTED_OPERATION;
            break;
    }

    _AUD_PLAYER_MPL_TRACE(get_type, med_result, *((kal_uint32*)data_p));
    
    return med_result;
}


/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_destroy
 * DESCRIPTION
 *  This function is used to destroy a RA player. Once called, all the 
 *  allocated interfaces of the player will be freed.
 * PARAMETERS
 *  player_p      [IN]        Player handle. 
 * RETURNS
 *  
 *****************************************************************************/
static kal_int32 _aud_player_mpl_destroy(med_aud_player_t* player_p)
{
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t* self_p;
    
    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    MED_ASSERT(player_p != NULL);
    self_p = PTHIS(player_p, med_aud_player_mpl_t, itf);
    
    /* Destroy the RA player */
    if (self_p->mpl_player_p)
    {
        self_p->mpl_player_p->destroy(self_p->mpl_player_p);
    }
    
    /* Free RA player resources */
    AUD_PLAYER_FREE_AUD_MEM(self_p);
    
    return MED_RES_OK;
}
#endif /* __MTK_TARGET__ && __MED_MPL_PLAYER__ */


/*-----------------------------------------------------------------------------
                    public functions
 ----------------------------------------------------------------------------*/
/*****************************************************************************
 * FUNCTION
 *  aud_player_mpl_construct
 * DESCRIPTION
 *  This function is used to construct a media player.
 * PARAMETERS
 *  void
 * RETURNS
 *  Player handle.
 *****************************************************************************/
med_aud_player_t* aud_player_mpl_construct(void)
{
#if defined(__MTK_TARGET__) && defined(__MED_MPL_PLAYER__)
    /*----------------------------------------------------------------*/
    /* Local Variables                                                */
    /*----------------------------------------------------------------*/
    med_aud_player_mpl_t* self_p;
    
    /*----------------------------------------------------------------*/
    /* Code Body                                                      */
    /*----------------------------------------------------------------*/
    self_p = (med_aud_player_mpl_t*) med_alloc_aud_mem(sizeof(med_aud_player_mpl_t));
    MED_ASSERT(self_p != NULL);

    kal_mem_set(self_p, 0, sizeof(*self_p));

    self_p->itf.open    = _aud_player_mpl_open;
    self_p->itf.close   = _aud_player_mpl_close;
    self_p->itf.play    = _aud_player_mpl_play;
    self_p->itf.stop    = _aud_player_mpl_stop;
    self_p->itf.pause   = _aud_player_mpl_pause;
    self_p->itf.resume  = _aud_player_mpl_resume;
    self_p->itf.set     = _aud_player_mpl_set;
    self_p->itf.get     = _aud_player_mpl_get;
    self_p->itf.destroy = _aud_player_mpl_destroy;
    
    self_p->mpl_client.mem_alloc_func = _aud_player_mpl_alloc_mem;
    self_p->mpl_client.mem_free_func  = _aud_player_mpl_free_mem;
    self_p->mpl_client.on_event       = _aud_player_mpl_on_event;
    
    return &self_p->itf;
#else
    return NULL;
#endif /* __MTK_TARGET__ && __MED_MPL_PLAYER__ */
}

#endif /* MED_NOT_PRESENT */