Searched refs:position (Results 1 - 25 of 159) sorted by path

1234567

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Davcodec.h585 * position of the top left corner in 1/16 pel for up to 3 fields/frames
589 int16_t position[3][2]; member in struct:AVPanScan
975 * @param y the y position of the slice
H A Dmpeg12.c1457 s1->pan_scan.position[i][0]= get_sbits(&s->gb, 16);
1459 s1->pan_scan.position[i][1]= get_sbits(&s->gb, 16);
1465 s1->pan_scan.position[0][0], s1->pan_scan.position[0][1],
1466 s1->pan_scan.position[1][0], s1->pan_scan.position[1][1],
1467 s1->pan_scan.position[2][0], s1->pan_scan.position[2][1]
2197 * @return the position of the first byte of the next frame, or -1
H A Dvorbis_enc.c651 int position = fc->list[fc->list[i].sort].x; local
655 average *= pow(tot_average / average, 0.5) * pow(1.25, position/200.); // MAGIC!
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dbethsoftvid.c107 int position; local
114 // save the file position for the packet, include block type
115 position = url_ftell(pb) - 1;
162 pkt->pos = position;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/include/FLAC++/
H A Ddecoder.h142 virtual bool get_decode_position(FLAC__uint64 *position) const; ///< See FLAC__stream_decoder_get_decode_position()
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/include/FLAC/
H A Dstream_decoder.h155 * FLAC__stream_decoder_flush() and start feeding data from the new position
356 /**< Client does not support telling the position. */
557 * called when the decoder wants to know the current position of the
987 /** Returns the decoder's current read position within the stream.
988 * The position is the byte offset from the start of the stream.
989 * Bytes before this position have been fully decoded. Note that
991 * The returned position is correct even after a seek.
997 * \param position Address at which to return the desired position.
1000 * \code position !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC++/
H A Dstream_decoder.cpp162 bool Stream::get_decode_position(FLAC__uint64 *position) const
165 return ::FLAC__stream_decoder_get_decode_position(decoder_, position);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dogg_helper.h40 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderReadCallback read_callback, void *client_data);
41 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderWriteCallback write_callback, void *client_data);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dogg_helper.c94 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderReadCallback read_callback, void *client_data) argument
109 if((seek_status = seek_callback((FLAC__StreamEncoder*)encoder, position, client_data)) != FLAC__STREAM_ENCODER_SEEK_STATUS_OK) {
178 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderWriteCallback write_callback, void *client_data) argument
190 if((seek_status = seek_callback((FLAC__StreamEncoder*)encoder, position, client_data)) != FLAC__STREAM_ENCODER_SEEK_STATUS_OK) {
H A Dstream_decoder.c933 FLAC_API FLAC__bool FLAC__stream_decoder_get_decode_position(const FLAC__StreamDecoder *decoder, FLAC__uint64 *position) argument
937 FLAC__ASSERT(0 != position);
945 if(decoder->private_->tell_callback(decoder, position, decoder->private_->client_data) != FLAC__STREAM_DECODER_TELL_STATUS_OK)
950 FLAC__ASSERT(*position >= FLAC__stream_decoder_get_input_bytes_unconsumed(decoder));
951 *position -= FLAC__stream_decoder_get_input_bytes_unconsumed(decoder);
3166 /*@@@@@@ what will decode position be if at end of stream? */
3196 /* In the first iterations, we will calculate the target byte position
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/
H A Din_flac.c182 static void do_vis(char *data, int nch, int resolution, int position, unsigned samples) argument
211 mod_.SAAddPCMData(data, nch, resolution, position);
212 mod_.VSAAddPCMData(data, nch, resolution, position);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC++/
H A Dmetadata_manip.cpp78 /* the current block number that corresponds to the position of the iterator we are testing */
129 static bool replace_in_our_metadata_(FLAC::Metadata::Prototype *block, unsigned position, bool copy) argument
133 FLAC__ASSERT(position < our_metadata_.num_blocks);
138 delete our_metadata_.blocks[position];
139 our_metadata_.blocks[position] = obj;
149 static bool insert_to_our_metadata_(FLAC::Metadata::Prototype *block, unsigned position, bool copy) argument
157 if(position > our_metadata_.num_blocks) {
158 position = our_metadata_.num_blocks;
161 for(i = our_metadata_.num_blocks; i > position; i--)
164 our_metadata_.blocks[position]
175 delete_from_our_metadata_(unsigned position) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC/
H A Dmetadata_manip.c71 /* the current block number that corresponds to the position of the iterator we are testing */
121 static FLAC__bool replace_in_our_metadata_(FLAC__StreamMetadata *block, unsigned position, FLAC__bool copy) argument
125 FLAC__ASSERT(position < our_metadata_.num_blocks);
130 FLAC__metadata_object_delete(our_metadata_.blocks[position]);
131 our_metadata_.blocks[position] = obj;
141 static FLAC__bool insert_to_our_metadata_(FLAC__StreamMetadata *block, unsigned position, FLAC__bool copy) argument
149 if(position > our_metadata_.num_blocks) {
150 position = our_metadata_.num_blocks;
153 for(i = our_metadata_.num_blocks; i > position; i--)
156 our_metadata_.blocks[position]
167 delete_from_our_metadata_(unsigned position) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/include/libavcodec/
H A Davcodec.h585 * position of the top left corner in 1/16 pel for up to 3 fields/frames
589 int16_t position[3][2]; member in struct:AVPanScan
975 * @param y the y position of the slice
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/jpeg-7/
H A Djmemdosa.asm108 ; Set file position
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dframetype.c452 {"TRCK", FRAME(text), PRESERVE, "Track number/position in set"},
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/doc/
H A D02-bitpacking.tex73 is written at the bit position at which the previous field ends.
80 significant unused bit position of the destination byte, followed by
84 byte and writing the next bit into the bit position 0 of that byte.
H A D03-codebook.tex254 new leaf in the leftmost possible position.
H A D07-floor1.tex72 Although the new Y value at X position 96 is unchanged, it is still
H A D09-helper.tex17 The "ilog(x)" function returns the position number (1 through n) of the highest set bit in the two's complement integer value
83 "low_neighbor(v,x)" finds the position \varname{n} in vector \varname{[v]} of
90 "high_neighbor(v,x)" finds the position \varname{n} in vector [v] of
H A DVorbis_I_spec.tex46 % docs however expect pictures to be placed in a *specific* position. So we
H A Da1-encapsulation-ogg.tex91 The granule position of these first pages containing only headers is zero.
111 The granule position of pages containing Vorbis audio is in units
112 of PCM audio samples (per channel; a stereo stream's granule position
117 The granule position of a page represents the end PCM sample
118 position of the last packet \emph{completed} on that
123 position, and the granule position is set to '-1'.
130 current packet be at position (3*long\_block\_length/4) -
135 The granule (PCM) position of the first page need not indicate
136 that the stream started at position zer
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dsharedbook.c374 int position=codep[i]-codes; local
375 sortindex[position]=i;
723 "position %d, %g != %g\n",i,out[i],comp[i]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dframetype.c449 {"TRCK", FRAME(text), PRESERVE, "Track number/position in set"},
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/delphi/
H A DZLib.pas102 backwards. The special case of setting the stream position to zero is
103 allowed. Seeking forward decompresses data until the requested position in

Completed in 533 milliseconds

1234567