Ignore:
Timestamp:
Apr 11, 2011 9:38:53 PM (13 years ago)
Author:
ming
Message:

Re #1213: Fixed SDL OpenGL to run on Windows.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/2.0-dev/pjmedia/src/pjmedia-videodev/sdl_dev.c

    r3509 r3525  
    127127#if PJMEDIA_VIDEO_DEV_SDL_HAS_OPENGL 
    128128    GLuint                       texture; 
     129    void                        *tex_buf; 
     130    pj_size_t                    tex_buf_size; 
    129131#endif 
    130132#if defined(PJ_DARWINOS) && PJ_DARWINOS!=0 
     
    174176static pj_status_t sdl_stream_stop(pjmedia_vid_dev_stream *strm); 
    175177static pj_status_t sdl_stream_destroy(pjmedia_vid_dev_stream *strm); 
     178static void draw_gl(struct sdl_stream *stream, void *tex_buf); 
    176179 
    177180/* Operations */ 
     
    448451        glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_DECAL); 
    449452        glGenTextures(1, &strm->texture); 
     453 
     454#if defined(PJ_WIN32) && PJ_WIN32 != 0 
     455        if (strm->vafp.framebytes > strm->tex_buf_size) { 
     456            strm->tex_buf_size = strm->vafp.framebytes; 
     457            strm->tex_buf = pj_pool_alloc(strm->pool, strm->vafp.framebytes); 
     458        } 
     459#endif 
    450460    } else 
    451461#endif 
     
    514524        pjmedia_vid_event pevent; 
    515525 
     526#if PJMEDIA_VIDEO_DEV_SDL_HAS_OPENGL 
     527#if defined(PJ_WIN32) && PJ_WIN32 != 0   
     528        if (strm->param.rend_id == OPENGL_DEV_IDX) { 
     529            draw_gl(strm, strm->tex_buf); 
     530        } 
     531#endif 
     532#endif 
    516533        /** 
    517534         * The event polling must be placed in the same thread that 
     
    716733} 
    717734 
     735static void draw_gl(struct sdl_stream *stream, void *tex_buf) 
     736{ 
     737    if (stream->texture) { 
     738        glBindTexture(GL_TEXTURE_2D, stream->texture); 
     739        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); 
     740        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); 
     741        glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 
     742                     stream->rect.w, stream->rect.h, 0, 
     743                     GL_RGBA, GL_UNSIGNED_BYTE, tex_buf); 
     744        glBegin(GL_TRIANGLE_STRIP); 
     745        glTexCoord2f(0, 0); glVertex2i(0, 0); 
     746        glTexCoord2f(1, 0); glVertex2i(stream->rect.w, 0); 
     747        glTexCoord2f(0, 1); glVertex2i(0, stream->rect.h); 
     748        glTexCoord2f(1, 1); glVertex2i(stream->rect.w, stream->rect.h); 
     749        glEnd(); 
     750        SDL_GL_SwapBuffers(); 
     751    } 
     752} 
     753 
    718754#if defined(PJ_DARWINOS) && PJ_DARWINOS!=0 
    719755- (pj_status_t)put_frame 
     
    775811    } 
    776812#if PJMEDIA_VIDEO_DEV_SDL_HAS_OPENGL 
    777      else if (stream->param.rend_id == OPENGL_DEV_IDX) { 
    778         if (frame && stream->texture) { 
    779             glBindTexture(GL_TEXTURE_2D, stream->texture); 
    780             glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,  
    781                             GL_NEAREST); 
    782             glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, 
    783                             GL_NEAREST); 
    784             glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 
    785                          stream->rect.w, stream->rect.h, 0, 
    786                          GL_RGBA, GL_UNSIGNED_BYTE, frame->buf); 
    787             glBegin(GL_TRIANGLE_STRIP); 
    788             glTexCoord2f(0, 0); glVertex2i(0, 0); 
    789             glTexCoord2f(1, 0); glVertex2i(stream->rect.w, 0); 
    790             glTexCoord2f(0, 1); glVertex2i(0, stream->rect.h); 
    791             glTexCoord2f(1, 1); 
    792             glVertex2i(stream->rect.w, stream->rect.h); 
    793             glEnd(); 
    794             SDL_GL_SwapBuffers(); 
    795         } 
     813    else if (stream->param.rend_id == OPENGL_DEV_IDX) { 
     814#if defined(PJ_WIN32) && PJ_WIN32 != 0 
     815        pj_assert(frame->size == stream->vafp.framebytes); 
     816        pj_memcpy(stream->tex_buf, frame->buf, frame->size); 
     817#else 
     818        draw_gl(stream, frame->buf); 
     819#endif 
    796820    } 
    797821#endif 
Note: See TracChangeset for help on using the changeset viewer.