Changeset 224:c63528c41fc2
- Timestamp:
- 10/12/2012 06:02:37 PM (8 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libsrc/libbioimg/formats/mpeg/FfmpegOVideo.cpp
r220 r224 316 316 else 317 317 fmt = av_guess_format(NULL, fname.c_str(), NULL); 318 #el if318 #else 319 319 if (formatName.size() > 0) 320 320 fmt = guess_format(formatName.c_str(), NULL, NULL); … … 326 326 #if (LIBAVCODEC_VERSION_MAJOR >= 54) 327 327 fmt = av_guess_format("mpeg", NULL, NULL); 328 #el if328 #else 329 329 fmt = guess_format("mpeg", NULL, NULL); 330 330 #endif … … 342 342 "Could not allocate the output media descriptor for \"" << fname << 343 343 "\". Are you out of memory?"); 344 #el if344 #else 345 345 VrRecoverableCheckMsg(oc = av_alloc_format_context(), 346 346 "Could not allocate the output media descriptor for \"" << fname << -
src/imgcnv.pro
r223 r224 306 306 ffmpeg { 307 307 308 DEFINES += DIM_FFMPEG_FORMAT FFMPEG_VIDEO_DISABLE_MATLAB 308 DEFINES += DIM_FFMPEG_FORMAT FFMPEG_VIDEO_DISABLE_MATLAB __STDC_CONSTANT_MACROS 309 309 INCLUDEPATH += $$DN_LIB_FFMPEG/include 310 310 #INCLUDEPATH += $$DN_LIB_FFMPEG/ffmpeg-out/$$(HOSTTYPE)/include
Note: See TracChangeset
for help on using the changeset viewer.