question |
réponse |
|
commencer à apprendre
|
|
ensures receiver is able to extract the same message from the signal as the transmitter sent
|
|
|
Efficient encoding practices commencer à apprendre
|
|
minimize number of transmitted bits, redundant information; improves bandwidth utilization, storage requirement
|
|
|
|
commencer à apprendre
|
|
agreed format of message exchanged between applications
|
|
|
|
commencer à apprendre
|
|
improves encoding efficiency by reducing redundancy in transmitted data
|
|
|
|
commencer à apprendre
|
|
original data can be perfectly reconstructed
|
|
|
|
commencer à apprendre
|
|
some information is discarded to achieve higher compression ratios
|
|
|
|
commencer à apprendre
|
|
transformation of network data from the representation used by the application program into a form that is suitable for transmission over a network
|
|
|
|
commencer à apprendre
|
|
process of transferring and formatting a collection of data structures into an external data representation type appropriate for transmission in a message
|
|
|
|
commencer à apprendre
|
|
process of reformatting the transferred data upon arrival to recreate the original data structures at the destination
|
|
|
Elements of arguemnt marshalling system commencer à apprendre
|
|
Defines data types which can be transferred, conversion strategy, add tags and stubds
|
|
|
|
commencer à apprendre
|
 |
any additional information included in a message that helps the receiver decode the message
|
|
|
|
commencer à apprendre
|
|
piece of code that impements argument marhalling
|
|
|
Canonical Intermediate Form conversion strategy commencer à apprendre
|
|
sending host translates from its internal representation to the external representation before sending data and the receiver translates from this external representation into its local representation when receiving data
|
|
|
Receiver Makes Right conversion strategy commencer à apprendre
|
|
sender transmit data in its own internal format, receiver is responsible for translating the data from the sender’s format into its own local format
|
|
|
Run Length Encoding (RLE) compression technique commencer à apprendre
|
|
replace consecutive occurrences of a given symbol with only one copy of the symbol and add counter of how many times that symbol occurs, e. g: AAABBCDDDD → 3A2B1C4D
|
|
|
Differential Plus Code Modulation compression technique commencer à apprendre
|
|
first output a reference symbol and then, for each symbol in the data, to output the difference between that symbol and the reference symbol(s), e. g: AAABBCDDDD → A0001123333
|
|
|
Dicitonary Based Module compression technique commencer à apprendre
|
|
build a dictionary (table) of strings that you expect to find in the data and then to replace each of these strings when it appears in the data with the corresponding index to the dictionary
|
|
|
|
commencer à apprendre
|
|
MPEG takes a sequence of video frames as input and compresses them into three types of frames: I, P and B frames
|
|
|
|
commencer à apprendre
|
|
JPEG compressed version of the corresponding frame in the video source
|
|
|
P frame (predicted picture) commencer à apprendre
|
|
specifies the differences from the previous I frame
|
|
|
B frames (bidirectional predicted picture) commencer à apprendre
|
|
gives an interpolation between the previous and subsequent I or P frames
|
|
|