roqvideo.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2003 Mike Melanson
3  * Copyright (C) 2003 Dr. Tim Ferguson
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * id RoQ Video common functions based on work by Dr. Tim Ferguson
25  */
26 
27 #include "avcodec.h"
28 #include "roqvideo.h"
29 
30 static inline void block_copy(unsigned char *out, unsigned char *in,
31  int outstride, int instride, int sz)
32 {
33  int rows = sz;
34  while(rows--) {
35  memcpy(out, in, sz);
36  out += outstride;
37  in += instride;
38  }
39 }
40 
42 {
43  unsigned char *bptr;
44  int boffs,stride;
45 
46  stride = ri->current_frame->linesize[0];
47  boffs = y*stride + x;
48 
49  bptr = ri->current_frame->data[0] + boffs;
50  bptr[0 ] = cell->y[0];
51  bptr[1 ] = cell->y[1];
52  bptr[stride ] = cell->y[2];
53  bptr[stride+1] = cell->y[3];
54 
55  stride = ri->current_frame->linesize[1];
56  boffs = y*stride + x;
57 
58  bptr = ri->current_frame->data[1] + boffs;
59  bptr[0 ] =
60  bptr[1 ] =
61  bptr[stride ] =
62  bptr[stride+1] = cell->u;
63 
64  bptr = ri->current_frame->data[2] + boffs;
65  bptr[0 ] =
66  bptr[1 ] =
67  bptr[stride ] =
68  bptr[stride+1] = cell->v;
69 }
70 
72 {
73  unsigned char *bptr;
74  int boffs,stride;
75 
76  stride = ri->current_frame->linesize[0];
77  boffs = y*stride + x;
78 
79  bptr = ri->current_frame->data[0] + boffs;
80  bptr[ 0] = bptr[ 1] = bptr[stride ] = bptr[stride +1] = cell->y[0];
81  bptr[ 2] = bptr[ 3] = bptr[stride +2] = bptr[stride +3] = cell->y[1];
82  bptr[stride*2 ] = bptr[stride*2+1] = bptr[stride*3 ] = bptr[stride*3+1] = cell->y[2];
83  bptr[stride*2+2] = bptr[stride*2+3] = bptr[stride*3+2] = bptr[stride*3+3] = cell->y[3];
84 
85  stride = ri->current_frame->linesize[1];
86  boffs = y*stride + x;
87 
88  bptr = ri->current_frame->data[1] + boffs;
89  bptr[ 0] = bptr[ 1] = bptr[stride ] = bptr[stride +1] =
90  bptr[ 2] = bptr[ 3] = bptr[stride +2] = bptr[stride +3] =
91  bptr[stride*2 ] = bptr[stride*2+1] = bptr[stride*3 ] = bptr[stride*3+1] =
92  bptr[stride*2+2] = bptr[stride*2+3] = bptr[stride*3+2] = bptr[stride*3+3] = cell->u;
93 
94  bptr = ri->current_frame->data[2] + boffs;
95  bptr[ 0] = bptr[ 1] = bptr[stride ] = bptr[stride +1] =
96  bptr[ 2] = bptr[ 3] = bptr[stride +2] = bptr[stride +3] =
97  bptr[stride*2 ] = bptr[stride*2+1] = bptr[stride*3 ] = bptr[stride*3+1] =
98  bptr[stride*2+2] = bptr[stride*2+3] = bptr[stride*3+2] = bptr[stride*3+3] = cell->v;
99 }
100 
101 
102 static inline void apply_motion_generic(RoqContext *ri, int x, int y, int deltax,
103  int deltay, int sz)
104 {
105  int mx, my, cp;
106 
107  mx = x + deltax;
108  my = y + deltay;
109 
110  /* check MV against frame boundaries */
111  if ((mx < 0) || (mx > ri->width - sz) ||
112  (my < 0) || (my > ri->height - sz)) {
113  av_log(ri->avctx, AV_LOG_ERROR, "motion vector out of bounds: MV = (%d, %d), boundaries = (0, 0, %d, %d)\n",
114  mx, my, ri->width, ri->height);
115  return;
116  }
117 
118  if (ri->last_frame->data[0] == NULL) {
119  av_log(ri->avctx, AV_LOG_ERROR, "Invalid decode type. Invalid header?\n");
120  return;
121  }
122 
123  for(cp = 0; cp < 3; cp++) {
124  int outstride = ri->current_frame->linesize[cp];
125  int instride = ri->last_frame ->linesize[cp];
126  block_copy(ri->current_frame->data[cp] + y*outstride + x,
127  ri->last_frame->data[cp] + my*instride + mx,
128  outstride, instride, sz);
129  }
130 }
131 
132 
133 void ff_apply_motion_4x4(RoqContext *ri, int x, int y,
134  int deltax, int deltay)
135 {
136  apply_motion_generic(ri, x, y, deltax, deltay, 4);
137 }
138 
139 void ff_apply_motion_8x8(RoqContext *ri, int x, int y,
140  int deltax, int deltay)
141 {
142  apply_motion_generic(ri, x, y, deltax, deltay, 8);
143 }
static void block_copy(unsigned char *out, unsigned char *in, int outstride, int instride, int sz)
Definition: roqvideo.c:30
void ff_apply_vector_2x2(RoqContext *ri, int x, int y, roq_cell *cell)
Definition: roqvideo.c:41
About Git write you should know how to use GIT properly Luckily Git comes with excellent documentation git help man git shows you the available git< command > help man git< command > shows information about the subcommand< command > The most comprehensive manual is the website Git Reference visit they are quite exhaustive You do not need a special username or password All you need is to provide a ssh public key to the Git server admin What follows now is a basic introduction to Git and some FFmpeg specific guidelines Read it at least if you are granted commit privileges to the FFmpeg project you are expected to be familiar with these rules I if not You can get git from etc no matter how small Every one of them has been saved from looking like a fool by this many times It s very easy for stray debug output or cosmetic modifications to slip in
Definition: git-howto.txt:5
AVFrame * current_frame
Definition: roqvideo.h:49
int stride
Definition: mace.c:144
int width
Definition: roqvideo.h:56
void ff_apply_motion_4x4(RoqContext *ri, int x, int y, int deltax, int deltay)
Definition: roqvideo.c:133
void ff_apply_motion_8x8(RoqContext *ri, int x, int y, int deltax, int deltay)
Definition: roqvideo.c:139
Discrete Time axis x
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:246
external API header
unsigned char u
Definition: roqvideo.h:31
NULL
Definition: eval.c:55
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:101
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:148
unsigned char y[4]
Definition: roqvideo.h:30
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:87
AVCodecContext * avctx
Definition: roqvideo.h:46
function y
Definition: D.m:1
void ff_apply_vector_4x4(RoqContext *ri, int x, int y, roq_cell *cell)
Definition: roqvideo.c:71
static void apply_motion_generic(RoqContext *ri, int x, int y, int deltax, int deltay, int sz)
Definition: roqvideo.c:102
AVFrame * last_frame
Definition: roqvideo.h:48
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31))))#define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac){}void ff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map){AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);return NULL;}return ac;}in_planar=av_sample_fmt_is_planar(in_fmt);out_planar=av_sample_fmt_is_planar(out_fmt);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;}int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){int use_generic=1;int len=in->nb_samples;int p;if(ac->dc){av_dlog(ac->avr,"%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> out
In the ELBG jargon, a cell is the set of points that are closest to a codebook entry.
Definition: elbg.c:39
unsigned char v
Definition: roqvideo.h:31
int height
Definition: roqvideo.h:56