Ignore:
Timestamp:
May 9, 2019 4:00:00 AM (5 years ago)
Author:
nanang
Message:

Re #1298: Updated PJSUA-LIB to use PJ_ERROR or pjsua_perror when applicable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_vid.c

    r5962 r5979  
    4949    status = pjmedia_video_format_mgr_create(pjsua_var.pool, 64, 0, NULL); 
    5050    if (status != PJ_SUCCESS) { 
    51         PJ_PERROR(1,(THIS_FILE, status, 
    52                      "Error creating PJMEDIA video format manager")); 
     51        pjsua_perror(THIS_FILE, "Error creating PJMEDIA video format manager", 
     52                     status); 
    5353        goto on_error; 
    5454    } 
     
    5656    status = pjmedia_converter_mgr_create(pjsua_var.pool, NULL); 
    5757    if (status != PJ_SUCCESS) { 
    58         PJ_PERROR(1,(THIS_FILE, status, 
    59                      "Error creating PJMEDIA converter manager")); 
     58        pjsua_perror(THIS_FILE, "Error creating PJMEDIA converter manager", 
     59                     status); 
    6060        goto on_error; 
    6161    } 
     
    6363    status = pjmedia_vid_codec_mgr_create(pjsua_var.pool, NULL); 
    6464    if (status != PJ_SUCCESS) { 
    65         PJ_PERROR(1,(THIS_FILE, status, 
    66                      "Error creating PJMEDIA video codec manager")); 
     65        pjsua_perror(THIS_FILE, "Error creating PJMEDIA video codec manager", 
     66                     status); 
    6767        goto on_error; 
    6868    } 
     
    7171                                     &pjsua_var.vid_conf); 
    7272    if (status != PJ_SUCCESS) { 
    73         PJ_PERROR(1,(THIS_FILE, status, 
    74                      "Error creating PJMEDIA video conference bridge")); 
     73        pjsua_perror(THIS_FILE, 
     74                     "Error creating PJMEDIA video conference bridge", 
     75                     status); 
    7576        goto on_error; 
    7677    } 
     
    7980    status = pjmedia_codec_vid_toolbox_init(NULL, &pjsua_var.cp.factory); 
    8081    if (status != PJ_SUCCESS) { 
    81         PJ_PERROR(1,(THIS_FILE, status, 
    82                      "Error initializing Video Toolbox codec")); 
     82        pjsua_perror(THIS_FILE, "Error initializing Video Toolbox codec", 
     83                     status); 
    8384        goto on_error; 
    8485    } 
     
    8889    status = pjmedia_codec_openh264_vid_init(NULL, &pjsua_var.cp.factory); 
    8990    if (status != PJ_SUCCESS) { 
    90         PJ_PERROR(1,(THIS_FILE, status, 
    91                      "Error initializing OpenH264 library")); 
     91        pjsua_perror(THIS_FILE, "Error initializing OpenH264 library", 
     92                     status); 
    9293        goto on_error; 
    9394    } 
     
    9798    status = pjmedia_codec_ffmpeg_vid_init(NULL, &pjsua_var.cp.factory); 
    9899    if (status != PJ_SUCCESS) { 
    99         PJ_PERROR(1,(THIS_FILE, status, 
    100                      "Error initializing ffmpeg library")); 
     100        pjsua_perror(THIS_FILE, "Error initializing ffmpeg library", status); 
    101101        goto on_error; 
    102102    } 
     
    105105    status = pjmedia_vid_dev_subsys_init(&pjsua_var.cp.factory); 
    106106    if (status != PJ_SUCCESS) { 
    107         PJ_PERROR(1,(THIS_FILE, status, 
    108                      "Error creating PJMEDIA video subsystem")); 
     107        pjsua_perror(THIS_FILE, "Error creating PJMEDIA video subsystem", 
     108                     status); 
    109109        goto on_error; 
    110110    } 
     
    766766                            &enabled); 
    767767            if (status != PJ_SUCCESS) { 
    768                 PJ_PERROR(1,(THIS_FILE, status, 
     768                pjsua_perror(THIS_FILE, 
    769769                             "Error activating native preview, falling back " 
    770                              "to software preview..")); 
     770                             "to software preview..", 
     771                             status); 
    771772                w->is_native = PJ_FALSE; 
    772773            } 
     
    13561357                        &enabled); 
    13571358        if (status != PJ_SUCCESS) { 
    1358             PJ_PERROR(1,(THIS_FILE, status, 
     1359            pjsua_perror(THIS_FILE, 
    13591360                         "Error activating native preview, falling back " 
    1360                          "to software preview..")); 
     1361                         "to software preview..", 
     1362                         status); 
    13611363            w->is_native = PJ_FALSE; 
    13621364        } 
Note: See TracChangeset for help on using the changeset viewer.