mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 05:50:43 +00:00
FFplay : Copy all AVFrame fields from the reference picture to the
requested buffer. Originally committed as revision 24032 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
13088d27e4
commit
cfb7e6e6d5
6
ffplay.c
6
ffplay.c
@ -1591,9 +1591,9 @@ static int input_get_buffer(AVCodecContext *codec, AVFrame *pic)
|
||||
|
||||
ref->w = codec->width;
|
||||
ref->h = codec->height;
|
||||
for(i = 0; i < 3; i ++) {
|
||||
unsigned hshift = i == 0 ? 0 : av_pix_fmt_descriptors[ref->pic->format].log2_chroma_w;
|
||||
unsigned vshift = i == 0 ? 0 : av_pix_fmt_descriptors[ref->pic->format].log2_chroma_h;
|
||||
for(i = 0; i < 4; i ++) {
|
||||
unsigned hshift = (i == 1 || i == 2) ? av_pix_fmt_descriptors[ref->pic->format].log2_chroma_w : 0;
|
||||
unsigned vshift = (i == 1 || i == 2) ? av_pix_fmt_descriptors[ref->pic->format].log2_chroma_h : 0;
|
||||
|
||||
if (ref->data[i]) {
|
||||
ref->data[i] += (edge >> hshift) + ((edge * ref->linesize[i]) >> vshift);
|
||||
|
Loading…
Reference in New Issue
Block a user