- Timestamp:
- Jul 12, 2011 11:16:27 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/2.0-dev/pjmedia/src/pjmedia-codec/ffmpeg_codecs.c
r3628 r3630 541 541 int codec_info_idx; 542 542 543 if (c->type != CODEC_TYPE_VIDEO) 543 #if LIBAVCODEC_VERSION_MAJOR <= 52 544 # define AVMEDIA_TYPE_VIDEO CODEC_TYPE_VIDEO 545 #endif 546 if (c->type != AVMEDIA_TYPE_VIDEO) 544 547 continue; 545 548 … … 941 944 static void print_ffmpeg_err(int err) 942 945 { 943 #if LIBAVCODEC_VERSION_MAJOR >= 52 && LIBAVCODEC_VERSION_MINOR >= 72 946 #if LIBAVCODEC_VERSION_MAJOR > 52 || \ 947 (LIBAVCODEC_VERSION_MAJOR >= 52 && LIBAVCODEC_VERSION_MINOR >= 72) 944 948 char errbuf[512]; 945 949 if (av_strerror(err, errbuf, sizeof(errbuf)) >= 0) … … 1028 1032 * not working (e.g: rate control). 1029 1033 */ 1030 #if LIBAVCODEC_VERSION_MAJOR >= 52 && LIBAVCODEC_VERSION_MINOR >= 113 1034 #if LIBAVCODEC_VERSION_MAJOR > 52 || \ 1035 (LIBAVCODEC_VERSION_MAJOR >= 52 && LIBAVCODEC_VERSION_MINOR >= 113) 1031 1036 ctx->rc_lookahead = 0; 1032 1037 #endif … … 1350 1355 output->timestamp = input->timestamp; 1351 1356 1352 #if LIBAVCODEC_VERSION_MAJOR >= 52 && LIBAVCODEC_VERSION_MINOR >= 72 1357 #if LIBAVCODEC_VERSION_MAJOR > 52 || \ 1358 (LIBAVCODEC_VERSION_MAJOR >= 52 && LIBAVCODEC_VERSION_MINOR >= 72) 1353 1359 //avpacket.flags = AV_PKT_FLAG_KEY; 1354 1360 #else … … 1356 1362 #endif 1357 1363 1358 #if LIBAVCODEC_VERSION_MAJOR >= 52 && LIBAVCODEC_VERSION_MINOR >= 72 1364 #if LIBAVCODEC_VERSION_MAJOR > 52 || \ 1365 (LIBAVCODEC_VERSION_MAJOR >= 52 && LIBAVCODEC_VERSION_MINOR >= 72) 1359 1366 err = avcodec_decode_video2(ff->dec_ctx, &avframe, 1360 1367 &got_picture, &avpacket);
Note: See TracChangeset
for help on using the changeset viewer.