diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-07-20 14:48:05 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-07-20 14:48:05 +0000 |
commit | 3bb07d616556f6489ce3aab1a5ec6b6dfbbd6217 (patch) | |
tree | b487bd51f35a9339d12dac3d167f835c3538ee3a | |
parent | 42928ccbc24b2a9f4f6777d36e63fc1981783448 (diff) | |
download | ffmpeg-3bb07d616556f6489ce3aab1a5ec6b6dfbbd6217.tar.gz |
default for slices is display order again
optional support for field slices & slices in coded order
and single component slices for svq1 (unfinished)
Originally committed as revision 2066 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/avcodec.h | 24 | ||||
-rw-r--r-- | libavcodec/huffyuv.c | 2 | ||||
-rw-r--r-- | libavcodec/mpeg12.c | 8 | ||||
-rw-r--r-- | libavcodec/mpegvideo.c | 19 |
4 files changed, 39 insertions, 14 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 82fd85a88e..f2e5a1c13f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -15,8 +15,8 @@ extern "C" { #define LIBAVCODEC_VERSION_INT 0x000406 #define LIBAVCODEC_VERSION "0.4.6" -#define LIBAVCODEC_BUILD 4670 -#define LIBAVCODEC_BUILD_STR "4670" +#define LIBAVCODEC_BUILD 4671 +#define LIBAVCODEC_BUILD_STR "4671" #define LIBAVCODEC_IDENT "FFmpeg" LIBAVCODEC_VERSION "b" LIBAVCODEC_BUILD_STR @@ -183,7 +183,7 @@ static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG, of only at frame boundaries */ #define CODEC_FLAG_NORMALIZE_AQP 0x00020000 ///< normalize adaptive quantization #define CODEC_FLAG_INTERLACED_DCT 0x00040000 ///< use interlaced dct -#define CODEC_FLAG_LOW_DELAY 0x00080000 ///< force low delay / will fail on b frames +#define CODEC_FLAG_LOW_DELAY 0x00080000 ///< force low delay #define CODEC_FLAG_ALT_SCAN 0x00100000 ///< use alternate scan #define CODEC_FLAG_TRELLIS_QUANT 0x00200000 ///< use trellis quantization #define CODEC_FLAG_GLOBAL_HEADER 0x00400000 ///< place global headers in extradata instead of every keyframe @@ -471,10 +471,14 @@ typedef struct AVCodecContext { * before * - encoding: unused * - decoding: set by user. + * @param height the height of the slice + * @param y the y position of the slice + * @param type 1->top field, 2->bottom field, 3->frame + * @param offset offset into the AVFrame.data from which the slice should be read */ void (*draw_horiz_band)(struct AVCodecContext *s, AVFrame *src, int offset[4], - int y, int width, int height); + int y, int type, int height); /* audio only */ int sample_rate; ///< samples per sec @@ -669,6 +673,7 @@ typedef struct AVCodecContext { /** * called at the beginning of each frame to get a buffer for it. * if pic.reference is set then the frame will be read later by lavc + * width and height should be rounded up to the next multiple of 16 * - encoding: unused * - decoding: set by lavc, user can override */ @@ -1146,6 +1151,17 @@ typedef struct AVCodecContext { * - decoding: unused */ int context_model; + + /** + * slice flags + * - encoding: unused + * - decoding: set by user. + */ + int slice_flags; +#define SLICE_FLAG_CODED_ORDER 0x0001 ///< draw_horiz_band() is called in coded order instead of display +#define SLICE_FLAG_ALLOW_FIELD 0x0002 ///< allow draw_horiz_band() with field slices (MPEG2 field pics) +#define SLICE_FLAG_ALLOW_PLANE 0x0004 ///< allow draw_horiz_band() with 1 component at a time (SVQ1) + } AVCodecContext; diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c index 4c8229a3c3..7970cd34c5 100644 --- a/libavcodec/huffyuv.c +++ b/libavcodec/huffyuv.c @@ -693,7 +693,7 @@ static void draw_slice(HYuvContext *s, int y){ offset[3] = 0; emms_c(); - s->avctx->draw_horiz_band(s->avctx, &s->picture, offset, y, s->width, h); + s->avctx->draw_horiz_band(s->avctx, &s->picture, offset, y, 3, h); s->last_slice_end= y + h; } diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index e5491f3fa7..e84fa55133 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -1943,13 +1943,7 @@ static int mpeg_decode_slice(AVCodecContext *avctx, MPV_decode_mb(s, s->block); if (++s->mb_x >= s->mb_width) { - if(s->picture_structure==PICT_FRAME){ - ff_draw_horiz_band(s, 16*s->mb_y, 16); - }else{ - if(!s->first_field){ - ff_draw_horiz_band(s, 32*s->mb_y, 32); - } - } + ff_draw_horiz_band(s, 16*s->mb_y, 16); s->mb_x = 0; s->mb_y++; diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index d25cc4895f..500d076824 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -2726,10 +2726,25 @@ static int pix_diff_vcmp16x8(uint8_t *s1, uint8_t*s2, int stride){ //FIXME move */ void ff_draw_horiz_band(MpegEncContext *s, int y, int h){ if (s->avctx->draw_horiz_band) { + AVFrame *src; uint8_t *src_ptr[3]; int offset[4]; + + if(s->picture_structure != PICT_FRAME){ + h <<= 1; + y <<= 1; + if(s->first_field && !(s->avctx->slice_flags&SLICE_FLAG_ALLOW_FIELD)) return; + } + h= FFMIN(h, s->height - y); + if(s->pict_type==B_TYPE || s->low_delay || (s->avctx->slice_flags&SLICE_FLAG_CODED_ORDER)) + src= (AVFrame*)s->current_picture_ptr; + else if(s->last_picture_ptr) + src= (AVFrame*)s->last_picture_ptr; + else + return; + if(s->pict_type==B_TYPE && s->picture_structure == PICT_FRAME && s->out_format != FMT_H264){ offset[0]= offset[1]= @@ -2744,8 +2759,8 @@ void ff_draw_horiz_band(MpegEncContext *s, int y, int h){ emms_c(); - s->avctx->draw_horiz_band(s->avctx, (AVFrame*)s->current_picture_ptr, offset, - y, s->width, h); + s->avctx->draw_horiz_band(s->avctx, src, offset, + y, s->picture_structure, h); } } |