Ignore:
Timestamp:
Apr 10, 2014 10:01:07 AM (10 years ago)
Author:
bennylp
Message:

Re #1758: Initial implementation of OpenH264 wrapper. Supports:

  • library detection via autoconf
  • CBP
  • packetization modes: 0, 1
  • key frame request and indication
  • obey remote's fmtp

Also added video codec test in samples (similar to the one in pjmedia test though).
And there are some fixes here and there too (e.g. in vid_codec_util.c).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/build.mak.in

    r4755 r4815  
    134134SDL_LDFLAGS = @ac_sdl_ldflags@ 
    135135 
    136 # FFMPEG dlags 
     136# FFMPEG flags 
    137137FFMPEG_CFLAGS = @ac_ffmpeg_cflags@  
    138138FFMPEG_LDFLAGS =  @ac_ffmpeg_ldflags@ 
     
    142142V4L2_LDFLAGS = @ac_v4l2_ldflags@ 
    143143 
     144# OPENH264 flags 
     145OPENH264_CFLAGS = @ac_openh264_cflags@  
     146OPENH264_LDFLAGS =  @ac_openh264_ldflags@ 
     147 
    144148# QT 
    145149AC_PJMEDIA_VIDEO_HAS_QT = @ac_pjmedia_video_has_qt@ 
     
    151155# PJMEDIA features exclusion 
    152156PJ_VIDEO_CFLAGS += $(SDL_CFLAGS) $(FFMPEG_CFLAGS) $(V4L2_CFLAGS) $(QT_CFLAGS) \ 
    153                    $(IOS_CFLAGS) 
    154 PJ_VIDEO_LDFLAGS += $(SDL_LDFLAGS) $(FFMPEG_LDFLAGS) $(V4L2_LDFLAGS) 
     157                   $(OPENH264_CFLAGS) $(IOS_CFLAGS) 
     158PJ_VIDEO_LDFLAGS += $(SDL_LDFLAGS) $(FFMPEG_LDFLAGS) $(V4L2_LDFLAGS) \ 
     159                   $(OPENH264_LDFLAGS) 
    155160 
    156161 
Note: See TracChangeset for help on using the changeset viewer.